Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for genValue (0.28 sec)

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

        // TFLite module.
        attr = mlir::cast<ElementsAttr>(cst.getValue());
      } else if (auto cst = dyn_cast<mlir::TF::ConstOp>(inst)) {
        attr = cst.getValue();
      } else if (auto cst = dyn_cast<tfl::ConstOp>(inst)) {
        attr = cst.getValue();
      } else if (auto cst = dyn_cast<tfl::QConstOp>(inst)) {
        attr = cst.getValue();
      } else if (auto cst = dyn_cast<mlir::stablehlo::ConstantOp>(inst)) {
    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. pilot/pkg/networking/core/cluster_test.go

    		} else if locality.Region == "region1" && locality.SubZone == "subzone2" {
    			g.Expect(localityLbEndpoint.LoadBalancingWeight.GetValue()).To(Equal(uint32(17)))
    			g.Expect(localityLbEndpoint.LbEndpoints[0].LoadBalancingWeight.GetValue()).To(Equal(uint32(20)))
    		} else if locality.Region == "region2" {
    			g.Expect(localityLbEndpoint.LoadBalancingWeight.GetValue()).To(Equal(uint32(50)))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          return mlir::cast<IntegerAttr>(val).getValue().getSExtValue() < 0;
        };
        if (llvm::any_of(explicit_padding, is_negative))
          return emitOptionalError(op.getLoc(),
                                   "requires non negative explicit paddings");
      }
    
      ArrayRef<Attribute> strides = op.getStrides().getValue();
      ArrayRef<Attribute> dilations = op.getDilations().getValue();
      if (failed(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

        K key1 = entry1.getKey();
        V value1 = entry1.getValue();
        checkEntryNotNull(key1, value1);
        // Do something that works for j2cl, where we can't call getDeclaredClass():
        EnumMap<K, V> enumMap = new EnumMap<>(singletonMap(key1, value1));
        while (entryItr.hasNext()) {
          Entry<K, ? extends V> entry = entryItr.next();
          K key = entry.getKey();
          V value = entry.getValue();
          checkEntryNotNull(key, value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

        K key1 = entry1.getKey();
        V value1 = entry1.getValue();
        checkEntryNotNull(key1, value1);
        // Do something that works for j2cl, where we can't call getDeclaredClass():
        EnumMap<K, V> enumMap = new EnumMap<>(singletonMap(key1, value1));
        while (entryItr.hasNext()) {
          Entry<K, ? extends V> entry = entryItr.next();
          K key = entry.getKey();
          V value = entry.getValue();
          checkEntryNotNull(key, value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        if (arith::ConstantOp::isBuildableWith(const_op.getValue(),
                                               const_op.getType())) {
          rewriter.replaceOpWithNewOp<arith::ConstantOp>(const_op,
                                                         const_op.getValue());
          return success();
        } else if (TFL::NoValueOp::isBuildableWith(const_op.getValue(),
                                                   const_op.getType())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    TFL::QConstOp CreateTransposedTflConstOpForFilter(
        stablehlo::ConstantOp filter_constant_op, PatternRewriter& rewriter,
        bool is_per_channel) {
      const auto filter_values = filter_constant_op.getValue()
                                     .cast<DenseIntElementsAttr>()
                                     .getValues<int8_t>();
    
      ArrayRef<int64_t> filter_shape =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        auto value_attr = const_op.getValue().dyn_cast<DenseIntElementsAttr>();
        if (!value_attr || value_attr.getNumElements() != 1) return std::nullopt;
    
        auto value_ty = value_attr.getType();
        if (!value_ty.hasRank() || value_ty.getRank() != expected_rank)
          return std::nullopt;
    
        auto splat = value_attr.getSplatValue<IntegerAttr>();
        return splat.getValue().getSExtValue();
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          float_spl && sgn_cst_spl) {
        return IsSign(float_spl.getValue(), sgn_cst_spl.getValue());
      }
      if (auto int_spl = llvm::dyn_cast_if_present<IntegerAttr>(splat),
          sgn_cst_spl = llvm::dyn_cast_if_present<IntegerAttr>(sgn_splat);
          int_spl && sgn_cst_spl) {
        return IsSign(int_spl.getValue(), sgn_cst_spl.getValue());
      }
      if (mlir::isa<DenseFPElementsAttr>(float_or_int)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    java.util.Properties envars; public void EnvarBasedValueSourc() throws java.io.IOException; public Object getValue(String); } org/codehaus/plexus/util/interpolation/MapBasedValueSource.class package org.codehaus.plexus.util.interpolation; public synchronized class MapBasedValueSource implements ValueSource { private final java.util.Map values; public void MapBasedValueSource(java.util.Map); public Object getValue(String); } org/codehaus/plexus/util/interpolation/ObjectBasedValueSour.class package org.codeh...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top