Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 412 for Computation (0.27 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.h

    // xla_cluster_name: XLA cluster name for this XLA computation. We need it
    //   because XLA cluster name might be different from `func_name`.
    // func_name_attrs: they will be used to instantiate the XLA computation func.
    // new_func_name: new function name for rewritten XLA computation func.
    // host_compute_core: mapping from outside compilation cluster name to XLA
    //   device assignment.
    // fld: FunctionLibraryDefinition object.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/benchmark_main.template

      Eigen::ThreadPool pool(1 /* num_threads */);
      Eigen::ThreadPoolDevice device(&pool, pool.NumThreads());
    
      CPP_CLASS computation;
      computation.set_thread_pool(&device);
    
      benchmark::Options options;
      benchmark::Stats stats;
      benchmark::Benchmark(options, [&] { computation.Run(); }, &stats);
      benchmark::DumpStatsToStdout(stats);
      return 0;
    }
    
    }  // namespace tfcompile
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:05:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/FutureCallback.java

     * asynchronously.
     *
     * <p>To attach to a {@link ListenableFuture} use {@link Futures#addCallback}.
     *
     * @author Anthony Zana
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface FutureCallback<V extends @Nullable Object> {
      /** Invoked with the result of the {@code Future} computation when it is successful. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 05 22:27:35 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/FutureCallback.java

     * asynchronously.
     *
     * <p>To attach to a {@link ListenableFuture} use {@link Futures#addCallback}.
     *
     * @author Anthony Zana
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public interface FutureCallback<V extends @Nullable Object> {
      /** Invoked with the result of the {@code Future} computation when it is successful. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 05 22:27:35 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        replicated TPU computation. The number of times a TPU computation is
        replicated is defined in the `tf.TPUReplicateMetadata` op (`num_replicas`
        attribute) and operand and result sizes of `tf.TPUReplicatedInput` and
        `tf.TPUReplicatedOutput` respectively must match, excluding packed tensors.
        It is also assumed ops of the same TPU computation do not have ops outside
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/ops/xla_ops_grad.py

    
    @ops.RegisterGradient("XlaClusterOutput")
    def _XlaClusterOutputGrad(_, grad):
      del grad  # unused
      raise RuntimeError("Gradient computation of graph in xla.compile() is "
                         "prohibited because it can cause performance degradation."
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_to_hlo.cc

      LOG_FIRST_N(INFO, 1) << "Compiling MLIR computation to XLA HLO using the "
                              "Combined MLIR Tf2Xla Bridge.";
    
      absl::StatusOr<std::string> mlir_compilation =
          internal::CompileFromMlirToXlaHlo(
              /*lower_to_xla_hlo=*/false, computation, metadata, device_type,
              shape_determination_fns, use_tuple_args, compilation_result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaProjectInternal.java

         * the convention computation that is not compatible with Isolated Projects.
         */
        @Nullable
        public IdeaLanguageLevel getRawLanguageLevel() {
            return languageLevel;
        }
    
        /**
         * Returns the user-defined value for the {@link #getTargetBytecodeVersion()} without triggering
         * the convention computation that is not compatible with Isolated Projects.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 13:32:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

       * The listener will run when the {@code Future}'s computation is {@linkplain Future#isDone()
       * complete} or, if the computation is already complete, immediately.
       *
       * <p>There is no guaranteed ordering of execution of listeners, but any listener added through
       * this method is guaranteed to be called once the computation is complete.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaModuleInternal.java

         * the convention computation that is not compatible with Isolated Projects.
         */
        public @Nullable IdeaLanguageLevel getRawLanguageLevel() {
            return languageLevel;
        }
    
        /**
         * Returns the user-defined value for the {@link #getTargetBytecodeVersion()} without triggering
         * the convention computation that is not compatible with Isolated Projects.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 12:33:41 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top