Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for floatkey (0.18 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      // Check quantization parameters for input and output.
      EXPECT_THAT(pack_input0->quantization->scale[0],
                  FloatEq(pack_input1->quantization->scale[0]));
      EXPECT_THAT(pack_input1->quantization->scale[0],
                  FloatEq(pack_input2->quantization->scale[0]));
      EXPECT_THAT(pack_input0->quantization->zero_point[0],
                  Eq(pack_input1->quantization->zero_point[0]));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    // type).
    type slotCanonicalizer struct {
    	slmap  map[slotKey]SlKeyIdx
    	slkeys []LocalSlot
    }
    
    func newSlotCanonicalizer() *slotCanonicalizer {
    	return &slotCanonicalizer{
    		slmap:  make(map[slotKey]SlKeyIdx),
    		slkeys: []LocalSlot{LocalSlot{N: nil}},
    	}
    }
    
    type SlKeyIdx uint32
    
    const noSlot = SlKeyIdx(0)
    
    // slotKey is a type-insensitive encapsulation of a LocalSlot; it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Synchronized.java

            return nullableSynchronizedEntry(delegate().floorEntry(key), mutex);
          }
        }
    
        @Override
        @CheckForNull
        public K floorKey(K key) {
          synchronized (mutex) {
            return delegate().floorKey(key);
          }
        }
    
        @Override
        public NavigableMap<K, V> headMap(K toKey, boolean inclusive) {
          synchronized (mutex) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Synchronized.java

            return nullableSynchronizedEntry(delegate().floorEntry(key), mutex);
          }
        }
    
        @Override
        @CheckForNull
        public K floorKey(K key) {
          synchronized (mutex) {
            return delegate().floorKey(key);
          }
        }
    
        @Override
        public NavigableMap<K, V> headMap(K toKey, boolean inclusive) {
          synchronized (mutex) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/MapsTest.java

        assertEquals(mapEntry("one", 3), map.ceilingEntry("one"));
        assertEquals("one", map.lowerKey("three"));
        assertEquals("one", map.lowerKey("r"));
        assertEquals("one", map.floorKey("r"));
        assertEquals("three", map.floorKey("three"));
    
        assertThat(map.descendingMap().entrySet())
            .containsExactly(mapEntry("two", 3), mapEntry("three", 5), mapEntry("one", 3))
            .inOrder();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      @Override
      @CheckForNull
      public Entry<K, V> floorEntry(K key) {
        return headMap(key, true).lastEntry();
      }
    
      @Override
      @CheckForNull
      public K floorKey(K key) {
        return keyOrNull(floorEntry(key));
      }
    
      @Override
      @CheckForNull
      public Entry<K, V> ceilingEntry(K key) {
        return tailMap(key, true).firstEntry();
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      @Override
      @CheckForNull
      public Entry<K, V> floorEntry(K key) {
        return headMap(key, true).lastEntry();
      }
    
      @Override
      @CheckForNull
      public K floorKey(K key) {
        return keyOrNull(floorEntry(key));
      }
    
      @Override
      @CheckForNull
      public Entry<K, V> ceilingEntry(K key) {
        return tailMap(key, true).firstEntry();
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. src/fmt/fmt_test.go

    	{"% d", []byte{1, 11, 111}, "[ 1  11  111]"},
    	{"%+d", [3]byte{1, 11, 111}, "[+1 +11 +111]"},
    	{"%# -6d", []byte{1, 11, 111}, "[ 1      11     111  ]"},
    	{"%#+-6d", [3]byte{1, 11, 111}, "[+1     +11    +111  ]"},
    
    	// floates with %v
    	{"%v", 1.2345678, "1.2345678"},
    	{"%v", float32(1.2345678), "1.2345678"},
    
    	// complexes with %v
    	{"%v", 1 + 2i, "(1+2i)"},
    	{"%v", complex64(1 + 2i), "(1+2i)"},
    
    	// structs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0);
    
    // Asserts that val1 is less than, or almost equal to, val2.  Fails
    // otherwise.  In particular, it fails if either val1 or val2 is NaN.
    GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,
                                       float val1, float val2);
    GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0);
    
    // Asserts that val1 is less than, or almost equal to, val2.  Fails
    // otherwise.  In particular, it fails if either val1 or val2 is NaN.
    GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,
                                       float val1, float val2);
    GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top