Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 461 for spdelta (0.13 sec)

  1. src/crypto/elliptic/params.go

    	// See https://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-3.html#doubling-dbl-2001-b
    	delta := new(big.Int).Mul(z, z)
    	delta.Mod(delta, curve.P)
    	gamma := new(big.Int).Mul(y, y)
    	gamma.Mod(gamma, curve.P)
    	alpha := new(big.Int).Sub(x, delta)
    	if alpha.Sign() == -1 {
    		alpha.Add(alpha, curve.P)
    	}
    	alpha2 := new(big.Int).Add(x, delta)
    	alpha.Mul(alpha, alpha2)
    	alpha2.Set(alpha)
    	alpha.Lsh(alpha, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/time/sleep.go

    // sendTime does a non-blocking send of the current time on c.
    func sendTime(c any, seq uintptr, delta int64) {
    	// delta is how long ago the channel send was supposed to happen.
    	// The current time can be arbitrarily far into the future, because the runtime
    	// can delay a sendTime call until a goroutines tries to receive from
    	// the channel. Subtract delta to go back to the old time that we
    	// used to send.
    	select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.cc

    //   [counter_lo, counter_hi, key]
    //
    //   RngReadAndSkip increments the 128 bit counter value by 256 * delta and
    //   returns the original state value.
    //
    // For Threefry, the resource variable holds a tensor<2xi64> with the state:
    //   [counter, key]
    //
    //   RngReadAndSkip increments the 64 bit counter value by 256 * delta and
    //   returns a tensor<3xi64> value [counter, key, 0].
    class DecomposeRngReadAndSkipOp : public RewritePattern {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/cleanup.go

    	// Write time spent for cleanup and deploy to ARTIFACTS/trace.yaml and logs to allow analyzing test times
    	defer func() {
    		delta := time.Since(t0)
    		i.ctx.RecordTraceEvent("istio-cleanup", delta.Seconds())
    		scopes.Framework.Infof("=== SUCCEEDED: Cleanup Istio in %v [Suite=%s] ===", delta, i.ctx.Settings().TestID)
    	}()
    
    	if i.cfg.DumpKubernetesManifests {
    		i.installer.Dump(i.ctx)
    	}
    
    	if i.cfg.DeployIstio {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/iimport.go

    }
    
    func (r *importReader) posv0() {
    	delta := r.int64()
    	if delta != deltaNewFile {
    		r.prevLine += delta
    	} else if l := r.int64(); l == -1 {
    		r.prevLine += deltaNewFile
    	} else {
    		r.prevFile = r.string()
    		r.prevLine = l
    	}
    }
    
    func (r *importReader) posv1() {
    	delta := r.int64()
    	r.prevColumn += delta >> 1
    	if delta&1 != 0 {
    		delta = r.int64()
    		r.prevLine += delta >> 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. tools/go-compile-verbose

    START="$(date -u +%s.%N)"
    
    # Output a message, with a timestamp matching istio log format
    function log() {
      delta=$(date +%s.%N --date="$START seconds ago")
      echo -e "$(date -u '+%Y-%m-%dT%H:%M:%S.%NZ')\t${delta}\t$*" >&2 >> /tmp/golog
    }
    
    GROOT="$(go env GOROOT)"
    GPATH="$(go env GOPATH)"
    GMODCACHE="$(go env GOMODCACHE)"
    ROOT="$PWD"
    
    $@
    ls="$(basename $1)"
    shift
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/sort/example_test.go

    }
    
    func ExampleStrings() {
    	s := []string{"Go", "Bravo", "Gopher", "Alpha", "Grin", "Delta"}
    	sort.Strings(s)
    	fmt.Println(s)
    	// Output: [Alpha Bravo Delta Go Gopher Grin]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:29 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_loong64.s

    // uint32 xadd(uint32 volatile *ptr, int32 delta)
    // Atomically:
    //	*val += delta;
    //	return *val;
    TEXT ·Xadd(SB), NOSPLIT, $0-20
    	MOVV	ptr+0(FP), R4
    	MOVW	delta+8(FP), R5
    	DBAR
    	LL	(R4), R6
    	ADDU	R6, R5, R7
    	MOVV	R7, R6
    	SC	R7, (R4)
    	BEQ	R7, -4(PC)
    	MOVW	R6, ret+16(FP)
    	DBAR
    	RET
    
    TEXT ·Xadd64(SB), NOSPLIT, $0-24
    	MOVV	ptr+0(FP), R4
    	MOVV	delta+8(FP), R5
    	DBAR
    	LLV	(R4), R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf_test.cc

      TF_EXPECT_OK(
          RunSessionTf2xlaClusteringBridge(*mlir_module_,
                                           /*is_in_fallback_enabled_mode=*/false));
      EXPECT_EQ(compilation_status.Delta(mlir::TF::kMlirPh1BridgeCounterReplicated,
                                         mlir::TF::kMlirPh1BridgeCounterV1,
                                         mlir::TF::kMlirPh1BridgeCounterTpu,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:44:37 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor_test.cc

      EXPECT_EQ(compilation_status.Delta("success"), 1);
    }
    
    TEST_F(TensorflowDialectToExecutorTest, ErrorsWhenCannotConvert) {
      CellReader<int64_t> compilation_status(kCompilationStreamz);
    
      TF_ASSERT_OK(CreateMlirModule("invalid_executor.mlir"));
    
      EXPECT_FALSE(ExportFromTensorflowDialectToExecutor(*mlir_module_).ok());
    
      EXPECT_EQ(compilation_status.Delta("failed"), 1);
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:08:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top