Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RegisterConvertMlirToXlaHloPipelineWithDefaults (0.39 sec)

  1. tensorflow/compiler/mlir/tf_mlir_opt_main.cc

      mlir::tosa::registerTFTFLtoTOSALegalizationPipeline();
      mlir::tf_test::registerTensorFlowTestPasses();
      mlir::xla_framework::registerXlaFrameworkPasses();
      tensorflow::RegisterConvertMlirToXlaHloPipelineWithDefaults();
      tensorflow::RegisterGraphOptimizationPasses();
      tensorflow::RegisterMlProgramPasses();
      mlir::TFTPU::registerRuntimeLoweringPasses();
      mlir::TFDevice::registerSparseCorePasses();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

      return errors::Internal("disabled after graph analysis");
    }
    
    // Register a convenient pipeline for invoking TF/XLA lowering from the command
    // line.
    void RegisterConvertMlirToXlaHloPipelineWithDefaults();
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      mlir::mhlo::registerTfXlaPasses();
      mlir::mhlo::registerLegalizeTFPass();
      mlir::xla_framework::registerXlaFrameworkPasses();
      tensorflow::RegisterConvertMlirToXlaHloPipelineWithDefaults();
      tensorflow::RegisterGraphOptimizationPasses();
    }
    
    }  // namespace odml
    }  // namespace mlir
    
    int main(int argc, char* argv[]) {
      tensorflow::InitMlir y(&argc, &argv);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      return BuildHloFromModule(module.get(), builder, xla_params, returns, args,
                                device_type, custom_legalization_passes);
    }
    
    void RegisterConvertMlirToXlaHloPipelineWithDefaults() {
      static mlir::PassPipelineRegistration<> pipeline(
          "tf-to-hlo-pipeline",
          "Convert TF dialect to HLO dialect (used for compilation in bridge).",
          [](mlir::OpPassManager& pm) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
Back to top