Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for transposed_values (0.14 sec)

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

      // Transposes `values` with the permutation. Returns the transposed values.
      SmallVector<float> TransposeValues(const ArrayRef<float> values) const {
        SmallVector<float> transposed_values(values.size());
        SmallVector<int64_t> current_indices = {};
        TransposeRecursively(values, transposed_values, current_indices);
    
        return transposed_values;
      }
    
      // Returns the shape after permutation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    
    
    // Fuse redundant TFL_TransposeOp into TFL_BatchMatMulOp
    def FuseTransposeIntoBatchMatMulLHS: Pat<
      (TFL_BatchMatMulOp
        (TFL_TransposeOp:$transposed_value $input, (Arith_ConstantOp:$perm_value $p0)),
        $rhs, $adj_x, $adj_y, $asymmetric_quantize_inputs),
      (TFL_BatchMatMulOp $input, $rhs, ConstBoolAttrTrue, $adj_y, $asymmetric_quantize_inputs),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top