Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CreateVerifyNoOutsideCompilationMarkersPass (0.88 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/verify_no_outside_compilation_markers_pass.cc

      });
    
      if (walk_result.wasInterrupted()) {
        signalPassFailure();
      }
    }
    
    }  // namespace
    
    std::unique_ptr<mlir::OperationPass<func::FuncOp>>
    CreateVerifyNoOutsideCompilationMarkersPass() {
      return std::make_unique<VerifyNoOutsideCompilationMarkersPass>();
    }
    
    }  // namespace TFDevice
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 22 19:52:08 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/verify_no_outside_compilation_markers_pass_test.cc

                                GetMlirModuleFromString(module_string, &context_));
    
        pm_ = std::make_unique<mlir::PassManager>(&context_);
        pm_->addNestedPass<func::FuncOp>(
            CreateVerifyNoOutsideCompilationMarkersPass());
      }
    
      mlir::LogicalResult Run() { return pm_->run(module_.get()); }
    
     private:
      MLIRContext context_;
      OwningOpRef<ModuleOp> module_;
      std::unique_ptr<mlir::PassManager> pm_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

        and tf_device.launch ops no longer exist and have been removed. This happens
        after Outside Compilation passes have completed.
      }];
    
      let constructor = "TFDevice::CreateVerifyNoOutsideCompilationMarkersPass()";
    }
    
    def DecomposeResourceOpsPass : Pass<"tf-device-decompose-resource-ops", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

                     CreateExtractHeadTailOutsideCompilationPass());
      pm.addPass(
          tensorflow::tf2xla::internal::CreateExtractOutsideCompilationPass());
      pm.addNestedPass<FuncOp>(
          mlir::TFDevice::CreateVerifyNoOutsideCompilationMarkersPass());
    
      pm.addNestedPass<FuncOp>(mlir::TFDevice::CreateClusterConstantSinkingPass());
      pm.addPass(mlir::TF::CreateResourceDeviceInferencePass());
      pm.addNestedPass<FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Creates a pass to ensure that the `_xla_outside_compilation` and
    // tf_device.launch op no longer exist after Outside Compilation is complete.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateVerifyNoOutsideCompilationMarkersPass();
    
    // Create a pass that inlines the StatefulPartitionedCallOp op based in the
    // parent region.
    std::unique_ptr<OperationPass<ModuleOp>> CreateXlaInlineDeviceOpsPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top