Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 153 for concatenation (0.22 sec)

  1. tensorflow/compiler/mlir/lite/tests/quantize.mlir

    }
    
    // CHECK-LABEL: QuantizeConcat
    func.func @QuantizeConcat(tensor<1x2xf32>, tensor<1x2xf32>) -> tensor<2x2x!quant.uniform<u8:f32, 1.000000e-01:128>> {
    ^bb0(%arg0: tensor<1x2xf32>, %arg1: tensor<1x2xf32>):
      %0 = "tfl.concatenation"(%arg0, %arg1) {axis = 0 : i32, fused_activation_function = "NONE"} : (tensor<1x2xf32>, tensor<1x2xf32>) -> tensor<2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:10:13 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt

          if (jdkWithJettyBoot != null) {
            return jdkWithJettyBoot
          }
    
          return Platform()
        }
    
        /**
         * Returns the concatenation of 8-bit, length prefixed protocol names.
         * http://tools.ietf.org/html/draft-agl-tls-nextprotoneg-04#page-4
         */
        fun concatLengthPrefixed(protocols: List<Protocol>): ByteArray {
          val result = Buffer()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/README.md

        %1 = "tfl.reshape"(%arg1, %cst) {tac.device = "GPU", tac.inference_type = "FLOAT"} : (tensor<1xf32>, tensor<4xi32>) -> tensor<1x1x1x1xf32>
        %2 = "tfl.concatenation"(%0, %1) {axis = 3 : i32, fused_activation_function = "NONE", tac.device = "GPU", tac.inference_type = "FLOAT"} : (tensor<1x1x1x1xf32>, tensor<1x1x1x1xf32>) -> tensor<1x1x1x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  4. src/compress/gzip/gunzip_test.go

    			0x74, 0x78, 0x74, 0x00, 0xcb, 0x48, 0xcd, 0xc9,
    			0xc9, 0x57, 0x28, 0xcf, 0x2f, 0xca, 0x49, 0xe1,
    			0x02, 0x00, 0x2d, 0x3b, 0x08, 0xaf, 0x0c, 0x00,
    			0x00, 0x00,
    		},
    		nil,
    	},
    	{ // concatenation
    		"hello.txt",
    		"hello.txt x2",
    		"hello world\n" +
    			"hello world\n",
    		[]byte{
    			0x1f, 0x8b, 0x08, 0x08, 0xc8, 0x58, 0x13, 0x4a,
    			0x00, 0x03, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x2e,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  5. pkg/volume/util/nestedpendingoperations/nestedpendingoperations.go

    	EmptyNodeName types.NodeName = types.NodeName("")
    )
    
    // NestedPendingOperations defines the supported set of operations.
    type NestedPendingOperations interface {
    
    	// Run adds the concatenation of volumeName, podName, and nodeName to the list
    	// of running operations and spawns a new go routine to run
    	// generatedOperations.
    
    	// volumeName, podName, and nodeName collectively form the operation key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  6. src/regexp/syntax/regexp.go

    	OpQuest                        // matches Sub[0] zero or one times
    	OpRepeat                       // matches Sub[0] at least Min times, at most Max (Max == -1 is no limit)
    	OpConcat                       // matches concatenation of Subs
    	OpAlternate                    // matches alternation of Subs
    )
    
    const opPseudo Op = 128 // where pseudo-ops start
    
    // Equal reports whether x and y have identical structure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/runtime/malloc_test.go

    		for i := 0; i < 10; i++ {
    			b[i] = byte(i) + '0'
    		}
    		s := "foo" + string(b)
    		if want := "foo0123456789"; s != want {
    			t.Fatalf("want %v, got %v", want, s)
    		}
    	})
    	// Only string concatenation allocates.
    	if n != 1 {
    		t.Fatalf("want 1 allocation, got %v", n)
    	}
    }
    
    func TestTinyAlloc(t *testing.T) {
    	if runtime.Raceenabled {
    		t.Skip("tinyalloc suppressed when running in race mode")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/README

    	The output (and any error) from each command is printed to
    	the log in the order in which the commands were started.
    	After the call to 'wait', the script's stdout and stderr
    	buffers contain the concatenation of the background
    	commands' outputs.
    
    
    
    The available conditions are:
    [GOARCH:*]
    	runtime.GOARCH == <suffix>
    [GODEBUG:*]
    	GODEBUG contains <suffix>
    [GOEXPERIMENT:*]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/cmds.go

    			return nil, os.Symlink(filepath.FromSlash(args[2]), s.Path(args[0]))
    		})
    }
    
    // Wait waits for the completion of background commands.
    //
    // When Wait returns, the stdout and stderr buffers contain the concatenation of
    // the background commands' respective outputs in the order in which those
    // commands were started.
    func Wait() Cmd {
    	return Command(
    		CmdUsage{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            "dirsFromFcElementsSetFiltered"    | "dirs from FC elements set filtered"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19817")
        def "fail when concatenation of files is used for path instead of single files"() {
            def path = file("files/file0.txt${File.pathSeparator}files/dir1").path
            buildFile """
                def files = files('${escapeString(path)}')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top