| 476 | void SetUp() { TestCudaBase::SetUp(); } |
| 477 | |
| 478 | void Allocate(const int64_t size) { |
| 479 | ASSERT_OK_AND_ASSIGN(device_buffer_, context_->Allocate(size)); |
| 480 | writer_.reset(new CudaBufferWriter(device_buffer_)); |
| 481 | } |
| 482 | |
| 483 | void TestWrites(const int64_t total_bytes, const int64_t chunksize, |
| 484 | const int64_t buffer_size = 0) { |
no test coverage detected