Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for 1xf32 (0.03 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

    //          (tensor<?x3x4x2xf32>) -> tensor<i32>
    // %5 = stablehlo.reshape %4 :
    //          (tensor<i32>) -> tensor<1xi32>
    // %6 = stablehlo.concatenate %5, %0, %1, %2, dim = 0 :
    //          (tensor<1xi32>, tensor<1xi32>, tensor<1xi32>, tensor<1xi32>)
    //            -> tensor<4xi32>
    // %7 = stablehlo.dynamic_broadcast_in_dim %arg2, %6
    // %8 = stablehlo.add %3, %7
    // ```
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

          while (auto cast_op =
                     llvm::dyn_cast_or_null<CastOp>(value.getDefiningOp())) {
            // Consider cast compatibility in case
            //    %cast = "tf.Cast"(%0) : (tensor<2xi64>) -> tensor<2xf32>
            // is skipped.
            if (cast_op.getSrcT() != cast_op.getDstT()) {
              break;
            }
            value = cast_op.getOperand();
          }
          return value;
        };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

    // Casts the `target` type to a quantized type by using the quantization
    // parameters from the type in the `source` type attribute.
    // Examples:
    //   f32 -> !quant.uniform<i8:f32, 1.0>
    //   tensor<4xf32> -> tensor<4x!quant.uniform<i8:f32, 1.0>>
    // The result is wrapped by a type attribute. Returns nullptr if the cast
    // isn't valid.
    //
    // `axis` is to specify the quantization dimension in the `target` and only
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top