Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 173 for BenchmarkZ (0.2 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    #     exclude = [
    #         "compile.benchmark.large.mlir",
    #         "batch_function_fallback.mlir",
    #         "create_op.mlir",
    #         "custom_thread_pool.mlir",
    #     ],
    #     # copybara:uncomment flaky = ["compile.error.mlir"],
    #     size_override = {
    #         "compile.benchmark.small.mlir": "medium",
    #         "batching_fallback.mlir": "medium",
    #     },
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. cmd/object-api-putobject_test.go

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

    // output of the test execution.
    //
    // When a benchmark runs, it typically produces a single line of output
    // giving timing results. That line is reported in an event with Action == "output"
    // and no Test field. If a benchmark logs output or reports a failure
    // (for example, by using b.Log or b.Error), that extra output is reported
    // as a sequence of events with Test set to the benchmark name, terminated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/metrics/metrics.go

    		// the bucket distribution here is based oo the benchmark suite at
    		// github.com/DangerOnTheRanger/cel-benchmark performed on 16-core Intel Xeon
    		// the lowest bucket was based around the 180ns/op figure for BenchmarkAccess,
    		// plus some additional leeway to account for the apiserver doing other things
    		// the largest bucket was chosen based on the fact that benchmarks indicate the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/bench_test.go

    	}
    	tmpl := template.Must(template.New("").Funcs(sprig.TxtFuncMap()).ParseFiles(path.Join("testdata", "benchmarks", configName+".yaml")))
    	var buf bytes.Buffer
    	if err := tmpl.ExecuteTemplate(&buf, configName+".yaml", input); err != nil {
    		t.Fatalf("failed to execute template: %v", err)
    	}
    	extra := path.Join("testdata", "benchmarks", configName+".extra.yaml")
    	inputYAML := buf.String()
    	if _, err := os.Stat(extra); err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/test.go

    				return err
    			}
    			t.Tests = append(t.Tests, testFunc{pkg, name, "", false})
    			*doImport, *seen = true, true
    		case isTest(name, "Benchmark"):
    			err := checkTestFunc(n, "B")
    			if err != nil {
    				return err
    			}
    			t.Benchmarks = append(t.Benchmarks, testFunc{pkg, name, "", false})
    			*doImport, *seen = true, true
    		case isTest(name, "Fuzz"):
    			err := checkTestFunc(n, "F")
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tfcompile.bzl

            namespace.
          gen_test: If True, also generate a cc_test rule that builds a simple
            test and benchmark.
          gen_benchmark: If True, also generate a binary with a simple benchmark.
            Unlike the output of gen_test, this benchmark can be run on android.
          gen_compiler_log: If True, dumps XLA:CPU debug output to a log file.
          visibility: Bazel build visibility.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/ChmodBenchmark.java

            FileUtils.forceDelete(tempDirFile);
        }
    
        @Benchmark
        public void createFileJava6(Blackhole blackhole) throws IOException {
            File file = new File(tempDirFile, "file-" + counter.incrementAndGet());
            boolean created = file.createNewFile();
            blackhole.consume(created);
        }
    
        @Benchmark
        public void createFileJava7(Blackhole blackhole) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. src/testing/benchmark_test.go

    		}
    	})
    }
    
    func TestRunParallelFail(t *testing.T) {
    	testing.Benchmark(func(b *testing.B) {
    		b.RunParallel(func(pb *testing.PB) {
    			// The function must be able to log/abort
    			// w/o crashing/deadlocking the whole benchmark.
    			b.Log("log")
    			b.Error("error")
    		})
    	})
    }
    
    func TestRunParallelFatal(t *testing.T) {
    	testing.Benchmark(func(b *testing.B) {
    		b.RunParallel(func(pb *testing.PB) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top