Skip to content

Commit

Permalink
Remove unused stride from neureka_task_set_op_to_conv
Browse files Browse the repository at this point in the history
  • Loading branch information
lukamac committed Feb 7, 2024
1 parent 9afe077 commit 3711f1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions neureka/hal/neureka_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ void neureka_task_init(neureka_task_t *task) {

void neureka_task_set_op_to_conv(neureka_task_t *task,
const uint8_t kernel_shape,
const uint8_t depthwise,
const uint8_t stride) {
const uint8_t depthwise) {
task->depthwise = depthwise;
task->kernel_shape = kernel_shape;
task->subtile_output_channel = depthwise ? NEUREKA_SUBTILE_INPUT_CHANNEL_3x3
Expand Down
2 changes: 1 addition & 1 deletion neureka/hal/neureka_task.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ typedef struct neureka_task_t {
void neureka_task_init(neureka_task_t *task);
void neureka_task_set_op_to_conv(neureka_task_t *task,
const uint8_t kernel_shape,
const uint8_t depthwise, const uint8_t stride);
const uint8_t depthwise);
void neureka_task_set_bits(neureka_task_t *task, const uint8_t input_bits,
const uint8_t output_bits,
const uint8_t weight_bits);
Expand Down

0 comments on commit 3711f1b

Please sign in to comment.