We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e7e86f commit ddbf757Copy full SHA for ddbf757
tensorflow/lite/micro/test_helpers.cc
@@ -53,7 +53,7 @@ class StackAllocator : public flatbuffers::Allocator {
53
}
54
55
uint8_t* allocate(size_t size) override {
56
- TFLITE_DCHECK((data_size_ + size) <= kStackAllocatorSize);
+ TFLITE_CHECK((data_size_ + size) <= kStackAllocatorSize);
57
uint8_t* result = data_;
58
data_ += size;
59
data_size_ += size;
0 commit comments