| 550 | } |
| 551 | |
| 552 | port::Status GpuExecutor::Memset(Stream* stream, DeviceMemoryBase* location, |
| 553 | uint8 pattern, uint64 size) { |
| 554 | VLOG(2) << "enqueueing memset8 operation onto stream " << stream |
| 555 | << " at location " << location << " with size " << size |
| 556 | << " and pattern " << std::hex << pattern; |
| 557 | return GpuDriver::AsynchronousMemsetUint8(context_, AsROCmDevicePtr(location), |
| 558 | pattern, size, |
| 559 | AsGpuStreamValue(stream)); |
| 560 | } |
| 561 | |
| 562 | port::Status GpuExecutor::Memset32(Stream* stream, DeviceMemoryBase* location, |
| 563 | uint32 pattern, uint64 size) { |
nothing calls this directly
no test coverage detected