Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Operator (0.19 sec)

  1. tensorflow/c/eager/tape.h

    void ForwardAccumulator<Gradient, BackwardFunction, TapeTensor>::Watch(
        int64_t tensor_id, Gradient* tangent) {
      typename std::unordered_map<int64_t, Gradient*>::iterator existing =
          accumulated_gradients_.find(tensor_id);
      vspace_.MarkAsResult(tangent);
      if (existing == accumulated_gradients_.end()) {
        accumulated_gradients_.emplace(tensor_id, tangent);
      } else {
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
  2. tensorflow/c/eager/immediate_execution_context.h

          : AbstractContext(kind) {}
      ~ImmediateExecutionContext() override {}
    };
    
    namespace internal {
    struct ImmediateExecutionContextDeleter {
      void operator()(ImmediateExecutionContext* p) const {
        if (p != nullptr) {
          p->Release();
        }
      }
    };
    }  // namespace internal
    
    using ImmediateContextPtr =
        std::unique_ptr<ImmediateExecutionContext,
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 06 08:34:00 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h

      /// mu_.
      struct Block {
        /// The block data.
        std::vector<char> data;
        /// A list iterator pointing to the block's position in the LRU list.
        std::list<Key>::iterator lru_iterator;
        /// A list iterator pointing to the block's position in the LRA list.
        std::list<Key>::iterator lra_iterator;
        /// The timestamp (seconds since epoch) at which the block was cached.
        uint64_t timestamp;
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Aug 31 04:46:34 GMT 2020
    - 10.6K bytes
    - Viewed (0)
Back to top