Skip to content

Commit

Permalink
bot: fetch update components
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 20, 2024
1 parent d828b23 commit 1c49876
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#define MA_BOARD_NAME PORT_DEVICE_NAME

#define MA_USE_ENGINE_TFLITE 1
#define MA_ENGINE_TFLITE_TENSOE_ARENA_SIZE (1024 * 1024)
#define MA_ENGINE_TFLITE_TENSOE_ARENA_SIZE (2048 * 1024)
#define MA_USE_ENGINE_TENSOR_INDEX 1
#define MA_USE_STATIC_TENSOR_ARENA 1

Expand Down Expand Up @@ -53,6 +53,7 @@
#define MA_TFLITE_OP_SOFTMAX 1
#define MA_TFLITE_OP_DEPTHWISE_CONV_2D 1
#define MA_TFLITE_OP_LEAKY_RELU 1
#define MA_TFLITE_OP_RMAU6 1

#define MA_INVOKE_ENABLE_RUN_HOOK 1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>

#include "ma_config_board.h"

Expand Down
2 changes: 1 addition & 1 deletion src/components/sscma-micro/sscma/core/utils/ma_base64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace ma::utils {

constexpr static const char* BASE64_CHARS_TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

constexpr static std::array<int, 256> BASE64_DECODE_TABLE = []() {
static std::array<int, 256> BASE64_DECODE_TABLE = []() {
std::array<int, 256> table;
for (auto& v : table) {
v = -1;
Expand Down

0 comments on commit 1c49876

Please sign in to comment.