Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 84 for PassRegistration (0.32 sec)

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

      // Default quant/dequant/requant cost.
      return kDefaultFixedValuedCost;
    }
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateGetOpCostPass() {
      return std::make_unique<GetOpCostPass>();
    }
    
    static PassRegistration<GetOpCostPass> pass;
    
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/tflite_legalize_hlo.cc

    // Creates an instance of the pass.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeHloToTfLitePass() {
      return std::make_unique<LegalizeHloToTfLitePass>();
    }
    
    // Registers the pass implementation
    static PassRegistration<LegalizeHloToTfLitePass> pass;
    
    }  // namespace odml
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/partitioned_topological_sort.cc

      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreatePartitionedTopologicalSortPass() {
      return std::make_unique<PartitionedTopologicalSortPass>();
    }
    
    static PassRegistration<PartitionedTopologicalSortPass> pass;
    
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/transforms/target_annotation.cc

    }
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateTargetAnnotationPass(
        const TacModule* module) {
      return std::make_unique<TargetAnnotationPass>(module);
    }
    
    static PassRegistration<TargetAnnotationPass> pass;
    
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor.cc

          ->IncrementBy(1);
    
      return diag_handler.ConsumeStatus();
    }
    
    // Registers a pipeline builder function for TF Graph export. Should be
    // the same as ExportFromTensorflowDialectToExecutor just in PassRegistration
    // form.
    mlir::PassPipelineRegistration<> tf_dialect_to_executor_pipeline(
        "tf-dialect-to-executor-v1",
        "Run passes to convert from TF Dialect to Executor in preparation for "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 03:41:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/fuse_convolution_pass.cc

          return signalPassFailure();
        }
      }
    };
    
    std::unique_ptr<Pass> createFuseConvolutionPass() {
      return std::make_unique<FuseMhloConvolutionPass>();
    }
    
    static PassRegistration<FuseMhloConvolutionPass> pass;
    
    }  // namespace odml
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 22:21:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/transforms/fold_constants_to_subgraph.cc

    std::unique_ptr<OperationPass<ModuleOp>> CreateFoldConstantsToSubgraphPass(
        bool fold_all_constants) {
      return std::make_unique<FoldConstantsToSubgraphPass>(fold_all_constants);
    }
    
    static PassRegistration<FoldConstantsToSubgraphPass> pass;
    
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_composite_to_tfl_custom.cc

          TFL::CustomOp tfl_custom_op =
              BuildCustomOp(composite, custom_option_buffer);
          composite->replaceAllUsesWith(tfl_custom_op);
          composite->erase();
        });
      }
    };
    
    static PassRegistration<LegalizeCompositeToCustomOpPass> pass;
    
    }  // namespace odml
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/tensorflow/tf_to_quant.cc

    // Creates an instance of the TensorFlow dialect to QuantOps dialect pass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateLegalizeTFToQuantPass() {
      return std::make_unique<LegalizeTFToQuant>();
    }
    
    static PassRegistration<LegalizeTFToQuant> pass([] {
      return CreateLegalizeTFToQuantPass();
    });
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_filter.cc

      }
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateTacFilterPass(
        TacFilters* tac_filters) {
      return std::make_unique<TacFilterPass>(tac_filters);
    }
    
    static PassRegistration<TacFilterPass> pass;
    
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top