Skip to content

Commit

Permalink
Fix missing nnx_task_set_input_signed
Browse files Browse the repository at this point in the history
  • Loading branch information
lukamac committed Dec 12, 2024
1 parent 720c5ae commit ef84d4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/app/src/nnx_layer.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ static void task_prepare(nnx_task_t *task) {

#ifdef NNX_NEUREKA
#if INPUT_SIGNED == 1
nnx_task_set_input_signed(task);
neureka_task_set_input_signed(task);
#else
nnx_task_set_input_unsigned(task);
neureka_task_set_input_unsigned(task);
#endif
#if defined WMEM_SRAM || defined WMEM_MRAM
neureka_task_set_weight_source(task, neurekaWeightSourceWmem);
Expand Down

0 comments on commit ef84d4a

Please sign in to comment.