Skip to content
Snippets Groups Projects
Commit 9fc76615 authored by Matthew  Newson's avatar Matthew Newson
Browse files

Delete debug includes

parent 5389bb9e
No related branches found
No related tags found
1 merge request!33Add and modify operators to run the ConvNeXt onnx model
...@@ -3,9 +3,6 @@ ...@@ -3,9 +3,6 @@
#include "network/typedefs.hpp" #include "network/typedefs.hpp"
#include "kernels/activation.hpp" #include "kernels/activation.hpp"
#include <iostream>
#include <cassert>
template<int NB_ELTS, template<int NB_ELTS,
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
#include "kernels/rescaling.hpp" #include "kernels/rescaling.hpp"
#include "kernels/activation.hpp" #include "kernels/activation.hpp"
#include <math.h> #include <math.h>
#include <iostream>
// WARNING: this kernel only works for 32-bits floating point values // WARNING: this kernel only works for 32-bits floating point values
......
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
#include "kernels/macs.hpp" #include "kernels/macs.hpp"
#include "kernels/activation.hpp" #include "kernels/activation.hpp"
#include <omp.h> #include <omp.h>
#include <iostream>
// Weights index en NHWC // Weights index en NHWC
constexpr int inds_pos(int n, int c, int h, int w, int N, int C, int H, int W) { constexpr int inds_pos(int n, int c, int h, int w, int N, int C, int H, int W) {
......
#ifndef __AIDGE_EXPORT_CPP_KERNELS_ERP__ #ifndef __AIDGE_EXPORT_CPP_KERNELS_ERF__
#define __AIDGE_EXPORT_CPP_KERNELS_ERP__ #define __AIDGE_EXPORT_CPP_KERNELS_ERF__
#include "network/typedefs.hpp" #include "network/typedefs.hpp"
#include <cmath> #include <cmath>
#include <math.h> #include <math.h>
#include <iostream>
template<int _NB_ELTS, template<int _NB_ELTS,
typename Input_T, typename Output_T> typename Input_T, typename Output_T>
...@@ -37,4 +36,4 @@ void erf_forward ( ...@@ -37,4 +36,4 @@ void erf_forward (
} }
#endif // __AIDGE_EXPORT_CPP_KERNELS_ERP_ #endif // __AIDGE_EXPORT_CPP_KERNELS_ERF_
\ No newline at end of file \ No newline at end of file
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
#include "network/typedefs.hpp" #include "network/typedefs.hpp"
#include "kernels/activation.hpp" #include "kernels/activation.hpp"
#include <iostream>
// Generic function for matmul and activation // Generic function for matmul and activation
template<int INPUT_A_DIMS[], int INPUT_B_DIMS[], int OUTPUT_DIMS[], template<int INPUT_A_DIMS[], int INPUT_B_DIMS[], int OUTPUT_DIMS[],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment