hexagon: argsort reject tensors with huge rows for now
This commit is contained in:
parent
5bb5541e2c
commit
d0d2116a26
|
|
@ -2123,6 +2123,11 @@ static bool ggml_hexagon_supported_argsort(const struct ggml_hexagon_session * s
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (src0->ne[0] > (16*1024)) {
|
||||||
|
// reject tensors with huge rows for now
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue