Migrate max pooling

This commit is contained in:
2024-09-09 21:48:36 +02:00
parent 8a5d556b7e
commit a0665fb05c
6 changed files with 71 additions and 33 deletions

View File

@@ -3,7 +3,7 @@
#include <vector>
#include "max_pooling.cuh"
#include "max_pooling.hpp"
class MaxPoolingLayerTest : public ::testing::Test {
protected:

View File

@@ -2,7 +2,7 @@
#include "conv2d.cuh"
#include "dense.hpp"
#include "max_pooling.cuh"
#include "max_pooling.hpp"
#include "model.hpp"
class ModelTest : public ::testing::Test {