Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RunBridgeWithStandardPipeline (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/bridge.h

    // pass.
    ABSL_DEPRECATED(
        "This is legacy code and is unsupported. Use at your own risk. Use "
        "tf2xla/api/v2/* for specific functionality")
    tensorflow::Status RunBridgeWithStandardPipeline(ModuleOp module,
                                                     bool enable_logging,
                                                     bool enable_inliner);
    }  // namespace TF
    
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 24 22:46:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/bridge.cc

    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/protobuf/core_platform_payloads.pb.h"
    
    namespace mlir {
    namespace TF {
    
    tensorflow::Status RunBridgeWithStandardPipeline(ModuleOp module,
                                                     bool enable_logging,
                                                     bool enable_inliner) {
      PassManager bridge(module.getContext());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 17:16:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util_test.cc

      std::string filepath =
          testing::TmpDir() + "/" + mlir::TF::kStandardPipelineBefore + ".mlir";
    
      std::string output_dump = testing::TmpDir() + "/" + "output_dump.txt";
    
      TF_ASSERT_OK(mlir::TF::RunBridgeWithStandardPipeline(
          module_ref.get(),
          /*enable_logging=*/true, /*enable_inliner=*/false));
    
      std::string errorMessage;
      auto input_file = mlir::openInputFile(filepath, &errorMessage);
    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