Skip to content

Commit 33bbe21

Browse files
committed
Fix non-LVQ failures on non-Intel platforms
1 parent 3e25ae3 commit 33bbe21

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

bindings/cpp/src/svs_runtime_utils.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,10 +244,7 @@ inline StorageKind to_supported_storage_kind(StorageKind kind) {
244244
} else if (is_lvq_storage(kind) || is_leanvec_storage(kind)) {
245245
return StorageKind::SQI8;
246246
}
247-
throw StatusException(
248-
svs::runtime::ErrorCode::NOT_IMPLEMENTED,
249-
"SVS runtime does not support the requested storage kind."
250-
);
247+
return kind;
251248
}
252249

253250
template <typename F, typename... Args>

0 commit comments

Comments
 (0)