Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,596 for iterations (0.14 sec)

  1. tensorflow/compiler/aot/benchmark.cc

          max_us = g.second;
        }
      }
      int max_digits = 1;
      while (max_us >= 10.0) {
        max_us /= 10.0;
        ++max_digits;
      }
      // Dump stats out.
      printf("Benchmark ran %zu iterations over %lld us\n", count_us,
             static_cast<long long>(stats.total_us));  // NOLINT
      for (const auto& g : groups) {
        printf("  %-*s %*.3f us\n", max_label_size, g.first.c_str(), max_digits + 4,
               g.second);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 19:45:29 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. src/internal/chacha8rand/chacha8_arm64.s

    	VMOV V4.B16, V20.B16
    	VMOV V5.B16, V21.B16
    	VMOV V6.B16, V22.B16
    	VMOV V7.B16, V23.B16
    	VMOV V8.B16, V24.B16
    	VMOV V9.B16, V25.B16
    	VMOV V10.B16, V26.B16
    	VMOV V11.B16, V27.B16
    
    	// 4 iterations. Each iteration is 8 quarter-rounds.
    	MOVD $4, R0
    loop:
    	QR(V0, V4, V8, V12)
    	QR(V1, V5, V9, V13)
    	QR(V2, V6, V10, V14)
    	QR(V3, V7, V11, V15)
    
    	QR(V0, V5, V10, V15)
    	QR(V1, V6, V11, V12)
    	QR(V2, V7, V8, V13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. test/maplinear.go

    package main
    
    import (
    	"fmt"
    	"math"
    	"time"
    )
    
    // checkLinear asserts that the running time of f(n) is in O(n).
    // tries is the initial number of iterations.
    func checkLinear(typ string, tries int, f func(n int)) {
    	// Depending on the machine and OS, this test might be too fast
    	// to measure with accurate enough granularity. On failure,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_test.go

    	ssc.enqueueStatefulSet(set)
    	fakeWorker(ssc)
    	selector, err := metav1.LabelSelectorAsSelector(set.Spec.Selector)
    	if err != nil {
    		return err
    	}
    	iterations := 0
    	for (maxIterations < 0 || iterations < maxIterations) && set.Status.ReadyReplicas < *set.Spec.Replicas {
    		iterations++
    		pods, err := om.podsLister.Pods(set.Namespace).List(selector)
    		if err != nil {
    			return err
    		}
    		ord := len(pods) - 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util_test.cc

      OpPassManager pass_manager;
      llvm::StringRef device_type = "XLA_CPU_JIT";
      absl::string_view kInlinePass =
          "inline{default-pipeline=canonicalize "
          "inlining-threshold=4294967295 max-iterations=4 }";
    
      CreateConvertMlirToXlaHloPipeline(pass_manager, device_type,
                                        /*enable_op_fallback=*/true,
                                        /*custom_legalization_passes*/ {});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 19:54:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. src/internal/chacha8rand/chacha8_amd64.s

    	// The initial temporary is X15, so zero its memory instead
    	// of X15 itself.
    	MOVL $0, DX
    	MOVQ DX, X13
    	MOVQ DX, X14
    	MOVOU X14, (15*16)(BX)
    
    	// 4 iterations. Each iteration is 8 quarter-rounds.
    	MOVL $4, DX
    loop:
    	QR(X0, X4, X8, X12, X15)
    	MOVOU X4, (4*16)(BX) // save X4
    	QR(X1, X5, X9, X13, X15)
    	MOVOU (15*16)(BX), X15 // reload X15; temp now X4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/while_gradients.cc

    string BackPropFrameName(const string& forward_frame_name) {
      return strings::StrCat(forward_frame_name, "_backprop");
    }
    
    // Creates a loop that counts the number of iterations performed by the
    // while loop associated with `while_ctx`. The returned output yields the
    // iteration count.
    Status AddForwardLoopCounter(WhileContext* while_ctx, const Scope& scope,
                                 Output* count) {
      // Create while loop:
      //   i = 0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. integration-tests/gradle/gradlew

            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
            shift                   # remove old arg
            set -- "$@" "$arg"      # push replacement arg
        done
    fi
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. src/internal/chacha8rand/chacha8_generic.go

    // the first register with the N copies of const1, the second
    // with N copies of const2, and so on, and then running the operations.
    //
    // Each iteration of ChaCha8Rand operates over 32 bytes of input and
    // produces 992 bytes of RNG output, plus 32 bytes of input for the next
    // iteration.
    //
    // The 32 bytes of input are used as a ChaCha8 key, with a zero nonce, to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_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 os.Remove(p)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top