Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for Advance (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    // Conditional for step 2
    C_2 = cond(args_2)
    
    new_while_body (new_args) {  // starts at i==2
       // Finish step i-2
       B_im2 = backward(args_im2, N_im2, F_im2, T_im2)
    
       // Advance step i-1
       T_im1 = core_tpu(args_im1, N_im1, F_im1)
    
       // Finish the update of args_2
       args_i = args_2b = update_args(args_2a, T_im1)
    
       // Start step i
       N_i = non_tpu(args_i)
       F_i = forward(args_i, N_i)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    // marking the end of the list stream contains the global RV.
    //
    // note that this scenario differs from the one in RunWatchSemantics
    // by adding the pod to a different ns to advance the global RV
    func RunWatchSemanticInitialEventsExtended(ctx context.Context, t *testing.T, store storage.Interface) {
    	trueVal := true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        ): Boolean {
            /**
             * Avoid shortening reference to enum companion used in enum entry initialization there is no guarantee that the companion object
             * was initialized in advance.
             * For example, When we shorten the following code:
             *     enum class C(val i: Int) {
             *         ONE(<expr>C.K</expr>)  // shorten C.K to K
             *         ;
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          if (failed(result)) return WalkResult::interrupt();
          result = RegionResourceHoister::ReplaceOpWithNewOp(cluster);
          if (failed(result)) return WalkResult::interrupt();
          return WalkResult::advance();
        });
      });
    
      if (walk_result.wasInterrupted()) return signalPassFailure();
    
      // Clean up and canonicalize to remove dead local variables as some local
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

                   "$0.cast<DenseElementsAttr>().getValues<bool>().end(), "
                   "[](bool v){ return v == " #val# ";}))">>;
    
    // Remove select operators when the result is known in advance.
    foreach SelectOp = [TFL_SelectOp, TFL_SelectV2Op] in {
      // select(true_tensor, A, B) -> A
      def Optimize#SelectOp#True : Pat<
        (SelectOp:$result (Arith_ConstantOp $constant),
                          $input1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    	res, err = c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if res.StatusCode != 304 {
    		t.Fatalf("Code after If-Modified-Since request = %v; want 304", res.StatusCode)
    	}
    	res.Body.Close()
    
    	// Advance the index.html file's modtime, but not the directory's.
    	indexFile.modtime = indexFile.modtime.Add(1 * time.Hour)
    
    	res, err = c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if res.StatusCode != 200 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    	// packetsSent counts packets.
    	bytesSent   int64
    	packetsSent int64
    
    	// retryCount counts the number of consecutive non-advancing records
    	// received by Conn.readRecord. That is, records that neither advance the
    	// handshake, nor deliver application data. Protected by in.Mutex.
    	retryCount int
    
    	// activeCall indicates whether Close has been call in the low bit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      auto res = mod->walk([&](mlir::Operation *op) -> WalkResult {
        if (op->getName().getStringRef().contains("TensorList")) {
          return WalkResult::interrupt();
        }
        return WalkResult::advance();
      });
      return res.wasInterrupted();
    }
    
    void LowerStaticTensorListPass::runOnOperation() {
      auto *context = &getContext();
      ModuleOp module = getOperation();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    // profile cycle.
    func mProf_PostSweep() {
    	// Flush cycle C+1 to the active profile so everything as of
    	// the last mark termination becomes visible. *Don't* advance
    	// the cycle, since we're still accumulating allocs in cycle
    	// C+2, which have to become C+1 in the next mark termination
    	// and so on.
    	cycle := mProfCycle.read() + 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    }
    
    // createTimeIncrementingPodWorkers will guarantee that each call to UpdatePod and each worker goroutine invocation advances the clock by one second,
    // although multiple workers will advance the clock in an unpredictable order. Use to observe
    // successive internal updates to each update pod state when only a single pod is being updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top