Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for kStandardPipelineBefore (0.2 sec)

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

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "tensorflow/core/lib/core/status.h"
    
    namespace mlir {
    namespace TF {
    
    inline constexpr char kStandardPipelineBefore[] = "standard_pipeline_before";
    inline constexpr char kStandardPipelineAfter[] = "standard_pipeline_after";
    
    // Runs all passes involved in transforming or optimizing an MLIR graph without
    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

          module.getContext(), /*propagate=*/false,
          /*filter_stack=*/!VLOG_IS_ON(1));
    
      constexpr char kBridgeComponent[] = "TFXLABridge";
      if (enable_logging || VLOG_IS_ON(1)) {
        tensorflow::DumpMlirOpToFile(kStandardPipelineBefore, module, "", &bridge);
        if (VLOG_IS_ON(2)) {
          tensorflow::tf2xla::internal::EnablePassIRPrinting(bridge,
                                                             kBridgeComponent);
        }
      }
    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

          mlir::ModuleOp::create(mlir::UnknownLoc::get(&context));
    
      setenv("TF_DUMP_GRAPH_PREFIX", testing::TmpDir().c_str(), 1);
      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(),
    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