Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 301 for span1 (0.22 sec)

  1. pkg/tracing/tracing.go

    	}
    	globalCtx, globalSpan := Start(ctx, rootSpan)
    	return globalCtx, func() {
    		globalSpan.End()
    		shutdown()
    	}, nil
    }
    
    func Start(ctx context.Context, span string) (context.Context, traceapi.Span) {
    	return tracer().Start(ctx, span)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. tensorflow/c/eager/abstract_operation.h

      virtual Status SetDeviceName(const char* name) = 0;
    
      virtual Status AddInput(AbstractTensorHandle* input) = 0;
      virtual Status AddInputList(
          absl::Span<AbstractTensorHandle* const> inputs) = 0;
      virtual Status Execute(absl::Span<AbstractTensorHandle*> retvals,
                             int* num_retvals) = 0;
    
      virtual Status SetAttrString(const char* attr_name, const char* data,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 14 16:20:41 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/getting_started_eng.adoc

    <div class="badge-wrapper">
        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/012de84f-fcd3-45d4-9c4c-284382eb3f3f/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
            <span class="badge-text">Introduction to Gradle for Developers&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    Everyone has to start somewhere, and if you're new to Gradle, this is where to begin.
    
    To get started using Gradle:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. releasenotes/notes/48471.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 48336
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:13 UTC 2023
    - 162 bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/revived_types/flat_tensor_function.cc

    ==============================================================================*/
    
    #include "tensorflow/c/experimental/saved_model/core/revived_types/flat_tensor_function.h"
    
    #include <memory>
    #include <string>
    
    #include "absl/types/span.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    #include "tensorflow/c/eager/immediate_execution_operation.h"
    #include "tensorflow/c/eager/immediate_execution_tensor_handle.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/gradients/not_differentiable.cc

    #include "tensorflow/c/experimental/gradients/not_differentiable.h"
    
    namespace tensorflow {
    namespace gradients {
    Status NotDifferentiableGradientFunction::Compute(
        AbstractContext* ctx, absl::Span<AbstractTensorHandle* const> grad_outputs,
        absl::Span<AbstractTensorHandle*> grad_inputs) {
      for (int i = 0; i < grad_inputs.size(); i++) {
        grad_inputs[i] = nullptr;
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/gradients/not_differentiable.h

    class NotDifferentiableGradientFunction : public GradientFunction {
      Status Compute(AbstractContext* ctx,
                     absl::Span<AbstractTensorHandle* const> grad_outputs,
                     absl::Span<AbstractTensorHandle*> grad_inputs) override;
    };
    // Shorthand for registry->Register(op, new NotDifferentiableGradientFunction)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 03 22:28:48 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig.jsp

    																	<span class="badge bg-primary"><la:message
                                                                                key="labels.enabled"/></span>
                                                        </c:if> <c:if test="${data.available=='false'}">
    																	<span class="badge bg-gray"><la:message
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/views/attr_view.cc

      if (attr_.full_type() == "list(string)") {
        return "absl::Span<string const>";
      }
    
      // Normal path: translate base type to C++ ...
      string c_base_type = attr_.base_type();
      if (attr_.base_type() == "type") {
        c_base_type = "DataType";
      } else if (attr_.base_type() == "shape") {
        c_base_type = "const PartialTensorShape";
      }
    
      // ... and wrap in a Span<> if it's a list.
      if (attr_.is_list()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/gradients/custom_gradient_test.cc

      }
    };
    
    class PassThroughGradientFunction : public GradientFunction {
     public:
      Status Compute(AbstractContext* ctx,
                     absl::Span<AbstractTensorHandle* const> grad_outputs,
                     absl::Span<AbstractTensorHandle*> grad_inputs) override {
        CHECK_EQ(grad_outputs.size(), 1);
        CHECK_EQ(grad_inputs.size(), 1);
        grad_inputs[0] = grad_outputs[0];
        if (grad_inputs[0]) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top