Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for negligible (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        new_outputs = root.signatures['serving_default'](
            input_tensor=ops.convert_to_tensor(input_data)
        )
    
        # Indirectly tests that the model is not quantized by asserting that there
        # are negligible numeric difference.
        self.assertAllClose(new_outputs, expected_outputs, rtol=0.000001)
    
        # Due to other meta data, the compression is not exactly 1/4.
        self.assertLess(
            testing.get_size_ratio(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

        This has enabled substantial simplifications and optimizations in the OkHttp
        core for both frontends.
    
        For most HTTP requests the consequences of this change will be negligible.
        If your application uses `HttpURLConnection.connect()`,
        `setFixedLengthStreamingMode()`, or `setChunkedStreamingMode()`, OkHttp will
        now use a async dispatcher thread to establish the HTTP connection.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/prove.go

    				}
    				// One might be tempted to create a v >= ft.zero relation for
    				// all OpPhi's composed of only provably-positive values
    				// but that bloats up the facts table for a very negligible gain.
    				// In Go itself, very few functions get improved (< 5) at a cost of 5-7% total increase
    				// of compile time.
    			}
    		}
    	}
    
    	// current node state
    	type walkState int
    	const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    	// are empty. This should be ensured by gcMarkDone before we
    	// enter mark termination.
    	//
    	// TODO: We could clear out buffers just before mark if this
    	// has a non-negligible impact on STW time.
    	for _, p := range allp {
    		// The write barrier may have buffered pointers since
    		// the gcMarkDone barrier. However, since the barrier
    		// ensured all reachable objects were marked, all of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	// We could allocate a large buffer here to reduce the chance that the
    	// syscall needs to be called twice; however, this is unnecessary as
    	// the performance loss is negligible.
    	var buffer []byte
    	for {
    		// Try to fill the buffer with data
    		length, err := KeyctlBuffer(cmd, id, buffer, 0)
    		if err != nil {
    			return "", err
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/CacheBuilder.java

      long getExpireAfterAccessNanos() {
        return (expireAfterAccessNanos == UNSET_INT)
            ? DEFAULT_EXPIRATION_NANOS
            : expireAfterAccessNanos;
      }
    
      /**
       * Specifies that active entries are eligible for automatic refresh once a fixed duration has
       * elapsed after the entry's creation, or the most recent replacement of its value. The semantics
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    		Code:           "XMinioInvalidIAMCredentials",
    		Description:    "The administrator key is not eligible for this operation",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrAccountNotEligible: {
    		Code:           "XMinioInvalidIAMCredentials",
    		Description:    "The account key is not eligible for this operation",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrAdminServiceAccountNotFound: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    // and worse, it breaks up huge pages on systems that support them. The scavenger (invoked
    // during memory allocation) further ensures that chunks it identifies as "dense" are
    // immediately eligible for being backed by huge pages. Note that for the most part these
    // density heuristics are best-effort heuristics. It's totally possible (but unlikely)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            }
    
            public MappedProperty map(String propertyName, Callable<?> value) {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public void ineligible(String propertyName) {
    
            }
    
            public <T> T getConventionValue(T actualValue, String propertyName) {
                if (actualValue instanceof String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	if err != nil {
    		return err
    	}
    	span.AddEvent("Listed items from cache", attribute.Int("count", len(objs)))
    	// store pointer of eligible objects,
    	// Why not directly put object in the items of listObj?
    	//   the elements in ListObject are Struct type, making slice will bring excessive memory consumption.
    	//   so we try to delay this action as much as possible
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top