Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for VerifyNoOutsideCompilationMarkersPass (0.47 sec)

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

    #define GEN_PASS_DEF_VERIFYNOOUTSIDECOMPILATIONMARKERSPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.h.inc"
    
    class VerifyNoOutsideCompilationMarkersPass
        : public impl::VerifyNoOutsideCompilationMarkersPassBase<
              VerifyNoOutsideCompilationMarkersPass> {
     public:
      void runOnOperation() override;
    };
    
    bool IsLaunchOp(Operation& op) {
      return dyn_cast<tf_device::LaunchOp>(op) != nullptr;
    }
    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/tf_device_passes.td

          }) {device = "CPU:0"} : () -> tensor<i1>
          return %1
        }
        ```
      }];
    
      let constructor = "TFDevice::CreateDeviceAttributeToLaunchPass()";
    }
    
    def VerifyNoOutsideCompilationMarkersPass : Pass<"verify-no-outside-compilation-markers", "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)
Back to top