Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for lhs_contracting_dimensions (0.22 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-BatchMatMulV2.mlir

    // CHECK:           "mhlo.dot_general"({{.*}}, {{.*}}) <{
    // CHECK-SAME:        lhs_batching_dimensions = [0]
    // CHECK-SAME:        rhs_batching_dimensions = [0]
    // CHECK-SAME:        lhs_contracting_dimensions = [2]
    // CHECK-SAME:        rhs_contracting_dimensions = [1]
      %0 = "tf.BatchMatMulV2"(%arg0, %arg1) {T = f32, adj_x = false, adj_y = false, device = ""} : (tensor<3x4x2xf32>, tensor<2x4xf32>) -> tensor<3x4x4xf32>
      func.return %0 : tensor<3x4x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/prepare_quantize/prepare_quantize_per_channel.mlir

        %0 = "stablehlo.dot_general"(%arg0, %arg1) {
        dot_dimension_numbers = #stablehlo.dot<
          lhs_batching_dimensions = [],
          rhs_batching_dimensions = [],
          lhs_contracting_dimensions = [1],
          rhs_contracting_dimensions = [0]
          >
        } : (tensor<2x2xf32>, tensor<2x2xf32>) -> tensor<2x2xf32>
        return %0 : tensor<2x2xf32>
      }
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 07:48:15 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.cc

      //   - rank(lhs) is 1 or 2
      //   - rank(rhs) = 2
      //   - size(lhs_contracting_dimensions) = 1
      //   - size(rhs_contracting_dimensions) = 1
      //   - lhs_contracting_dimension = last dimension of lhs.
      //   - `stablehlo.dot_general` should not have `lhs_batching_dim`.
      //   - quantization_dimension(rhs) should not be in
      //     `rhs_contracting_dimensions`.
      // https://github.com/openxla/stablehlo/blob/main/docs/spec.md#dot_general
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top