Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 661 for small7 (0.18 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_op_order.cc

        // If the op is the pass-through op with (3x) smaller output, the dequantize
        // op can be pushed down to the single result of this op.
        if (!llvm::dyn_cast<mlir::SameScalesOpInterface>(passthrough_op) ||
            passthrough_op->getNumResults() != 1) {
          return failure();
        }
        // Only push down the dequantize op when the output is smaller, so that it
        // can have smaller memory usage.
        auto input_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Ints.java

        //     imagine a line separating the first block from the second, we can proceed by exchanging
        //     the smaller of these blocks with the far end of the other one. That leaves us with a
        //     smaller version of the same problem.
        //     Say we are rotating abcdefgh by 5. We start with abcde|fgh. The smaller block is [fgh]:
        //     [abc]de|[fgh] -> [fgh]de|[abc]. Now [fgh] is in the right place, but we need to swap [de]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc

      auto id_filtered2 =
          StringAttr::get(&context, "dir/tensorflow/python/filtered_file_B.py");
      auto loc_filtered2 = FileLineColLoc::get(&context, id_filtered2, 0, 0);
    
      // Build a small stack for each error; the MLIR diagnostic filtering will
      // surface a location that would otherwise be filtered if it is the only
      // location associated with an error; therefore we need a combinatination of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

        // This may have performance implications, however the assumption is that class generators are global scoped objects that are created once and in very small numbers
        private static final Map<String, Throwable> SUFFIXES = new ConcurrentHashMap<>();
    
        /**
         * Registers the given suffix as in use for generated class names.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/unique/handle.go

    func addUniqueMap[T comparable](typ *abi.Type) *uniqueMap[T] {
    	// Create a map for T and try to register it. We could
    	// race with someone else, but that's fine; it's one
    	// small, stray allocation. The number of allocations
    	// this can create is bounded by a small constant.
    	m := &uniqueMap[T]{
    		HashTrieMap: concurrent.NewHashTrieMap[T, weak.Pointer[T]](),
    		cloneSeq:    makeCloneSeq(typ),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Ints.java

        //     imagine a line separating the first block from the second, we can proceed by exchanging
        //     the smaller of these blocks with the far end of the other one. That leaves us with a
        //     smaller version of the same problem.
        //     Say we are rotating abcdefgh by 5. We start with abcde|fgh. The smaller block is [fgh]:
        //     [abc]de|[fgh] -> [fgh]de|[abc]. Now [fgh] is in the right place, but we need to swap [de]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. src/runtime/runtime_test.go

    				// confusing the benchmarking framework for small b.N.
    				b.StopTimer()
    				stop()
    			})
    		}
    	}
    
    	// Measure the cost of counting goroutines
    	b.Run("small-nil", run(func() bool {
    		GoroutineProfile(nil)
    		return true
    	}))
    
    	// Measure the cost with a small set of goroutines
    	n := NumGoroutine()
    	p := make([]StackRecord, 2*n+2*GOMAXPROCS(0))
    	b.Run("small", run(func() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    	}{
    		// dual-stack:
    		{"dual IPv4 only, but mask too small. Default node-mask", "10.0.0.16/29", nil, false},
    		{"dual IPv4 only, but mask too small. Configured node-mask", "10.0.0.16/24", []kubeadmapi.Arg{{Name: "node-cidr-mask-size-ipv4", Value: "23"}}, false},
    		{"dual IPv6 only, but mask too small. Default node-mask", "2001:db8::1/112", nil, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  9. .bazelrc

    build:windows --cxxopt=/std:c++17
    build:windows --host_cxxopt=/std:c++17
    
    # On windows, we still link everything into a single DLL.
    build:windows --config=monolithic
    
    # On linux, we dynamically link small amount of kernels
    build:linux --config=dynamic_kernels
    
    # Make sure to include as little of windows.h as possible
    build:windows --copt=-DWIN32_LEAN_AND_MEAN
    build:windows --host_copt=-DWIN32_LEAN_AND_MEAN
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. tensorflow/cc/BUILD

            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core:testlib",
        ],
    )
    
    tf_cc_test(
        name = "framework_while_gradients_test",
        size = "small",
        srcs = ["framework/while_gradients_test.cc"],
        deps = [
            ":cc_ops",
            ":client_session",
            ":grad_op_registry",
            ":grad_ops",
            ":gradients",
            ":testutil",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top