Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 330 for computations (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        replicated TPU computation. The number of times a TPU computation is
        replicated is defined in the `tf.TPUReplicateMetadata` op (`num_replicas`
        attribute) and operand and result sizes of `tf.TPUReplicatedInput` and
        `tf.TPUReplicatedOutput` respectively must match, excluding packed tensors.
        It is also assumed ops of the same TPU computation do not have ops outside
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            //   ApplyWeightUpdates_2 -> "iteration++"
            //   ApplyWeightUpdates_0 -> Computation_A
            //   ApplyWeightUpdates_1 -> Computation_B
            //   ApplyWeightUpdates_2 -> Computation_C
            //   Computation_A -> NoOp
            //   Computation_B -> NoOp
            //   Computation_C -> NoOp
            //   "iteration++" -> NoOp
            // }
            //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top