| 6 | |
| 7 | namespace stream_executor { |
| 8 | static port::StatusOr<std::vector<uint8>> CompileGpuAsm( |
| 9 | int device_ordinal, |
| 10 | const char* ptx_contents, |
| 11 | stream_executor::gpu::GpuAsmOpts options) { |
| 12 | return CompilePtx(device_ordinal, ptx_contents, options); |
| 13 | } |
| 14 | |
| 15 | static port::StatusOr<absl::Span<const uint8>> CompileGpuAsmOrGetCached( |
| 16 | int device_ordinal, const char* ptx, |
no test coverage detected