Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 787 for iterations (0.34 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/control_flow.mlir

    // RUN: tf-tfrt-opt -tf-to-tfrt="enable-while-parallel-iterations=true" %s | FileCheck %s --dump-input=fail
    
    // CHECK-LABEL: func @cond_false(%arg0: !tfrt.chain, %arg1: !tfrt_fallback.tf_tensor) -> (!tfrt.chain, !tfrt_fallback.tf_tensor)
    func.func @cond_false(%arg0: tensor<i32>) -> tensor<i32> {
      %0 = "tf.Const"() {device = "/device:CPU:0", value = dense<-1> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

        }
    
      // Sort matched operations by their position in the block.
      llvm::sort(cluster.operations, [](Operation *a, Operation *b) -> bool {
        return a->isBeforeInBlock(b);
      });
    
      // Create tf_device::ClusterOp before the last operation in the block that
      // is a part of a match set.
      auto back = cluster.operations.back();
      auto loc = back->getLoc();
      OpBuilder builder(back);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. src/go/ast/filter.go

    func MergePackageFiles(pkg *Package, mode MergeMode) *File {
    	// Count the number of package docs, comments and declarations across
    	// all package files. Also, compute sorted list of filenames, so that
    	// subsequent iterations can always iterate in the same order.
    	ndocs := 0
    	ncomments := 0
    	ndecls := 0
    	filenames := make([]string, len(pkg.Files))
    	var minPos, maxPos token.Pos
    	i := 0
    	for filename, f := range pkg.Files {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    	numas := acc.sortAvailableNUMANodes()
    
    	// Calculate the minimum and maximum possible number of NUMA nodes that
    	// could satisfy this request. This is used to optimize how many iterations
    	// of the loop we need to go through below.
    	minNUMAs, maxNUMAs := acc.rangeNUMANodesNeededToSatisfy(cpuGroupSize)
    
    	// Try combinations of 1,2,3,... NUMA nodes until we find a combination
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

      context:
        cluster: foobar
        user: a name
    current-context: default
    `,
    			wantErr: true,
    		},
    	}
    
    	for _, tt := range tests {
    		// Use a closure so defer statements trigger between loop iterations.
    		err := func() error {
    			tempfile, err := ioutil.TempFile("", "")
    			if err != nil {
    				return err
    			}
    			p := tempfile.Name()
    			defer utiltesting.CloseAndRemove(t, tempfile)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. src/text/template/doc.go

    	{{break}}
    		The innermost {{range pipeline}} loop is ended early, stopping the
    		current iteration and bypassing all remaining iterations.
    
    	{{continue}}
    		The current iteration of the innermost {{range pipeline}} loop is
    		stopped, and the loop starts the next iteration.
    
    	{{template "name"}}
    		The template with the specified name is executed with nil data.
    
    	{{template "name" pipeline}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256.go

    	// ScalarMult, but in this case the doublings are precomputed. The value
    	// [windowValue]G added at iteration k would normally get doubled
    	// (totIterations-k)×4 times, but with a larger precomputation we can
    	// instead add [2^((totIterations-k)×4)][windowValue]G and avoid the
    	// doublings between iterations.
    	t := NewP256Point()
    	p.Set(NewP256Point())
    	tableIndex := len(tables) - 1
    	for _, byte := range scalar {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

    > and you can rely on it after doing initial sanity check and targeted local testing.
    
    ### Submitting Your Change
    
    After you submit your pull request, a Gradle developer will review it. It is normal for this to take several iterations, so don't get discouraged by change requests. They ensure the high quality that we all enjoy.
    
    If you need to check on [CI](http://builds.gradle.org/) status as an external contributor, you can click "Log in as guest".
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    Each test suite has some configuration that is common across for all tests contained in the suite:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/hash/BloomFilterTest.java

      public void testExpectedFpp() {
        BloomFilter<Object> bf = BloomFilter.create(HashTestUtils.BAD_FUNNEL, 10, 0.03);
        double fpp = bf.expectedFpp();
        assertEquals(0.0, fpp);
        // usually completed in less than 200 iterations
        while (fpp != 1.0) {
          boolean changed = bf.put(new Object());
          double newFpp = bf.expectedFpp();
          // if changed, the new fpp is strictly higher, otherwise it is the same
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top