Home
last modified time | relevance | path

Searched refs:cloneWithoutRegions (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/mlir/include/mlir/IR/
DBuilders.h468 Operation *cloneWithoutRegions(Operation &op, BlockAndValueMapping &mapper) { in cloneWithoutRegions() function
469 return insert(op.cloneWithoutRegions(mapper)); in cloneWithoutRegions()
471 Operation *cloneWithoutRegions(Operation &op) { in cloneWithoutRegions() function
472 return insert(op.cloneWithoutRegions()); in cloneWithoutRegions()
474 template <typename OpT> OpT cloneWithoutRegions(OpT op) { in cloneWithoutRegions() function
475 return cast<OpT>(cloneWithoutRegions(*op.getOperation())); in cloneWithoutRegions()
DOperation.h88 Operation *cloneWithoutRegions(BlockAndValueMapping &mapper);
93 Operation *cloneWithoutRegions();
DOpDefinition.h1524 ConcreteType cloneWithoutRegions() { in cloneWithoutRegions() function
1525 return cast<ConcreteType>(getOperation()->cloneWithoutRegions()); in cloneWithoutRegions()
/external/llvm-project/mlir/lib/Dialect/SCF/Transforms/
DStructuralTypeConversions.cpp52 ForOp newOp = cast<ForOp>(rewriter.cloneWithoutRegions(*op.getOperation())); in matchAndRewrite()
104 IfOp newOp = cast<IfOp>(rewriter.cloneWithoutRegions(*op.getOperation())); in matchAndRewrite()
/external/llvm-project/mlir/lib/IR/
DOperation.cpp607 Operation *Operation::cloneWithoutRegions(BlockAndValueMapping &mapper) { in cloneWithoutRegions() function in Operation
632 Operation *Operation::cloneWithoutRegions() { in cloneWithoutRegions() function in Operation
634 return cloneWithoutRegions(mapper); in cloneWithoutRegions()
643 auto *newOp = cloneWithoutRegions(mapper); in clone()
DBuiltinDialect.cpp186 FuncOp newFunc = cast<FuncOp>(getOperation()->cloneWithoutRegions()); in clone()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/translate/
Dimport_model.cc3116 func = orig_func.cloneWithoutRegions(); in CreateSavedModelIR()