Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for ImmediateExecutionTensorHandle (0.26 seconds)

  1. tensorflow/c/eager/immediate_execution_tensor_handle.h

      }
    
     protected:
      explicit ImmediateExecutionTensorHandle(AbstractTensorHandleKind kind)
          : AbstractTensorHandle(kind) {}
      ~ImmediateExecutionTensorHandle() override {}
    };
    
    namespace internal {
    struct ImmediateExecutionTensorHandleDeleter {
      void operator()(ImmediateExecutionTensorHandle* p) const {
        if (p != nullptr) {
          p->Unref();
        }
      }
    };
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 4.3K bytes
    - Click Count (0)
  2. tensorflow/c/eager/immediate_execution_tensor_handle.cc

                          device_name, "\")");
    }
    
    absl::Status ImmediateExecutionTensorHandle::SummarizeValue(
        std::string& summary) const {
      absl::Status status;
      AbstractTensorPtr resolved(
          // TODO(allenl): Resolve should be const, and the caches that get updated
          // marked mutable.
          const_cast<ImmediateExecutionTensorHandle*>(this)->Resolve(&status));
      if (!status.ok()) {
        return status;
      }
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:24:07 GMT 2024
    - 2.1K bytes
    - Click Count (0)
  3. tensorflow/c/eager/immediate_execution_operation.h

     public:
      virtual void Clear() = 0;
    
      // Returns the inputs of this op.
      virtual absl::Span<ImmediateExecutionTensorHandle* const> GetInputs()
          const = 0;
      virtual absl::Status SetInput(size_t index,
                                    ImmediateExecutionTensorHandle* input) = 0;
    
      virtual ImmediateExecutionContext* GetContext() const = 0;
    
      // Following two methods are used to support custom device.
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 3.6K bytes
    - Click Count (0)
  4. tensorflow/c/eager/c_api_unified_experimental_eager.cc

    using tensorflow::AbstractContext;
    using tensorflow::AbstractTensorHandle;
    using tensorflow::dyn_cast;
    using tensorflow::ImmediateExecutionContext;
    using tensorflow::ImmediateExecutionTensorHandle;
    using tensorflow::string;
    using tensorflow::unwrap;
    using tensorflow::wrap;
    using tensorflow::strings::StrCat;
    
    TF_ExecutionContext* TF_NewEagerExecutionContext(TFE_ContextOptions* options,
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Oct 09 05:56:18 GMT 2025
    - 3.2K bytes
    - Click Count (0)
Back to Top