Errors returned by BenchmarkMatrixMultiplication.
| 44 | |
| 45 | /// Errors returned by BenchmarkMatrixMultiplication. |
| 46 | enum class BenchmarkError : int8_t { |
| 47 | /// Indicates that the requested backend has not yet been implemented. |
| 48 | kNotImplemented = -1, |
| 49 | /// Indicates that the requested backend isn't supported for the device. |
| 50 | kNotSupported = -2, |
| 51 | /// Indicates that an unknown backend was requested. |
| 52 | kUnknownBackend = -3, |
| 53 | }; |
| 54 | |
| 55 | /** |
| 56 | * Benchmarks the given matrix multiply backend. |
nothing calls this directly
no outgoing calls
no test coverage detected