Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 301 for span1 (0.15 sec)

  1. tensorflow/c/experimental/gradients/tape/tape_operation.h

      const string& DeviceName() const override;
      Status SetDeviceName(const char* name) override;
      Status AddInput(AbstractTensorHandle* input) override;
      Status AddInputList(absl::Span<AbstractTensorHandle* const> inputs) override;
      Status Execute(absl::Span<AbstractTensorHandle*> retvals,
                     int* num_retvals) override;
      Status SetAttrString(const char* attr_name, const char* data,
                           size_t length) override;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 23:12:39 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tf_to_hlo_compiler.h

      // XlaCompilationResult pointed to by `result`.
      virtual Status Compile(const XlaCompiler::CompileOptions& options,
                             const NameAttrList& function,
                             absl::Span<const XlaArgument> args,
                             XlaCompilationResult* result) = 0;
    
      // Compiles a Tensorflow single op to an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. tensorflow/c/eager/gradient_checker.h

    ==============================================================================*/
    #ifndef TENSORFLOW_C_EAGER_GRADIENT_CHECKER_H_
    #define TENSORFLOW_C_EAGER_GRADIENT_CHECKER_H_
    
    #include <memory>
    
    #include "absl/types/span.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    #include "tensorflow/c/eager/unified_api_testutil.h"
    
    namespace tensorflow {
    namespace gradients {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 11 02:34:32 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/ec69d0b8-9171-4969-ac3e-82dea16f87b0/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">Incremental Builds and Build Caching with Gradle&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    Gradle uses two main features to reduce build time: *incremental builds* and *build caching*.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/ec69d0b8-9171-4969-ac3e-82dea16f87b0/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">Incremental Builds and Build Caching with Gradle&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    Learn the basics of Gradle's incremental builds.
    
    ****
    **In this section you will:**
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-workers/src/main/java/org/gradle/internal/operations/logging/StyledTextBuildOperationProgressDetails.java

     *
     * See LoggingBuildOperationProgressBroadcaster.
     *
     * @since 7.4
     */
    public interface StyledTextBuildOperationProgressDetails {
    
        List<? extends Span> getSpans();
    
        String getCategory();
    
        LogEventLevel getLevel();
    
        interface Span {
    
            /**
             * Always a value name of {@code org.gradle.internal.logging.text.StyledTextOutput.Style}.
             */
            String getStyleName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/io_ops.cc

                     AbstractTensorHandle* const tensor_names,
                     AbstractTensorHandle* const shape_and_slices,
                     absl::Span<AbstractTensorHandle*> tensors,
                     absl::Span<DataType> dtypes, const char* name,
                     const char* raw_device_name) {
      AbstractOperationPtr op_ptr(ctx->CreateOperation());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 17:54:34 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.cc

                                         absl::Span<const XlaArgument> args,
                                         XlaCompilationResult* result) {
      return ADD_SOURCE_LOCATION(
          xla_compiler_.CompileFunction(options, function, args, result));
    }
    
    Status TfGraphToHloCompiler::CompileSingleOp(
        const XlaCompiler::CompileOptions& options, const OpKernelContext* ctx,
        absl::Span<const XlaArgument> args, XlaCompilationResult* result) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 00:37:01 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_util_test.cc

    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    namespace {
    
    Status PickDeviceHelper(bool allow_mixing_unknown_and_cpu,
                            absl::Span<const absl::string_view> device_names,
                            string* result) {
      jit::DeviceInfoCache cache;
      jit::DeviceSet device_set;
      for (absl::string_view name : device_names) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.h

      // XlaCompilationResult pointed to by `result` by calling
      // XlaCompiler::CompileFunction.
      Status Compile(const XlaCompiler::CompileOptions& options,
                     const NameAttrList& function,
                     absl::Span<const XlaArgument> args,
                     XlaCompilationResult* result) override;
    
      // Compiles a Tensorflow single op into an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result` by calling
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top