Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 120 for Unpack (0.25 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/UnparameterizedBuildController.java

            ModelIdentifier modelIdentifier = modelMapping.getModelIdentifierFromModelType(modelType);
            Object originalTarget = target == null ? null : adapter.unpack(target);
    
            P parameter = initializeParameter(parameterType, parameterInitializer);
    
            BuildResult<?> result;
            try {
                result = getModel(originalTarget, modelIdentifier, parameter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 08:15:25 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

     SparseSoftmaxCrossEntropyWithLogits 1
     StridedSlice 2
     Sub 3
     Sum 1
     Tile 1
     Transpose 2
     Unpack 1
    cluster 2 size 44
     Cast 2
     ConcatV2 2
     Const 18
     ExpandDims 1
     GatherV2 2
     Less 1
     MatMul 1
     Mul 1
     Pack 1
     Prod 2
     Range 1
     Reshape 3
     Shape 8
     StridedSlice 1
    cluster 3 size 10
     AddN 1
     Const 1
     MatMul 2
     Mul 1
     Reshape 3
     Sum 1
     Transpose 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config_test.cc

        %0:3 = "tf.Unpack"(%arg0) {axis = 0 : i64} : (tensor<3xi64>) -> (tensor<i64>, tensor<i64>, tensor<i64>)
        return
      }
    })";
    
    class LegalizationOpConfigTest : public ::testing::Test {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 03:31:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/WriteProperties.java

                deferredProperties.put(name, new Callable<String>() {
                    @Override
                    public String call() throws Exception {
                        Object futureValue = DeferredUtil.unpack(value);
                        checkForNullValue(name, futureValue);
                        return String.valueOf(futureValue);
                    }
                });
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. src/encoding/ascii85/ascii85.go

    func Encode(dst, src []byte) int {
    	if len(src) == 0 {
    		return 0
    	}
    
    	n := 0
    	for len(src) > 0 {
    		dst[0] = 0
    		dst[1] = 0
    		dst[2] = 0
    		dst[3] = 0
    		dst[4] = 0
    
    		// Unpack 4 bytes into uint32 to repack into base 85 5-byte.
    		var v uint32
    		switch len(src) {
    		default:
    			v |= uint32(src[3])
    			fallthrough
    		case 3:
    			v |= uint32(src[2]) << 8
    			fallthrough
    		case 2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. prow/lib.sh

        GIT_SHA="$(git rev-parse --verify HEAD)"
        export GIT_SHA
      fi
      GIT_BRANCH="$(git rev-parse --abbrev-ref HEAD)"
      export GIT_BRANCH
      setup_gcloud_credentials
    }
    
    # Download and unpack istio release artifacts.
    function download_untar_istio_release() {
      local url_path=${1}
      local tag=${2}
      local dir=${3:-.}
      # Download artifacts
      LINUX_DIST_URL="${url_path}/istio-${tag}-linux.tar.gz"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_s390x.s

    	//
    	//    1. T1(x) = floor( R(x) / x^32 ) GF2MUL u
    	//    2. T2(x) = floor( T1(x) / x^32 ) GF2MUL P(x)
    	//    3. C(x)  = R(x) XOR T2(x) mod x^32
    	//
    	// Note: To compensate the division by x^32, use the vector unpack
    	// instruction to move the leftmost word into the leftmost doubleword
    	// of the vector register.  The rightmost doubleword is multiplied
    	// with zero to not contribute to the intermediate results.
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    [start=1]
    . Make sure you have JRE or JDK installed and the JAVA_HOME environment variable is pointing to the Java installation directory. Oracle Java 1.8 JDK is required.
    . Download TeamCity .tar.gz distribution.
    Unpack the `TeamCity<version number>.tar.gz` archive, for example, using the WinZip, WinRar or a similar utility under Windows, or the following command under Linux or macOS:
    
    [listing]
    ----
    tar xfz TeamCity<version number>.tar.gz
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_download.txt

    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.mod
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.zip
    
    # download will fetch and unpack the zip file
    go mod download
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.info
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  10. tensorflow/c/eager/dlpack.h

    namespace tensorflow {
    
    // PyCapsule name for DLPack Tensor
    const char* const kDlTensorCapsuleName = "dltensor";
    
    // Converts eager tensor handle to DLPack (DLManagedTensor*), and return the
    // void* for further PyCapsule construction.
    TF_CAPI_EXPORT extern void* TFE_HandleToDLPack(TFE_TensorHandle* h,
                                                   TF_Status* status);
    
    // Converts DLPack (DLManagedTensor*) to eager tensor handle.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Mar 28 08:41:24 UTC 2020
    - 1.6K bytes
    - Viewed (0)
Back to top