Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for PassRegistration (0.14 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

            "your original model plans");
      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreatePickSubgraphsPass() {
      return std::make_unique<PickSubgraphsPass>();
    }
    
    static PassRegistration<PickSubgraphsPass> pass;
    
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

        std::optional<ModuleOp> tfr_module, bool materialize_derived_attrs) {
      return std::make_unique<RaiseToTFOpsPass>(tfr_module,
                                                materialize_derived_attrs);
    }
    
    static PassRegistration<RaiseToTFOpsPass> pass([] {
      return CreateRaiseToTFOpsPass();
    });
    
    }  // namespace TFR
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

          return signalPassFailure();
        }
      }
    };
    
    std::unique_ptr<Pass> createOptimizePass() {
      return std::make_unique<OptimizePass>();
    }
    
    static PassRegistration<OptimizePass> pass;
    
    }  // namespace odml
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateReplaceCastHacksWithTFXLAOpsPass() {
      return std::make_unique<ReplaceCastHacksWithTFXLAOpsPass>();
    }
    
    static PassRegistration<ReplaceCastHacksWithTFXLAOpsPass> pass;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top