Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LayoutAssignmentPass (0.74 sec)

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

    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // LayoutAssignmentPass assigns optimal data layout (data format) for all
    // layout sensitive operations.
    class LayoutAssignmentPass
        : public impl::LayoutAssignmentPassBase<LayoutAssignmentPass> {
     public:
      LayoutAssignmentPass() = default;
      explicit LayoutAssignmentPass(const std::string& force_data_format) {
        force_data_format_ = force_data_format;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Device assignment in TF dialect using the device specified in the function attribute.";
      let constructor = "TF::CreateTFDeviceAssignmentByFuncAttrPass()";
    }
    
    def LayoutAssignmentPass : Pass<"tf-layout-assignment", "mlir::func::FuncOp"> {
      let summary = "Layout assignment pass.";
      let constructor = "TF::CreateLayoutAssignmentPass()";
      let options = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top