Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for value_dtype (0.51 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        TypeAttr:$key_dtype,
        TypeAttr:$value_dtype
      );
    
      let results = (outs
        Res<TF_ResourceTensor, [{Handle to a table.}], [TF_LookupTableAlloc]>:$table_handle
      );
    
      let builders = [
        OpBuilder<(ins "StringAttr":$container, "StringAttr":$shared_name,
          "BoolAttr":$use_node_name_sharing, "TypeAttr":$key_dtype, "TypeAttr":$value_dtype),
        [{
          build($_builder, $_state,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

            writeClass(value.keyType)
            writeClass(value.valueType)
            providerCodec.run { encodeValue(value.calculateExecutionTimeValue()) }
        }
    
        override suspend fun ReadContext.decode(): DefaultMapProperty<*, *> {
            val keyType: Class<Any> = readClass().uncheckedCast()
            val valueType: Class<Any> = readClass().uncheckedCast()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // shaped. Otherwise, it will have a dynamic dimension.
    static RankedTensorType GetExtentsTensorTypeFor(TensorType value_type) {
      Builder b(value_type.getContext());
      int64_t dim = value_type.hasRank() ? value_type.getRank() : -1;
      return tensorflow::GetTypeFromTFTensorShape({dim}, b.getIndexType());
    }
    
    // Given a value (broadcast_to) and a feature dimension, broadcasts a 1D
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            variant_ty.getSubtypes()[0].getElementType());
      }
      Type value_type = value.getType();
      Type element_type;
      variant_ty = value_type.dyn_cast<TF::VariantType>();
      if (variant_ty && !variant_ty.getSubtypes().empty()) {
        element_type = variant_ty.getSubtypes()[0].getElementType();
      } else {
        element_type = getElementTypeOrSelf(value_type);
      }
      return UnrankedTensorType::get(element_type);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. samples/addons/grafana.yaml

    "sum(istio_build) by (component, tag)","format":"time_series","intervalFactor":1,"legendFormat":"{{ component }}: {{ tag }}","refId":"A"}],"thresholds":[],"timeRegions":[],"title":"Istio Components by Version","tooltip":{"shared":true,"sort":0,"value_type":"individual"},"type":"graph","xaxis":{"mode":"time","show":true,"values":[]},"yaxes":[{"format":"short","logBase":1,"show":true},{"format":"short","logBase":1,"show":false}],"yaxis":{"align":false}}],"schemaVersion":38,"style":"dark","tags":[]...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top