Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 206 for computations (0.18 sec)

  1. src/cmd/vendor/golang.org/x/text/language/match.go

    			c = High
    		}
    	}
    
    	// We store the results of the computations of the tie-breaker rules along
    	// with the best match. There is no need to do the checks once we determine
    	// we have a winner, but we do still need to do the tie-breaker computations.
    	// We use "beaten" to keep track if we still need to do the checks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/flags.h

    #include "tensorflow/core/protobuf/config.pb.h"
    #include "tensorflow/core/util/command_line_flags.h"
    
    namespace tensorflow {
    
    struct XlaAutoJitFlag {
      // Control compilation of operators into XLA computations on CPU and GPU
      // devices.  0 = use ConfigProto setting; -1 = off; 1 = on for things very
      // likely to be improved; 2 = on for everything.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/crypto/ecdh/ecdh_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		aliceSecret, err := aliceKey.ECDH(bobKey.PublicKey())
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		if !bytes.Equal(bobSecret, aliceSecret) {
    			t.Error("two ECDH computations came out different")
    		}
    	})
    }
    
    type countingReader struct {
    	r io.Reader
    	n int
    }
    
    func (r *countingReader) Read(p []byte) (int, error) {
    	n, err := r.r.Read(p)
    	r.n += n
    	return n, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/flags.cc

    void AppendMarkForCompilationPassFlagsInternal(std::vector<Flag>* flag_list) {
      std::vector<Flag> new_flags = {
          Flag("tf_xla_auto_jit", SetterForXlaAutoJitFlag, "0",
               "Control compilation of operators into XLA computations on CPU and "
               "GPU devices.  0 = use ConfigProto setting; -1 = off; 1 = on for "
               "things very likely to be improved; 2 = on for everything; "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. src/math/rand/v2/rand.go

    	// 	x1:x0 := r.Uint64()
    	// 	0:hi, lo1:lo0 := bits.Mul64(x1:x0, 0:n)
    	// Writing out the multiplication in terms of bits.Mul32 allows
    	// using direct hardware instructions and avoiding
    	// the computations involving these zeros.
    	x := r.Uint64()
    	lo1a, lo0 := bits.Mul32(uint32(x), n)
    	hi, lo1b := bits.Mul32(uint32(x>>32), n)
    	lo1, c := bits.Add32(lo1a, lo1b, 0)
    	hi += c
    	if lo1 == 0 && lo0 < uint32(n) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/crypto/aes/gcm_amd64.s

    	PAND POLY, T0
    	PSRLL $31, T1
    	PSLLDQ $4, T1
    	PSLLL $1, B0
    	PXOR T0, B0
    	PXOR T1, B0
    	// Karatsuba pre-computations
    	MOVOU B0, (16*14)(dst)
    	PSHUFD $78, B0, B1
    	PXOR B0, B1
    	MOVOU B1, (16*15)(dst)
    
    	MOVOU B0, B2
    	MOVOU B1, B3
    	// Now prepare powers of H and pre-computations for them
    	MOVQ $7, AX
    
    initLoop:
    		MOVOU B2, T0
    		MOVOU B2, T1
    		MOVOU B3, T2
    		PCLMULQDQ $0x00, B0, T0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_tpu_device.cc

        // done().
        // The latter may be too conservative, but given the host is involved in
        // waiting for the transfer to complete anyway there is probably little
        // downside. If we were to add the ability for computations to wait directly
        // on transfers, then we might want to rethink this property.
        // Also ideally this host callback should be on source stream rather than
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    	fieldCache.RLock()
    	f := fieldCache.m[t]
    	fieldCache.RUnlock()
    	if f != nil {
    		return f
    	}
    
    	// Compute fields without lock.
    	// Might duplicate effort but won't hold other computations back.
    	f = typeFields(t)
    	if f == nil {
    		f = []field{}
    	}
    
    	fieldCache.Lock()
    	if fieldCache.m == nil {
    		fieldCache.m = map[reflect.Type][]field{}
    	}
    	fieldCache.m[t] = f
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  9. src/strconv/ftoa.go

    			ok = true
    		}
    	}
    	if !ok {
    		return bigFtoa(dst, prec, fmt, neg, mant, exp, flt)
    	}
    	return formatDigits(dst, shortest, neg, digs, prec, fmt)
    }
    
    // bigFtoa uses multiprecision computations to format a float.
    func bigFtoa(dst []byte, prec int, fmt byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {
    	d := new(decimal)
    	d.Assign(mant)
    	d.Shift(exp - int(flt.mantbits))
    	var digs decimalSlice
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/gradient_checker.cc

    // between theoretical and numerical jacobians:
    //   fabs(jac_t - jac_n) / max(fabs(jac_t), fabs(jac_n))
    
    // TODO(andydavis) Vectorize and/or multi-thread Jacobian computations if
    // performance becomes an issue.
    
    // BaseUnitsForType provides a list of typed unit values for each basis in the
    // requested type.
    // When T is real,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top