Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for BenchmarkZ (0.4 sec)

  1. src/testing/testing.go

    		rng.Shuffle(len(m.tests), func(i, j int) { m.tests[i], m.tests[j] = m.tests[j], m.tests[i] })
    		rng.Shuffle(len(m.benchmarks), func(i, j int) { m.benchmarks[i], m.benchmarks[j] = m.benchmarks[j], m.benchmarks[i] })
    	}
    
    	parseCpuList()
    
    	m.before()
    	defer m.after()
    
    	// Run tests, examples, and benchmarks unless this is a fuzz worker process.
    	// Workers start after this is done by their parent process, and they should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	    element in the sequence, if any. Possible parents of matches
    	    are run with b.N=1 to identify sub-benchmarks. For example,
    	    given -bench=X/Y, top-level benchmarks matching X are run
    	    with b.N=1 to find any sub-benchmarks matching Y, which are
    	    then run in full.
    
    	-benchtime t
    	    Run enough iterations of each benchmark to take t, specified
    	    as a time.Duration (for example, -benchtime 1h30s).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. .bazelrc

    # CPU WHEEL
    test:linux_cpu_wheel_test_filters --test_tag_filters=-no_oss,-oss_excluded,-oss_serial,-gpu,-tpu,-benchmark-test,-v1only,-no_oss_py38,-no_oss_py39,-no_oss_py310
    test:linux_cpu_wheel_test_filters --build_tag_filters=-no_oss,-oss_excluded,-oss_serial,-gpu,-tpu,-benchmark-test,-v1only,-no_oss_py38,-no_oss_py39,-no_oss_py310
    test:linux_cpu_wheel_test_filters --test_lang_filters=py --test_size_filters=small,medium
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    		ranGoBench = true
    		return (&goTest{
    			variant:     "racebench",
    			omitVariant: true,               // The only execution of benchmarks in dist; benchmark names are guaranteed not to overlap with test names.
    			timeout:     1200 * time.Second, // longer timeout for race with benchmarks
    			race:        true,
    			bench:       true,
    			cpu:         "4",
    			pkgs:        benchMatches,
    		}).run(t)
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. cmd/object-api-multipart_test.go

    				}
    			}
    		})
    	}
    }
    
    // Benchmarks for ObjectLayer.PutObjectPart().
    // The intent is to benchmark PutObjectPart for various sizes ranging from few bytes to 100MB.
    // Also each of these Benchmarks are run both Erasure and FS backends.
    
    // BenchmarkPutObjectPart5MbFS - Benchmark FS.PutObjectPart() for object size of 5MB.
    func BenchmarkPutObjectPart5MbFS(b *testing.B) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    	flags1 byte
    	flags2 byte
    	flags3 byte
    	flags4 byte
    	ipv6   any
    }
    
    func newip4i_v4(a, b, c, d byte) ip4i {
    	return ip4i{ip4: [4]byte{a, b, c, d}}
    }
    
    // BenchmarkIPv4_inline benchmarks the candidate representation, ip4i.
    func BenchmarkIPv4_inline(b *testing.B) {
    	b.ReportAllocs()
    	ips := []ip4i{}
    	for i := 0; i < b.N; i++ {
    		ip := newip4i_v4(8, 8, 8, 8)
    		ips = ips[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. configure.py

    ]
    
    # List of files to configure when building Bazel on Apple platforms.
    APPLE_BAZEL_FILES = [
        'tensorflow/lite/ios/BUILD', 'tensorflow/lite/objc/BUILD',
        'tensorflow/lite/swift/BUILD',
        'tensorflow/lite/tools/benchmark/experimental/ios/BUILD'
    ]
    
    # List of files to move when building for iOS.
    IOS_FILES = [
        'tensorflow/lite/objc/TensorFlowLiteObjC.podspec',
        'tensorflow/lite/swift/TensorFlowLiteSwift.podspec',
    ]
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. cmd/object-api-listobjects_test.go

    	return obj
    }
    
    // BenchmarkListObjects - Run ListObject Repeatedly and benchmark.
    func BenchmarkListObjects(b *testing.B) {
    	// Make a temporary directory to use as the obj.
    	directory := b.TempDir()
    
    	// Create the obj.
    	obj := initFSObjectsB(directory, b)
    
    	bucket := "ls-benchmark-bucket"
    	// Create a bucket.
    	err := obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    	const bufsize = 32 << 10
    
    	go func() {
    		buf := make([]byte, bufsize)
    		for i := 0; i < N; i++ {
    			sconn, err := ln.Accept()
    			if err != nil {
    				// panic rather than synchronize to avoid benchmark overhead
    				// (cannot call b.Fatal in goroutine)
    				panic(fmt.Errorf("accept: %v", err))
    			}
    			serverConfig := testConfig.Clone()
    			serverConfig.CipherSuites = nil // the defaults may prefer faster ciphers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					if !ok {
    						b.Log("No validator for GVK", pair.old.GroupVersionKind())
    						continue
    					}
    
    					// Run the ratcheting algorithm on the update.
    					// Don't care about result for benchmark
    					validator(pair.old, pair.new)
    				}
    			}
    
    			b.Run("ValidXValid", func(b *testing.B) {
    				for i := 0; i < b.N; i++ {
    					do(validXValidPairs)
    				}
    			})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
Back to top