MCPcopy Create free account
hub / github.com/android/ndk-samples / BenchmarkError

Enum BenchmarkError

vectorization/src/main/cpp/benchmark.h:46–53  ·  view source on GitHub ↗

Errors returned by BenchmarkMatrixMultiplication.

Source from the content-addressed store, hash-verified

44
45/// Errors returned by BenchmarkMatrixMultiplication.
46enum 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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected