Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UnifiedMemoryDeallocate (0.37 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.cc

      }
    
      void* UnifiedMemoryAllocate(uint64 size) override {
        CHECK(stream_executor_->unified_memory_allocate);
        return stream_executor_->unified_memory_allocate(&device_, size);
      }
    
      void UnifiedMemoryDeallocate(void* mem) override {
        CHECK(stream_executor_->unified_memory_deallocate);
        stream_executor_->unified_memory_deallocate(&device_, mem);
      }
    
      absl::optional<AllocatorStats> GetAllocatorStats() override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor_test.cc

      ASSERT_FALSE(allocate_called);
      void* mem = executor->UnifiedMemoryAllocate(8);
      ASSERT_NE(mem, nullptr);
      ASSERT_TRUE(allocate_called);
      ASSERT_FALSE(deallocate_called);
      executor->UnifiedMemoryDeallocate(mem);
      ASSERT_TRUE(deallocate_called);
    }
    
    TEST_F(StreamExecutorTest, GetAllocatorStats) {
      se_.get_allocator_stats = [](const SP_Device* const device,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top