diff options
Diffstat (limited to 'mlir/lib/Quantizer')
5 files changed, 6 insertions, 6 deletions
diff --git a/mlir/lib/Quantizer/Configurations/FxpMathConfig.cpp b/mlir/lib/Quantizer/Configurations/FxpMathConfig.cpp index 6a0cff83ced..4119bde5ac1 100644 --- a/mlir/lib/Quantizer/Configurations/FxpMathConfig.cpp +++ b/mlir/lib/Quantizer/Configurations/FxpMathConfig.cpp @@ -283,5 +283,5 @@ struct FxpMathTargetConfigImpl : public FxpMathTargetConfig { std::unique_ptr<FxpMathTargetConfig> FxpMathTargetConfig::create(SolverContext &context) { - return llvm::make_unique<FxpMathTargetConfigImpl>(context); + return std::make_unique<FxpMathTargetConfigImpl>(context); } diff --git a/mlir/lib/Quantizer/Support/ConstraintAnalysisGraph.cpp b/mlir/lib/Quantizer/Support/ConstraintAnalysisGraph.cpp index b4d48b78025..cfed2a2647c 100644 --- a/mlir/lib/Quantizer/Support/ConstraintAnalysisGraph.cpp +++ b/mlir/lib/Quantizer/Support/ConstraintAnalysisGraph.cpp @@ -68,7 +68,7 @@ CAGOperandAnchor *CAGSlice::getOperandAnchor(Operation *op, } // Create. - auto anchor = llvm::make_unique<CAGOperandAnchor>(op, operandIdx); + auto anchor = std::make_unique<CAGOperandAnchor>(op, operandIdx); auto *unowned = anchor.release(); unowned->nodeId = allNodes.size(); allNodes.push_back(unowned); @@ -87,7 +87,7 @@ CAGResultAnchor *CAGSlice::getResultAnchor(Operation *op, unsigned resultIdx) { } // Create. - auto anchor = llvm::make_unique<CAGResultAnchor>(op, resultIdx); + auto anchor = std::make_unique<CAGResultAnchor>(op, resultIdx); auto *unowned = anchor.release(); unowned->nodeId = allNodes.size(); allNodes.push_back(unowned); diff --git a/mlir/lib/Quantizer/Transforms/AddDefaultStatsTestPass.cpp b/mlir/lib/Quantizer/Transforms/AddDefaultStatsTestPass.cpp index 4868d3be291..a2d38ce211d 100644 --- a/mlir/lib/Quantizer/Transforms/AddDefaultStatsTestPass.cpp +++ b/mlir/lib/Quantizer/Transforms/AddDefaultStatsTestPass.cpp @@ -119,7 +119,7 @@ void AddDefaultStatsPass::runWithConfig(SolverContext &solverContext, } std::unique_ptr<FunctionPassBase> mlir::quantizer::createAddDefaultStatsPass() { - return llvm::make_unique<AddDefaultStatsPass>(); + return std::make_unique<AddDefaultStatsPass>(); } static PassRegistration<AddDefaultStatsPass> pass( diff --git a/mlir/lib/Quantizer/Transforms/InferQuantizedTypesPass.cpp b/mlir/lib/Quantizer/Transforms/InferQuantizedTypesPass.cpp index e1365e769b3..ff293fc93aa 100644 --- a/mlir/lib/Quantizer/Transforms/InferQuantizedTypesPass.cpp +++ b/mlir/lib/Quantizer/Transforms/InferQuantizedTypesPass.cpp @@ -288,7 +288,7 @@ void InferQuantizedTypesPass::transformResultType(CAGResultAnchor *anchor, std::unique_ptr<ModulePassBase> mlir::quantizer::createInferQuantizedTypesPass( SolverContext &solverContext, const TargetConfiguration &config) { - return llvm::make_unique<InferQuantizedTypesPass>(solverContext, config); + return std::make_unique<InferQuantizedTypesPass>(solverContext, config); } static PassRegistration<InferQuantizedTypesPass> diff --git a/mlir/lib/Quantizer/Transforms/RemoveInstrumentationPass.cpp b/mlir/lib/Quantizer/Transforms/RemoveInstrumentationPass.cpp index 104a3b60404..b9fbf27d24f 100644 --- a/mlir/lib/Quantizer/Transforms/RemoveInstrumentationPass.cpp +++ b/mlir/lib/Quantizer/Transforms/RemoveInstrumentationPass.cpp @@ -68,7 +68,7 @@ void RemoveInstrumentationPass::runOnFunction() { std::unique_ptr<FunctionPassBase> mlir::quantizer::createRemoveInstrumentationPass() { - return llvm::make_unique<RemoveInstrumentationPass>(); + return std::make_unique<RemoveInstrumentationPass>(); } static PassRegistration<RemoveInstrumentationPass> |