Skip to content

Commit ddbf757

Browse files
committed
TFLITE_CHECK
1 parent 4e7e86f commit ddbf757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow/lite/micro/test_helpers.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class StackAllocator : public flatbuffers::Allocator {
5353
}
5454

5555
uint8_t* allocate(size_t size) override {
56-
TFLITE_DCHECK((data_size_ + size) <= kStackAllocatorSize);
56+
TFLITE_CHECK((data_size_ + size) <= kStackAllocatorSize);
5757
uint8_t* result = data_;
5858
data_ += size;
5959
data_size_ += size;

0 commit comments

Comments
 (0)