Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,159 for iterations (0.22 sec)

  1. src/math/big/nat_test.go

    		t.Fatalf("incorrect quotient: %s", s)
    	}
    }
    
    // TestIssue42552 triggers an edge case of recursive division
    // where the first division loop is never entered, and correcting
    // the remainder takes exactly two iterations in the final loop.
    func TestIssue42552(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/phi.go

    	for len(priq.a) > 0 {
    		currentRoot := heap.Pop(priq).(*ssa.Block)
    		if debugPhi {
    			fmt.Printf("currentRoot %s\n", currentRoot)
    		}
    		// Walk subtree below definition.
    		// Skip subtrees we've done in previous iterations.
    		// Find edges exiting tree dominated by definition (the dominance frontier).
    		// Insert phis at target blocks.
    		if queued.contains(currentRoot.ID) {
    			s.s.Fatalf("root already in queue")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_test.cc

        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        TFE_Execute(matmul, &retvals[0], &num_retvals, status);
        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        if (state.iterations() >= state.max_iterations && async) {
          TFE_Executor* executor = TFE_ContextGetExecutorForThread(ctx);
          TFE_ExecutorWaitForAllPendingNodes(executor, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  4. tensorflow/c/kernels_experimental.cc

      ~TmpVar() override { VLOG(3) << "TmpVar " << name << " deleted"; }
    };
    
    // Makes a unique name for a temporary variable inside a while loop body,
    // because loop can be executed in multiple iterations in parallel.
    std::string TemporaryVariableName(
        const std::string& var_name,
        const tensorflow::FrameAndIter& control_frame) {
      if (control_frame.frame_id != tensorflow::kIllegalFrameId &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. src/internal/reflectlite/all_test.go

    	}
    	if runtime.GOMAXPROCS(0) > 1 {
    		t.Skip("skipping; GOMAXPROCS>1")
    	}
    	i := -1
    	allocs := testing.AllocsPerRun(n, func() {
    		f(i)
    		i++
    	})
    	if allocs > 0 {
    		t.Errorf("%d iterations: got %v mallocs, want 0", n, allocs)
    	}
    }
    
    func TestAllocations(t *testing.T) {
    	noAlloc(t, 100, func(j int) {
    		var i any
    		var v Value
    
    		i = []int{j, j, j}
    		v = ValueOf(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  6. src/runtime/chan_test.go

    	// mark worker to shrink the sender's stack and race with the
    	// sender parking.
    	//
    	// Unfortunately the race window here is so small that we
    	// either need a ridiculous number of iterations, or we add
    	// "usleep(1000)" to park_m, just before the unlockf call.
    	const n = 10
    	send := func(c chan<- int, done chan struct{}) {
    		for i := 0; i < n; i++ {
    			c <- i
    			// Use lots of stack briefly so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    		//       STXV VS32,32(R20)
    		//       STXV VS32,48(R20)
    		//       ADD  $64,R20
    		//       BC   16, 0, loop
    
    		// Bytes per iteration
    		ctr := v.AuxInt / 64
    
    		// Remainder bytes
    		rem := v.AuxInt % 64
    
    		// Only generate a loop if there is more
    		// than 1 iteration.
    		if ctr > 1 {
    			// Set up VS32 (V0) to hold 0s
    			p := s.Prog(ppc64.AXXLXOR)
    			p.From.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    	-fuzztime t
    	    Run enough iterations of the fuzz target during fuzzing to take t,
    	    specified as a time.Duration (for example, -fuzztime 1h30s).
    		The default is to run forever.
    	    The special syntax Nx means to run the fuzz target N times
    	    (for example, -fuzztime 1000x).
    
    	-fuzzminimizetime t
    	    Run enough iterations of the fuzz target during each minimization
    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. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	// Store counters
    	MOVO D0, ctr0Store; MOVO D1, ctr1Store; MOVO D2, ctr2Store; MOVO D3, ctr3Store
    
    	// There are 10 ChaCha20 iterations of 2QR each, so for 6 iterations we hash 2 blocks, and for the remaining 4 only 1 block - for a total of 16
    	MOVQ $4, itr1
    	MOVQ inp, itr2
    
    openSSEInternalLoop:
    	MOVO          C3, tmpStore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  10. src/runtime/map_test.go

    			first = append(first, i)
    		}
    
    		// 800 chances to get a different iteration order.
    		// See bug 8736 for why we need so many tries.
    		for n := 0; n < 800; n++ {
    			idx := 0
    			for i := range m {
    				if i != first[idx] {
    					// iteration order changed.
    					continue NextRound
    				}
    				idx++
    			}
    		}
    		t.Fatalf("constant iteration order on round %d: %v", round, first)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top