Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PassPipelineCLParser (0.16 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      os.flush();
    
      output->os() << result;
      output->keep();
    
      return absl::OkStatus();
    }
    
    tensorflow::Status ConvertTFToStableHLO(
        ModuleOp tf_module, const PassPipelineCLParser& pass_pipeline) {
      PassManager pm(tf_module.getContext());
      if (failed(applyPassManagerCLOptions(pm))) {
        return tensorflow::errors::Aborted(
            "Failed to apply MLIR pass manager CL options.");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util_test.cc

      EXPECT_THAT(input_file, Not(IsNull()));
    
      auto output_stream = mlir::openOutputFile(output_dump, &errorMessage);
      EXPECT_THAT(output_stream, Not(IsNull()));
    
      mlir::PassPipelineCLParser passPipeline(
          /*arg=*/"", /*description=*/"Compiler passes to run", /*alias=*/"p");
      mlir::DialectRegistry registry;
      mlir::registerAllDialects(registry);
      mlir::RegisterAllTensorFlowDialects(registry);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 18 13:40:21 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top