We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec1b6c6 commit 3e64c4eCopy full SHA for 3e64c4e
runtime/core/portable_type/tensor_impl.cpp
@@ -95,7 +95,7 @@ Error TensorImpl::internal_resize_contiguous(ArrayRef<SizesType> new_sizes) {
95
case TensorShapeDynamism::STATIC:
96
if (!std::equal(sizes_, sizes_ + dim_, new_sizes.begin())) {
97
#ifdef ET_LOG_ENABLED
98
- std::array<char, 5> old_sizes_str, new_sizes_str;
+ std::array<char, 16> old_sizes_str, new_sizes_str;
99
100
executorch::runtime::sizes_to_string(
101
old_sizes_str.data(),
0 commit comments