mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-01 17:57:27 +00:00
feat(python): don't check .sparsity in interpreter (#2944)
Remove the check for sparse tensors in the Python interpreter wrapper. This fixes a broken build when TF_LITE_STATIC_MEMORY is set, which should always be the case in TFLM. TfLiteTensor objects don't have a .sparsity member when TF_LITE_STATIC_MEMORY is set, so this check can't be made. This prepares for an upcoming commit setting TF_LITE_STATIC_MEMORY during Bazel builds. This hasn't caused build failures in Make builds, which have always set TF_LITE_STATIC_MEMORY, because Make builds don't build the Python interpreter wrapper. BUG=#2636
This commit is contained in:
parent
1276385304
commit
c28b493d5e
1 changed files with 0 additions and 5 deletions
|
|
@ -104,11 +104,6 @@ bool CheckTensor(const TfLiteTensor* tensor) {
|
|||
return false;
|
||||
}
|
||||
|
||||
if (tensor->sparsity != nullptr) {
|
||||
PyErr_SetString(PyExc_ValueError, "TFLM doesn't support sparse tensors");
|
||||
return false;
|
||||
}
|
||||
|
||||
int py_type_num = TfLiteTypeToPyArrayType(tensor->type);
|
||||
if (py_type_num == NPY_NOTYPE) {
|
||||
PyErr_SetString(PyExc_ValueError, "Unknown tensor type.");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue