Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID (0.68 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_save_function_ops_to_main.cc

    class MergeSaveFunctionOpsToMainPass
        : public PassWrapper<MergeSaveFunctionOpsToMainPass,
                             OperationPass<ModuleOp>> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(MergeSaveFunctionOpsToMainPass)
    
      explicit MergeSaveFunctionOpsToMainPass() = default;
    
      StringRef getArgument() const override {
        return "quant-merge-save-function-ops-to-main";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

    // replaces the regions with calls to these outlined functions.
    class WhileOutlinePass : public impl::WhileOutlinePassBase<WhileOutlinePass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(WhileOutlinePass)
      explicit WhileOutlinePass() {}
    
     private:
      void runOnOperation() override;
    
      // Outlines the regions of the WhileOp's cond and body and insert function
      // calls instead,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

    namespace quant {
    namespace {
    
    using ::tensorflow::quantization::OpSet;
    
    class PrepareLiftingPass
        : public PassWrapper<PrepareLiftingPass, OperationPass<func::FuncOp>> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PrepareLiftingPass)
    
      PrepareLiftingPass() = default;
    
      explicit PrepareLiftingPass(OpSet op_set) { op_set_ = op_set; }
    
      PrepareLiftingPass(const PrepareLiftingPass& other) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tf_xla_op_to_tf_op.cc

    namespace mlir {
    namespace quant {
    namespace {
    
    class ConvertTfXlaOpToTfOpPass
        : public PassWrapper<ConvertTfXlaOpToTfOpPass,
                             OperationPass<func::FuncOp>> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(ConvertTfXlaOpToTfOpPass)
    
      ConvertTfXlaOpToTfOpPass() = default;
    
      StringRef getArgument() const final {
        // This is the argument used to refer to the pass in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/transforms/get_alternative_subgraph.cc

    class AlternativeSubgraphPass
        : public mlir::PassWrapper<AlternativeSubgraphPass,
                                   mlir::OperationPass<ModuleOp>> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(AlternativeSubgraphPass)
    
      llvm::StringRef getArgument() const final {
        return "tfl-get-alternative-subgraph";
      }
      llvm::StringRef getDescription() const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

    using ::mlir::TFL::common::OpsAdded;
    using ::mlir::TFL::common::Subgraph;
    
    class RaiseTargetSubgraphsPass
        : public PassWrapper<RaiseTargetSubgraphsPass, OperationPass<ModuleOp>> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(RaiseTargetSubgraphsPass)
    
      RaiseTargetSubgraphsPass() = default;
      RaiseTargetSubgraphsPass(const RaiseTargetSubgraphsPass& other) {
        this->skip_raise_cpu_ops_ = other.skip_raise_cpu_ops_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/push_transpose_through_ewise.cc

    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    class PushTransposeThroughEwisePass
        : public impl::PushTransposeThroughEwisePassBase<
              PushTransposeThroughEwisePass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PushTransposeThroughEwisePass)
      void runOnOperation() override;
    };
    
    // Compute the permutation that would take `arr` to the identity.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

    #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 {
        registry.insert<TFL::TensorFlowLiteDialect, TF::TensorFlowDialect>();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_dynamic_layout_pass.cc

    constexpr char kFuncDeviceAttr[] = "tf.device";
    
    struct TPUDynamicLayoutPass
        : public TF::PerFunctionAggregateAnalysisConsumerPass<
              TPUDynamicLayoutPass, TF::ResourceAliasAnalysis> {
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TPUDynamicLayoutPass)
    
      void runOnFunction(
          func::FuncOp func,
          const TF::ResourceAliasAnalysis::Info& resource_alias_analysis);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_dump_tensor_op.cc

    // input into a file - to quantizable layer's output.
    class AddDumpTensorOpPass
        : public PassWrapper<AddDumpTensorOpPass, OperationPass<ModuleOp>> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(AddDumpTensorOpPass)
    
      explicit AddDumpTensorOpPass() = default;
    
      explicit AddDumpTensorOpPass(DebuggerType debugger_type,
                                   std::string log_dir_path)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top