We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c04ed59 commit 6396c10Copy full SHA for 6396c10
sw/kernels/dnn/batchnorm/src/batchnorm.h
@@ -85,7 +85,7 @@ static inline void batchnorm_layer(const batchnorm_layer_t *l) {
85
uint32_t weights_size = l->CI;
86
uint32_t ofmap_size = 2 * l->IW * l->TILE_CI;
87
88
- double *ptr = (double *)(snrt_cluster()->tcdm.mem);
+ double *ptr = (double *)snrt_l1_next();
89
double *ifmap = ptr;
90
ptr += ifmap_size;
91
double *gamma = ptr;
0 commit comments