Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CreateXlaRewritePass (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

          return %arg0 : tensor<i32>
        }
        ```
        Notice that the called function is rewritten, with the order of its parameters changed.
      }];
    
      let constructor = "TFDevice::CreateXlaRewritePass()";
      let dependentDialects = ["tf_device::TensorFlowDeviceDialect"];
    }
    
    def XlaValidateInputsPass : Pass<"tf-xla-validate-inputs", "ModuleOp"> {
      let summary = "Validtes inputs to the TF CPU/GPU bridge";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>> CreateXlaInlineDeviceOpsPass();
    
    // Creates a pass that rewrites partitioned calls with `_xla_compile_device
    // type` with `tf.XlaLaunch` ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreateXlaRewritePass();
    
    // Create a pass that validates the input graph to the CPU/GPU bridge.
    std::unique_ptr<OperationPass<ModuleOp>> CreateXlaValidateInputsPass();
    }  // namespace TFDevice
    
    namespace TFTPU {
    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