forked from openqasm/qe-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add MergeCircuitMeasuresPass and RemoveUnusedCircuitsPass (openqasm#255)
Adds a MergeCircuitMeasuresPass to merge quir.measures inside circuits. Based on `MergeMeasuresTopologicalPass`. Adds a RemoveUnusedCircuitsPass to clean up unused circuits and reduce the number of operations in a module.
- Loading branch information
Showing
12 changed files
with
864 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
//===- MergeCircuitMeasures.h - Merge measurement ops in circuits - C++ -*-===// | ||
// | ||
// (C) Copyright IBM 2024. | ||
// | ||
// This code is part of Qiskit. | ||
// | ||
// This code is licensed under the Apache License, Version 2.0 with LLVM | ||
// Exceptions. You may obtain a copy of this license in the LICENSE.txt | ||
// file in the root directory of this source tree. | ||
// | ||
// Any modifications or derivative works of this code must retain this | ||
// copyright notice, and modified files need to carry a notice indicating | ||
// that they have been altered from the originals. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
/// | ||
/// This file declares the pass for merging measurements inside circuits into a | ||
/// single measure op | ||
/// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#ifndef QUIR_MERGE_CIRCUIT_MEASURES_H | ||
#define QUIR_MERGE_CIRCUIT_MEASURES_H | ||
|
||
#include "mlir/Pass/Pass.h" | ||
|
||
namespace mlir::quir { | ||
|
||
/// @brief Merge together measures in a circuit that are topologically | ||
/// adjacent into a single variadic measurement. | ||
struct MergeCircuitMeasuresTopologicalPass | ||
: public PassWrapper<MergeCircuitMeasuresTopologicalPass, OperationPass<>> { | ||
void runOnOperation() override; | ||
|
||
llvm::StringRef getArgument() const override; | ||
llvm::StringRef getDescription() const override; | ||
llvm::StringRef getName() const override; | ||
}; // struct MergeCircuitMeasuresTopologicalPass | ||
|
||
} // namespace mlir::quir | ||
|
||
#endif // QUIR_MERGE_CIRCUIT_MEASURES_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
//===- RemoveUnusedCircuits.h - Remove Unused Circuits ----------- C++ -*-===// | ||
// | ||
// (C) Copyright IBM 2024. | ||
// | ||
// This code is part of Qiskit. | ||
// | ||
// This code is licensed under the Apache License, Version 2.0 with LLVM | ||
// Exceptions. You may obtain a copy of this license in the LICENSE.txt | ||
// file in the root directory of this source tree. | ||
// | ||
// Any modifications or derivative works of this code must retain this | ||
// copyright notice, and modified files need to carry a notice indicating | ||
// that they have been altered from the originals. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
/// | ||
/// This file declares the pass for removing unused circuits. | ||
/// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#ifndef QUIR_REMOVE_UNUSED_CIRCUITS_H | ||
#define QUIR_REMOVE_UNUSED_CIRCUITS_H | ||
|
||
#include "mlir/Pass/Pass.h" | ||
|
||
namespace mlir::quir { | ||
|
||
/// @brief Merge together measures in a circuit that are topologically | ||
/// adjacent into a single variadic measurement. | ||
struct RemoveUnusedCircuitsPass | ||
: public PassWrapper<RemoveUnusedCircuitsPass, OperationPass<>> { | ||
void runOnOperation() override; | ||
|
||
llvm::StringRef getArgument() const override; | ||
llvm::StringRef getDescription() const override; | ||
llvm::StringRef getName() const override; | ||
}; // struct RemoveUnusedCircuits | ||
|
||
} // namespace mlir::quir | ||
|
||
#endif // QUIR_REMOVE_UNUSED_CIRCUITS_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.