Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 105 for maddld (0.09 sec)

  1. tensorflow/compiler/mlir/lite/utils/low_bit_utils.cc

        unpacked_buffer.push_back(static_cast<int8_t>(value << 4) >> 4);
        unpacked_buffer.push_back(static_cast<int8_t>(value) >> 4);
      }
    
      // The last element might be a padded zero, so check and pop if needed
      if (unpacked_buffer.size() > num_elements) {
        assert(unpacked_buffer.size() == num_elements + 1);
        unpacked_buffer.pop_back();
      }
    
      return unpacked_buffer;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 04 19:11:58 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/crypto/hmac/hmac.go

    	}
    */
    package hmac
    
    import (
    	"crypto/internal/boring"
    	"crypto/subtle"
    	"hash"
    )
    
    // FIPS 198-1:
    // https://csrc.nist.gov/publications/fips/fips198-1/FIPS-198-1_final.pdf
    
    // key is zero padded to the block size of the hash function
    // ipad = 0x36 byte repeated for key length
    // opad = 0x5c byte repeated for key length
    // hmac = H([key ^ opad] H([key ^ ipad] text))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/anames.go

    	"FSGNJNS",
    	"FSGNJXS",
    	"FMVXS",
    	"FMVSX",
    	"FMVXW",
    	"FMVWX",
    	"FEQS",
    	"FLTS",
    	"FLES",
    	"FCLASSS",
    	"FLD",
    	"FSD",
    	"FADDD",
    	"FSUBD",
    	"FMULD",
    	"FDIVD",
    	"FMIND",
    	"FMAXD",
    	"FSQRTD",
    	"FMADDD",
    	"FMSUBD",
    	"FNMADDD",
    	"FNMSUBD",
    	"FCVTWD",
    	"FCVTLD",
    	"FCVTDW",
    	"FCVTDL",
    	"FCVTWUD",
    	"FCVTLUD",
    	"FCVTDWU",
    	"FCVTDLU",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. test/finprofiled.go

    	"unsafe"
    )
    
    func main() {
    	runtime.MemProfileRate = 1
    	// Allocate 1M 4-byte objects and set a finalizer for every third object.
    	// Assuming that tiny block size is 16, some objects get finalizers setup
    	// only for middle bytes. The finalizer resurrects that object.
    	// As the result, all allocated memory must stay alive.
    	const (
    		N             = 1 << 20
    		tinyBlockSize = 16 // runtime._TinySize
    	)
    	hold := make([]*int32, 0, N)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 05:48:00 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. misc/go_android_exec/exitcode_test.go

    	"testing"
    )
    
    func TestExitCodeFilter(t *testing.T) {
    	// Write text to the filter one character at a time.
    	var out strings.Builder
    	f, exitStr := newExitCodeFilter(&out)
    	// Embed a "fake" exit code in the middle to check that we don't get caught on it.
    	pre := "abc" + exitStr + "123def"
    	text := pre + exitStr + `1`
    	for i := 0; i < len(text); i++ {
    		_, err := f.Write([]byte{text[i]})
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 14:54:58 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/UrlArtifactRepository.java

         * <p>
         * Gradle intentionally does not offer a global system/gradle property that allows a universal disable of this check.
         * <p>
         * <b>Allowing communication over insecure protocols allows for a man-in-the-middle to impersonate the intended server,
         * and gives an attacker the ability to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 24 17:16:12 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java

        for (V element : elements) {
          assertFalse("Should not contain value " + element, getMap().containsValue(element));
        }
      }
    
      /** @return an array of the proper size with {@code null} as the key of the middle element. */
      protected Entry<K, V>[] createArrayWithNullKey() {
        Entry<K, V>[] array = createSamplesArray();
        int nullKeyLocation = getNullLocation();
        Entry<K, V> oldEntry = array[nullKeyLocation];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batching_fallback.mlir

      %a = tfrt_fallback_async.const_dense_tensor dense<[[4, 4], [4, 4]]> : tensor<2x2xi32>
      %b = tfrt_fallback_async.const_dense_tensor dense<[[1, 1], [1, 1]]> : tensor<2x2xi32>
    
      // One batch_size=2 batches get padded and processed after timeout.
      %result = tfrt_fallback_async.batch_function device("/device:CPU:0") @matmul_cpu (%a, %b) {
          num_batch_threads = 1,
          max_batch_size = 4,
          allowed_batch_sizes = [4],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/nms_utils.h

    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_attributes.h"
    
    namespace mlir {
    namespace TFL {
    
    // Abstracts the conversion of the padded NMS composite function.
    class ConvertNMSPaddedFunc {
     public:
      explicit ConvertNMSPaddedFunc(func::FuncOp func) : func_(func) {}
    
      void RewriteFunc();
    
      LogicalResult VerifySignature();
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. src/net/textproto/writer.go

    }
    
    const (
    	wstateBegin     = iota // initial state; must be zero
    	wstateBeginLine        // beginning of line
    	wstateCR               // wrote \r (possibly at end of line)
    	wstateData             // writing data in middle of line
    )
    
    func (d *dotWriter) Write(b []byte) (n int, err error) {
    	bw := d.w.W
    	for n < len(b) {
    		c := b[n]
    		switch d.state {
    		case wstateBegin, wstateBeginLine:
    			d.state = wstateData
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top