-
Notifications
You must be signed in to change notification settings - Fork 980
[Dep] Upgraded Flatbuffer to 25.9.23 #3296
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
fe00223 to
00f6b50
Compare
|
|
||
| TF_LITE_MICRO_TEST(IfShouldInvokeSubgraphConditionFalse) { | ||
| constexpr int kArenaSize = 5000; | ||
| constexpr int kArenaSize = 16384; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@veblush Thats a big increase in arena size. Any ideas why this expansion happened?
|
|
||
| TF_LITE_MICRO_TEST(IfShouldNotOverwriteTensorAcrossSubgraphs) { | ||
| constexpr int kArenaSize = 5000; | ||
| constexpr int kArenaSize = 16384; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@veblush Same as line 138 question
| +#endif | ||
| } | ||
| case FBT_VECTOR: return static_cast<double>(AsVector().size()); | ||
| case FBT_BOOL: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FBT_BOOL is no more?
|
|
||
| TF_LITE_MICRO_TEST(TestMultiSubgraphWithIf) { | ||
| constexpr int kArenaSize = 1024; | ||
| constexpr int kArenaSize = 2048; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@veblush Did the updated flatbuffers library cause the model schema to expand in size?
| flatbuffers::FlatBufferBuilder* builder = BuilderInstance(); | ||
| constexpr size_t tensor_shape_size = 1; | ||
| const int32_t tensor_shape[tensor_shape_size] = {size}; | ||
| std::vector<int32_t> shape = {size}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@veblush will the verboten std::vector port to non x86 platforms?
BUG=n/a