Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 168 for Concatenates (0.27 sec)

  1. tensorflow/compiler/jit/xla_device_ops.h

    // TODO(b/118881356): currently we do not register the QueueEnqueueMany,
    // QueueDequeueMany, or QueueDequeueUpTo kernels because they attempt to read
    // and write the tensors they access in order to concatenate them into a batch.
    // We would need either to call out to an XLA computation to perform the
    // concatenation, or we would need to refactor those kernels so the splitting
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 23 19:28:25 UTC 2021
    - 17.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    used to compile C files in that package. All the CPPFLAGS and CXXFLAGS
    directives in a package are concatenated and used to compile C++ files in that
    package. All the CPPFLAGS and FFLAGS directives in a package are concatenated
    and used to compile Fortran files in that package. All the LDFLAGS directives
    in any package in the program are concatenated and used at link time. All the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batching_fallback.mlir

      %a2 = tfrt_fallback_async.const_dense_tensor dense<[[3, 3], [3, 3]]> : tensor<2x2xi32>
      %b = tfrt_fallback_async.const_dense_tensor dense<[[1, 1], [1, 1]]> : tensor<2x2xi32>
    
      // Two batch_size=2 batches get concatenated.
      %result_1 = tfrt_fallback_async.batch_function device("/device:CPU:0") @matmul_cpu (%a1, %b) {
          num_batch_threads = 1,
          max_batch_size = 4,
          allowed_batch_sizes = [4],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	fs.StringVar(&s.ServerCert.CertKey.CertFile, "tls-cert-file", s.ServerCert.CertKey.CertFile, ""+
    		"File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated "+
    		"after server cert). If HTTPS serving is enabled, and --tls-cert-file and "+
    		"--tls-private-key-file are not provided, a self-signed certificate and key "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

        }
    
        /**
         * Returns a representation of the file path with an alternate extension.  If the file path has no extension,
         * then the provided extension is simply concatenated.  If the file path has an extension, the extension is
         * stripped and replaced with the provided extension.
         *
         * e.g. with a provided extension of ".bar"
         * foo -&gt; foo.bar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/compress/gzip/gzip_test.go

    	}
    
    	n3 := buf.Len()
    	if n2 == n3 {
    		t.Fatal("Flush didn't flush any data")
    	}
    
    	if err := w.Close(); err != nil {
    		t.Fatal(err)
    	}
    
    }
    
    // Multiple gzip files concatenated form a valid gzip file.
    func TestConcat(t *testing.T) {
    	var buf bytes.Buffer
    	w := NewWriter(&buf)
    	w.Write([]byte("hello "))
    	w.Close()
    	w = NewWriter(&buf)
    	w.Write([]byte("world\n"))
    	w.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:10:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest-generate.go

    	for k, v := range installTree {
    		componentName := string(k)
    		// In cases (like gateways) where multiple instances can exist, concatenate the manifests and apply as one.
    		ym := strings.Join(manifests[k], helm.YAMLSeparator)
    		l.LogAndPrintf("Rendering: %s", componentName)
    		dirName := filepath.Join(outputDir, componentName)
    		if !dryRun {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/compress/flate/huffman_bit_writer.go

    	if n != 0 {
    		w.write(w.bytes[:n])
    	}
    	w.nbytes = 0
    	w.write(bytes)
    }
    
    // RFC 1951 3.2.7 specifies a special run-length encoding for specifying
    // the literal and offset lengths arrays (which are concatenated into a single
    // array).  This method generates that run-length encoding.
    //
    // The result is written into the codegen array, and the frequencies
    // of each code is written into the codegenFreq array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/fe.tld

        <function-signature>java.lang.String sdh(java.lang.String)</function-signature>
        <example>${fe:sdh(doc.similar_docs_hash)}</example>
      </function>
    
      <function>
        <description>Concatenate strings.</description>
        <name>join</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String join(java.lang.Object)</function-signature>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 28 07:49:35 UTC 2020
    - 10K bytes
    - Viewed (0)
  10. test/torture.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Various tests for expressions with high complexity.
    
    package main
    
    // Concatenate 16 4-bit integers into a 64-bit number.
    func concat(s *[16]byte) uint64 {
    	r := (((((((((((((((uint64(s[0])<<4|
    		uint64(s[1]))<<4|
    		uint64(s[2]))<<4|
    		uint64(s[3]))<<4|
    		uint64(s[4]))<<4|
    		uint64(s[5]))<<4|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 01 07:20:51 UTC 2014
    - 7.7K bytes
    - Viewed (0)
Back to top