Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 137 for computations (0.38 sec)

  1. pilot/pkg/networking/core/configgen.go

    type ConfigGenerator interface {
    	// BuildListeners returns the list of inbound/outbound listeners for the given proxy. This is the LDS output
    	// Internally, the computation will be optimized to ensure that listeners are computed only
    	// once and shared across multiple invocations of this function.
    	BuildListeners(node *model.Proxy, push *model.PushContext) []*listener.Listener
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/SupportedOptionsCollectingProcessor.java

    import java.util.Set;
    
    /**
     * Collects all registered processors' supported options.
     *
     * <p>This is a workaround for https://bugs.openjdk.java.net/browse/JDK-8162455, which
     * will be triggered a lot more during incremental compilations, and can fail builds
     * when combined with {@code -Werror}.
     *
     * <p>This processor needs to be added last to make sure that all other processors
     * have been {@linkplain Processor#init(ProcessingEnvironment) initialized} when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_profiler.cc

      }
    }
    
    // The number of times a lazy compilation must be requested for a specific
    // signature before  we attempt to compile it.
    constexpr int64_t kDefaultCompilationThreshold = 2;
    
    // Maximum number of ongoing compilations.
    constexpr int64_t kMaxNumOngoingCompilations = kNumAsyncDeviceCompilerThreads;
    
    }  // namespace
    
    DeviceCompilationProfiler::~DeviceCompilationProfiler() {
      mutex_lock lock(mu_);
      cluster_compile_stats_.clear();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Deferrable.java

                public T completeAndGet() {
                    return successfulResult;
                }
            };
        }
    
        /**
         * An invocation with no pre-computed result, requiring to do the expensive computation on {@link #completeAndGet()}.
         */
        static <T> Deferrable<T> deferred(Supplier<T> result) {
            return new Deferrable<T>() {
                private volatile T value;
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

    // TFL op interface for sparse operands.
    
    def TFL_SparseOp : OpInterface<"SparseOpInterface"> {
      let description = [{
        Interface for ops that support sparse computation.
      }];
    
      let methods = [
        InterfaceMethod<
          [{Returns the indices of sparse operands.}],
          "std::vector<int>", "GetSparseOperands", (ins)
        >,
        InterfaceMethod<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/test_matchers_test.cc

    }
    
    tensorflow::XlaCompilationResult CreateXlaComputationResult(
        const char* hlo_name) {
      auto result = tensorflow::XlaCompilationResult();
      xla::HloModuleProto hlo;
      hlo.set_name(hlo_name);
      result.computation = std::make_shared<xla::XlaComputation>(hlo);
      return result;
    }
    
    TEST(TestUtil, ComputationContainsOk) {
      constexpr char arbitrary_hlo[] = "arbitrary_hlo";
      auto result = CreateXlaComputationResult(arbitrary_hlo);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LoadingCache.java

       *     ExecutionException} is thrown <a
       *     href="https://github.com/google/guava/wiki/CachesExplained#interruption">even if
       *     computation was interrupted by an {@code InterruptedException}</a>.)
       * @throws UncheckedExecutionException if an unchecked exception was thrown while loading the
       *     value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_cc_cache_issue64423.txt

    # out if the fake clang doesn't work.
    env CGO_ENABLED=1
    
    # The bug in https://go.dev/issue/64423 resulted in cache keys that
    # didn't contain any information about the C compiler.
    # Since the bug was in cache key computation, isolate the cache:
    # if we change the way caching works, we want the test to fail
    # instead of accidentally reusing the cached information from a
    # previous test run.
    env GOCACHE=$WORK${/}.cache
    mkdir $GOCACHE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:13:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_identity_pruning.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir {
    namespace TFTPU {
    
    namespace {
    
    // This pass removes Identity/IdentityN ops from the TPU computation and
    // reachable functions.
    // TODO(lyandy): Remove this pass once resource op lifting is migrated to use
    // resource alias analysis and support region based control flow. Removing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Function.java

       * expected</i>, but not absolutely required, to have the following properties:
       *
       * <ul>
       *   <li>Its execution does not cause any observable side effects.
       *   <li>The computation is <i>consistent with equals</i>; that is, {@link Objects#equal
       *       Objects.equal}{@code (a, b)} implies that {@code Objects.equal(function.apply(a),
       *       function.apply(b))}.
       * </ul>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top