| 45 | |
| 46 | #if defined(PLATFORM_WINDOWS) |
| 47 | port::StatusOr<std::vector<uint8>> CompilePtx(int device_ordinal, |
| 48 | const char* ptx_contents, |
| 49 | PtxCompilationOptions options) { |
| 50 | // TODO(b/134675935): Subprocess invocation not supported on Windows. |
| 51 | return port::InternalError("Invoking ptxas not supported on Windows"); |
| 52 | } |
| 53 | |
| 54 | port::StatusOr<absl::Span<const uint8>> CompilePtxOrGetCached( |
| 55 | int device_ordinal, const char* ptx, |
no test coverage detected