Refactor Backend and Layer interfaces

This commit is contained in:
2025-11-18 18:27:57 +01:00
parent 25670f90c4
commit 6340b27055
23 changed files with 154 additions and 201 deletions

View File

@@ -54,7 +54,7 @@ float* AvgPooling2d::forward(const float* input) {
#endif
}
int AvgPooling2d::getOutputSize() {
int AvgPooling2d::get_output_size() {
return outputSize.first * outputSize.second * nChannels;
}