Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for Operator (0.22 sec)

  1. tensorflow/c/eager/c_api_unified_experimental_internal.h

      // For LLVM style RTTI.
      static bool classof(const AbstractOperation* ptr) {
        return ptr->getKind() == kGraph || ptr->getKind() == kMlir;
      }
    };
    
    namespace internal {
    struct TracingOperationDeleter {
      void operator()(TracingOperation* p) const {
        if (p != nullptr) {
          p->Release();
        }
      }
    };
    }  // namespace internal
    
    using TracingOperationPtr =
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Nov 13 22:20:40 GMT 2020
    - 5.2K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/expiring_lru_cache.h

        T value;
    
        /// A list iterator pointing to the entry's position in the LRU list.
        std::list<std::string>::iterator lru_iterator;
      };
    
      bool LookupLocked(const std::string& key, T* value)
          ABSL_EXCLUSIVE_LOCKS_REQUIRED(mu_) {
        auto it = cache_.find(key);
        if (it == cache_.end()) {
          return false;
        }
        lru_list_.erase(it->second.lru_iterator);
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 09 19:31:22 GMT 2020
    - 6.3K bytes
    - Viewed (0)
  4. 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)
  5. 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