Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FuncOp (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    CreateDropWhileShapeInvariantInDeviceClusterPass();
    
    // Creates a pass that moves writes to replicate invariant resource variables
    // outside tf_device.replicate op.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateHoistReplicateInvariantResourceWritesPass();
    
    // Transforms functional control flow operations in the TensorFlow dialect to
    // MLIR Control Flow Graph (CFG) form.
    std::unique_ptr<OperationPass<func::FuncOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        return LogicalResult::success(success);
      }
    };
    
    class HandleFunc : public OpRewritePattern<func::FuncOp> {
     public:
      using OpRewritePattern::OpRewritePattern;
    
      LogicalResult matchAndRewrite(func::FuncOp f,
                                    PatternRewriter& rewriter) const override {
        // Adjust the function type to match the block args. So this e.g. transforms
        //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

            .count();
      }
    };
    
    // Populates input_output_alias field in the HLO Module proto.
    Status PopulateInputOutputAliasing(
        mlir::func::FuncOp main_fn,
        XlaCompiler::CompilationResult* compilation_result, bool use_tuple_args) {
      constexpr char kAliasingAttr[] = "tf.aliasing_output";
      llvm::SmallDenseMap<unsigned, unsigned> output_to_input_alias;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

    using mlir::OpOperand;
    using mlir::RankedTensorType;
    using mlir::StringAttr;
    using mlir::success;
    using mlir::Type;
    using mlir::Value;
    using mlir::ValueRange;
    using mlir::WalkResult;
    using mlir::func::FuncOp;
    using mlir::TF::ConstOp;
    using mlir::TF::FillOp;
    using mlir::TF::IdentityOp;
    using mlir::TF::XlaAllReduceOp;
    using mlir::tf_device::ClusterOp;
    using mlir::tf_device::LaunchOp;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top