| 54 | } |
| 55 | |
| 56 | void NumpyFileWrapperGPU::ReadRawChunk(void* buffer, size_t bytes, |
| 57 | Index buffer_offset, Index file_offset) { |
| 58 | file_stream_->ReadAtGPU(static_cast<uint8_t *>(buffer), |
| 59 | bytes, buffer_offset, file_offset); |
| 60 | } |
| 61 | |
| 62 | // we need to implement that but we should split parsing and reading in this case |
| 63 | void NumpyLoaderGPU::ReadSample(NumpyFileWrapperGPU& target) { |
no test coverage detected