Changeset b2e2cd0
- Timestamp:
- Dec 29, 2021, 5:51:58 PM (3 years ago)
- Branches:
- feature/crepe
- Children:
- 1cbd27c
- Parents:
- 49ac607f
- git-author:
- Paul Brossier <piem@piem.org> (01/16/19 22:02:06)
- git-committer:
- Paul Brossier <piem@piem.org> (12/29/21 17:51:58)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ai/conv2d.c
r49ac607f rb2e2cd0 293 293 // apply bias 294 294 acc += bias; 295 // compute RELU296 activations->data[k][jj + i] = MAX(acc, 0);295 // set output activation 296 activations->data[k][jj + i] = acc; 297 297 } 298 298 stride_b += c->stride_shape[1];
Note: See TracChangeset
for help on using the changeset viewer.