Skip to content

Commit

Permalink
Merge pull request #71 from sony/feature/20220606-maxpooling-crash-bu…
Browse files Browse the repository at this point in the history
…gfix

fix crash bug for max_pooling function
  • Loading branch information
YukioOobuchi authored Jun 8, 2022
2 parents 8032ad5 + 08478d4 commit 3340d95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/functions/implements/neural_network/pooling.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
#include <nnablart/functions.h>

typedef struct {
void *data;
rt_list_t kernel; ///< Original type is [Shape]
rt_list_t stride; ///< Original type is [Shape]
uint8_t ignore_border;
rt_list_t pad; ///< Original type is [Shape]
uint8_t channel_last; ///< bool
uint8_t including_pad;
void *data;
} pooling_context_t;

typedef struct {
Expand Down

0 comments on commit 3340d95

Please sign in to comment.