hexagon: argsort reject tensors with huge rows for now

This commit is contained in:
Max Krasnyansky 2026-02-04 18:22:08 -08:00
parent 5bb5541e2c
commit d0d2116a26
1 changed files with 5 additions and 0 deletions

View File

@ -2123,6 +2123,11 @@ static bool ggml_hexagon_supported_argsort(const struct ggml_hexagon_session * s
return false;
}
if (src0->ne[0] > (16*1024)) {
// reject tensors with huge rows for now
return false;
}
return true;
}