Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ReduceWhileOperandsPass (1.38 sec)

  1. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

    namespace {
    #define GEN_PASS_DEF_REDUCEWHILEOPERANDSPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    struct ReduceWhileOperandsPass
        : public impl::ReduceWhileOperandsPassBase<ReduceWhileOperandsPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(ReduceWhileOperandsPass)
    
      void getDependentDialects(DialectRegistry &registry) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/passes.td

      let options = [
          ListOption<"target_ops_", "test-raise-tf-targets", "std::string",
                 "comma separated list of target op names to be wrapped. Only used in tests">,
      ];
    }
    
    def ReduceWhileOperandsPass : Pass<"tfl-reduce-while", "mlir::func::FuncOp"> {
      let summary = "Reduce the number of operands and results of a whlieOp..";
      let constructor = "CreateReduceWhileOperandsPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top