Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,008 for small8 (0.09 sec)

  1. test/abi/reg_not_ssa.go

    // run
    
    //go:build !wasm
    
    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // small enough for registers, too large for SSA
    type T struct {
    	a, b, c, d, e int
    }
    
    //go:noinline
    func F() {
    	a, b := g(), g()
    	h(b, b)
    	h(a, g())
    	if a.a == 1 {
    		a = g()
    	}
    	h(a, a)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 532 bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/BUILD

            "@com_google_absl//absl/status",
            "@com_google_absl//absl/status:statusor",
            "@com_google_absl//absl/strings",
        ],
    )
    
    tf_cc_test(
        name = "metrics_test",
        size = "small",
        srcs = ["metrics_test.cc"],
        deps = [
            ":metrics",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 05:43:44 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel.go

    			// Found a matching, unallocated instance. Let's use it.
    			//
    			// A more thorough search would include backtracking because
    			// allocating one "large" instances for a "small" request may
    			// make a following "large" request impossible to satisfy when
    			// only "small" instances are left.
    			instances[i].Allocated = true
    			indices = append(indices, i)
    			break
    		}
    	}
    	return indices, nil
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:16 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/internal/bytealg/indexbyte_amd64.s

    TEXT	indexbytebody<>(SB), NOSPLIT, $0
    	// Shuffle X0 around so that each byte contains
    	// the character we're looking for.
    	MOVD AX, X0
    	PUNPCKLBW X0, X0
    	PUNPCKLBW X0, X0
    	PSHUFL $0, X0, X0
    
    	CMPQ BX, $16
    	JLT small
    
    	MOVQ SI, DI
    
    	CMPQ BX, $32
    	JA avx2
    sse:
    	LEAQ	-16(SI)(BX*1), AX	// AX = address of last 16 bytes
    	JMP	sseloopentry
    
    	PCALIGN $16
    sseloop:
    	// Move the next 16-byte chunk of the data into X1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 19:06:01 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

        javacopts = ["-XepDisableAllChecks"],
        visibility = ["//visibility:public"],
        deps = [
    ${subProjectDependencies}
        ]
    )
    
    junit_tests(
        name = "tests_for_project${subProjectNumber}",
        size = "small",
        srcs = glob(["src/test/java/**/*.java"]),
        deps = [
            "project${subProjectNumber}",
            ${subProjectDependencies}
        ],
    )
    """
            } else {
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/internal/bytealg/equal_amd64.s

    	JMP	memeqbody<>(SB)
    
    // Input:
    //   a in SI
    //   b in DI
    //   count in BX
    // Output:
    //   result in AX
    TEXT memeqbody<>(SB),NOSPLIT,$0-0
    	CMPQ	BX, $8
    	JB	small
    	CMPQ	BX, $64
    	JB	bigloop
    #ifndef hasAVX2
    	CMPB	internal∕cpu·X86+const_offsetX86HasAVX2(SB), $1
    	JE	hugeloop_avx2
    
    	// 64 bytes at a time using xmm registers
    	PCALIGN $16
    hugeloop:
    	CMPQ	BX, $64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:34:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. test/codegen/stack.go

    // arm64:"TEXT\t.*, [$]0-"
    // ppc64x:"TEXT\t.*, [$]0-"
    // s390x:"TEXT\t.*, [$]0-"
    // Note: that 386 currently has to spill a register.
    func KeepWanted(t *T) {
    	*t = T{A: t.A, B: t.B, C: t.C, D: t.D}
    }
    
    // Check that small array operations avoid using the stack (issue #15925).
    
    // Notes:
    // - 386 fails due to spilling a register
    // - arm & mips fail due to softfloat calls
    // amd64:"TEXT\t.*, [$]0-"
    // arm64:"TEXT\t.*, [$]0-"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/ipallocator_test.go

    		last   netip.Addr
    		offset uint64
    		want   []string
    	}{
    		{
    			name:   "start from first address small range",
    			first:  netip.MustParseAddr("192.168.0.1"),
    			last:   netip.MustParseAddr("192.168.0.2"),
    			offset: 0,
    			want:   []string{"192.168.0.1", "192.168.0.2"},
    		}, {
    			name:   "start from last address small range",
    			first:  netip.MustParseAddr("192.168.0.1"),
    			last:   netip.MustParseAddr("192.168.0.2"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  9. src/strings/clone.go

    package strings
    
    import (
    	"internal/stringslite"
    )
    
    // Clone returns a fresh copy of s.
    // It guarantees to make a copy of s into a new allocation,
    // which can be important when retaining only a small substring
    // of a much larger string. Using Clone can help such programs
    // use less memory. Of course, since using Clone makes a copy,
    // overuse of Clone can make programs use more memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 809 bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/AbstractCodecTest.groovy

            when:
            decode(bytes) { Decoder decoder ->
                decoder.readLong()
            }
    
            then:
            thrown(EOFException)
        }
    
        def "can encode and decode a small long"() {
            expect:
            def bytesA = encode { Encoder encoder ->
                encoder.writeSmallLong(a as long)
            }
            def bytesB = encode { Encoder encoder ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top