Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Unpack (0.39 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/ServicesCodec.kt

        override fun encodingForType(type: Class<*>): Encoding? {
            // TODO - perhaps query the isolate owner to see whether the value is in fact a service
            val serviceType = serviceType(GeneratedSubclasses.unpack(type))
            return if (serviceType != null) {
                OwnerServiceEncoding(serviceType)
            } else {
                null
            }
        }
    
        private
        fun serviceType(type: Class<*>): Class<*>? {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. cluster/images/etcd/Makefile

    ifeq ($(ARCH),amd64)
    
    	# Do not compile if we should make an image for amd64, use the official etcd binaries instead
    	# For each release create a tmp dir 'etcd_release_tmp_dir' and unpack the release tar there.
    ifeq ($(OS),windows)
    	for version in $(BUNDLED_ETCD_VERSIONS); do \
    		etcd_release_tmp_dir=$(shell mktemp -d); \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/BUILD

            "//tensorflow/lite/tools/optimize:testdata/unidirectional_sequence_lstm_quantized.bin",
            "//tensorflow/lite/tools/optimize:testdata/unpack.bin",
            "//tensorflow/lite/tools/optimize:testdata/where.bin",
        ],
        tags = [
            "tflite_not_portable_android",
            "tflite_not_portable_ios",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

            null -> writeSmallInt(NULL_VALUE)
            else -> taggedEncodingFor(value.javaClass).run {
                writeSmallInt(tag)
                withDebugFrame({
                    // TODO:configuration-cache evaluate whether we need to unpack the type here
                    // GeneratedSubclasses.unpackType(value).typeName
                    value.javaClass.typeName
                }) {
                    encoding.run { encode(value) }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    // -----
    
    func.func @unpack(%arg0: tensor<2x3xi32>) -> tensor<2xi32> {
      // CHECK: "tfl.unpack"(%arg0) <{axis = -1 : i32, num = 3 : i32}>
      %0:3 = "tfl.unpack"(%arg0) {axis = -1 : i32, num = 3 : i32} : (tensor<2x3xi32>) -> (tensor<2xi32>, tensor<2xi32>, tensor<2xi32>)
      func.return %0#0 : tensor<2xi32>
    }
    
    // -----
    
    func.func @unpack(%arg0: tensor<2x3xi32>) -> tensor<3xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        rewriter.replaceOpWithNewOp<TF::ReshapeOp>(op, result_type, input,
                                                   new_shape);
        return success();
      }
    };
    
    // Converts `TensorListConcatV2` into Unpack and Concat. First we unpack
    // the input tensorlist along the first dimension, which results in N (where N
    // is the first dim's size) tensors (each with shape [element_shape]). Then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

                  Eq(BuiltinOperator_UNPACK));
    
      // Get unpack input and output tensors
      auto unpack_input = subgraph->tensors[op->inputs[0]].get();
      auto unpack_output_0 = subgraph->tensors[op->outputs[0]].get();
      auto unpack_output_1 = subgraph->tensors[op->outputs[1]].get();
    
      // Verify Unpack input is quantized.
      ASSERT_THAT(float_graph->tensors()->Get(op->inputs[0])->type(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            where:
            type               | reference                    | query   | problem
            "Provider<String>" | "project.providers.provider" | "get()" | "value 'provider(?)' failed to unpack provider"
        }
    
        def "restores task fields whose value is property of type #type"() {
            buildFile << """
                import ${Inject.name}
    
                class SomeBean {
                    @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      %0:2 = "tf.Unpack"(%arg0) : (tensor<2x2xi32>) -> (tensor<2xi32>, tensor<2xi32>)
      func.return %0#0 : tensor<2xi32>
    
    // CHECK-LABEL: unpack2Tensors
    // CHECK: "tfl.unpack"(%arg0) <{axis = 0 : i32, num = 2 : i32}> : (tensor<2x2xi32>) -> (tensor<2xi32>, tensor<2xi32>)
    }
    
    func.func @unpack3Tensors(%arg0: tensor<2x3xi32>) -> tensor<2xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        return success();
      }
    };
    
    // Converts tf.Unpack to a series of XLA HLO slice ops.
    //
    // Each slice takes one element along the dimension to unpack and takes the full
    // range for all other dimensions. Each slice is then reshaped to drop the
    // dimension to unpack (which is always of size 1).
    // TODO(antiagainst): consider changing this into a TF internal lowering pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top