lib: fix the `SIMD` typo in Tier description

This commit is contained in:
Han Yin 2025-08-06 13:09:36 -07:00
parent 46e82c09f6
commit ca1cda37fd
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ Java_android_llama_cpp_internal_InferenceEngineLoader_getOptimalTier(
LOGI("Detected dotprod support - selecting T1");
}
else if (features.asimd) {
tier = 0; // T0: baseline ARMv8-a with SIMD
tier = 0; // T0: baseline ARMv8-a with ASIMD
LOGI("Detected basic ASIMD support - selecting T0");
}
else {

View File

@ -14,7 +14,7 @@ interface TierDetection {
*/
enum class LLamaTier(val rawValue: Int, val libraryName: String, val description: String) {
NONE(-404, "", "No valid Arm optimization available!"),
T0(0, "llama_android_t0", "ARMv8-a baseline with SIMD"),
T0(0, "llama_android_t0", "ARMv8-a baseline with ASIMD"),
T1(1, "llama_android_t1", "ARMv8.2-a with DotProd"),
T2(2, "llama_android_t2", "ARMv8.6-a with DotProd + I8MM"),
T3(3, "llama_android_t3", "ARMv9-a with DotProd + I8MM + SVE/SVE2");