Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for ElementType (0.12 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      for (const auto& operand : op->getOperands()) {
        auto elementType = getElementTypeOrSelf(operand.getType());
        if (mlir::isa<mlir::TF::ResourceType>(elementType)) {
          return true;
        }
      }
      for (const auto& result : op->getResults()) {
        auto elementType = getElementTypeOrSelf(result.getType());
        if (mlir::isa<mlir::TF::ResourceType>(elementType)) {
          return true;
        }
      }
      return false;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                        case 1:
                            // GENERATE factory.newInstance(this, propertyName, propType, elementType)
                            Type elementType = getType(rawTypeParam(property, 0));
                            _LDC(propType);
                            _LDC(elementType);
                            _INVOKEVIRTUAL(MANAGED_OBJECT_FACTORY_TYPE, "newInstance", RETURN_OBJECT_FROM_MODEL_OBJECT_STRING_CLASS_CLASS);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

       * accepts non-{@code Collection} iterables and empty iterables.
       */
      public static <E extends Enum<E>> EnumSet<E> newEnumSet(
          Iterable<E> iterable, Class<E> elementType) {
        EnumSet<E> set = EnumSet.noneOf(elementType);
        Iterables.addAll(set, iterable);
        return set;
      }
    
      // HashSet
    
      /**
       * Creates a <i>mutable</i>, initially empty {@code HashSet} instance.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          new_filter_values[new_idx] = filter_values[old_idx];
        }
      }
    
      auto new_filter_value_attr_type = RankedTensorType::getChecked(
          filter_constant_op.getLoc(), new_filter_shape,
          /*elementType=*/rewriter.getI8Type());
    
      Type new_filter_quantized_type;
    
      if (is_per_channel) {
        auto filter_quantized_type = GetElementType(filter_constant_op.getResult())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      }
    
      result.addOperands({cond, x, y});
    
      auto elementType = x.getType().dyn_cast<ShapedType>().getElementType();
      if (has_static_cond_shape && has_static_operand_shape) {
        result.types.push_back(
            tensorflow::GetTypeFromTFTensorShape(broadcastedShape, elementType));
      } else {
        result.types.push_back(UnrankedTensorType::get(elementType));
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. doc/go_spec.html

    type, called the element type.
    The number of elements is called the length of the array and is never negative.
    </p>
    
    <pre class="ebnf">
    ArrayType   = "[" ArrayLength "]" ElementType .
    ArrayLength = Expression .
    ElementType = Type .
    </pre>
    
    <p>
    The length is part of the array's type; it must evaluate to a
    non-negative <a href="#Constants">constant</a>
    <a href="#Representability">representable</a> by a value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top