Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for counter1 (0.14 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    		// generates STXV instructions on
    		// power9. The Short variation is used
    		// if no loop is generated.
    
    		// sizes >= 64 generate a loop as follows:
    
    		// Set up loop counter in CTR, used by BC
    		// XXLXOR clears VS32
    		//       XXLXOR VS32,VS32,VS32
    		//       MOVD len/64,REG_TMP
    		//       MOVD REG_TMP,CTR
    		//       loop:
    		//       STXV VS32,0(R20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      %3 = "tf.Reshape"(%arg1, %two) {_replication_info = "cluster1", _xla_compile_device_type = "TPU", device = ""} : (tensor<?xi64>, tensor<1xi32>) -> tensor<?xi64>
      %4 = "tf.Identity"(%3) {_replication_info = "cluster1", _xla_compile_device_type = "TPU"} : (tensor<?xi64>) -> tensor<?xi64>
    
      func.return %2, %4 : tensor<?xi32>, tensor<?xi64>
    }
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    				return
    			}
    		}
    
    		// ensure the nfacct counters
    		if proxier.nfacct != nil {
    			for name := range proxier.nfAcctCounters {
    				if err := proxier.nfacct.Ensure(name); err != nil {
    					proxier.nfAcctCounters[name] = false
    					proxier.logger.Error(err, "Failed to create nfacct counter; the corresponding metric will not be updated", "counter", name)
    				} else {
    					proxier.nfAcctCounters[name] = true
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. src/go/printer/nodes.go

    	// style so that we always get the same decision; print
    	// in RawFormat
    	cfg := Config{Mode: RawFormat}
    	var counter sizeCounter
    	if err := cfg.fprint(&counter, p.fset, n, p.nodeSizes); err != nil {
    		return
    	}
    	if counter.size <= maxSize && !counter.hasNewline {
    		// n fits in a single line
    		size = counter.size
    		p.nodeSizes[n] = size
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // CHECK:             %[[COUNTER:.*]], %{{.*}} = tf_executor.island wraps "tf.Add"(%[[ARG_0]], %[[ONE]]) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    // CHECK:             tf_executor.fetch %[[COUNTER]], %[[ARG_1]] : tensor<i32>, tensor<f32>
    // CHECK:           }
    // CHECK:           return %[[GRAPH]]#0, %[[GRAPH]]#1 : tensor<i32>, tensor<f32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Find all of the left over Ops after the sc_forward, sc_backward and
      // core_tpu ops have been identified. What's left are just the ops necessary
      // for updating loop counters etc.
      llvm::SetVector<int64_t> non_tpu_args;
      for (Operation& op : loop_body_func.getOps()) {
        if (merged_set.contains(&op) || llvm::isa<func::ReturnOp>(op) ||
            op.hasAttr(kEmbeddingPipelining))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		//
    		counter := 0
    		return wait.PollUntilContextCancel(context.TODO(), 100*time.Millisecond, true, func(_ context.Context) (done bool, err error) {
    			counter += 1
    			err = applyPatchOperation{
    				gvr:  myCRDV1Beta1,
    				name: "sentinel-resource",
    				patch: map[string]interface{}{
    					sentinelName: fmt.Sprintf("invalid-%d", counter),
    				}}.Do(ctx)
    
    			if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    // and by the end of the GC mark phase, the heap tends to be densely packed. Releasing
    // memory in these densely packed chunks while they're being packed is counter-productive,
    // and worse, it breaks up huge pages on systems that support them. The scavenger (invoked
    // during memory allocation) further ensures that chunks it identifies as "dense" are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    //   - pc is the PC in the running function.
    //   - sp is the stack pointer at that program counter.
    //   - For the innermost frame on LR machines, lr is the program counter that called fn.
    //
    // On return, u.frame contains:
    //   - fp is the stack pointer of the caller.
    //   - lr is the program counter that called fn.
    //   - varp, argp, and continpc are populated for the current frame.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation.go

    		}
    	}
    	if opts.RejectDecreasingSucceededCounter {
    		if job.Status.Succeeded < oldJob.Status.Succeeded {
    			allErrs = append(allErrs, field.Invalid(statusFld.Child("succeeded"), job.Status.Succeeded, "cannot decrease the succeeded counter"))
    		}
    	}
    	if opts.RejectMutatingCompletionTime {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top