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.
2 parents 093eccb + 79d0082 commit 5ff400eCopy full SHA for 5ff400e
GestureToEmoji/ArduinoSketches/IMU_Classifier/IMU_Classifier.ino
@@ -50,7 +50,7 @@ TfLiteTensor* tflOutputTensor = nullptr;
50
// Create a static memory buffer for TFLM, the size may need to
51
// be adjusted based on the model you are using
52
constexpr int tensorArenaSize = 8 * 1024;
53
-byte tensorArena[tensorArenaSize];
+byte tensorArena[tensorArenaSize] __attribute__((aligned(16)));
54
55
// array to map gesture index to a name
56
const char* GESTURES[] = {
0 commit comments