Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for targs_values (0.19 sec)

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

          // the extras like the bias etc.
          auto attr = TypeAttr::get(getElementTypeOrSelf(contraction.getType()));
          SmallVector<Attribute, 4> targs_values(operands.size() - 2, attr);
    
          ArrayAttr targs_attr = ArrayAttr::get(context, targs_values);
          attrs.push_back(
              NamedAttribute(StringAttr::get(context, "TArgs"), targs_attr));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/fold_constant_transpose.cc

      void TransposeRecursively(const ArrayRef<float> original_values,
                                const MutableArrayRef<float> target_values,
                                SmallVector<int64_t>& current_indices) const {
        // Map an element from `original_values` to `target_values` when a set of
        // indices is formed.
        if (current_indices.size() == rank_) {
          const int64_t original_index =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          TF::FakeQuantWithMinMaxVarsOp &fakequant_op) const {
        ::llvm::SmallVector<Value, 4> target_values;
        ::llvm::SmallVector<NamedAttribute, 4> target_attrs;
        target_values.push_back((*new_reorder_op.getODSResults(0).begin()));
        target_values.push_back((*min.begin()));
        target_values.push_back((*max.begin()));
        if (auto tmpAttr = num_bits) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top