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

Delete debug includes

parent b40da6db
No related branches found
No related tags found
1 merge request!33Add and modify operators to run the ConvNeXt onnx model
......@@ -3,10 +3,6 @@
#include "network/typedefs.hpp"
#include "kernels/activation.hpp"
#include <iostream>
#include <cassert>
template<int NB_ELTS,
int INPUT_A_DIMS[], int INPUT_B_DIMS[], int OUTPUT_DIMS[],
......
......@@ -3,9 +3,6 @@
#include "network/typedefs.hpp"
#include "kernels/activation.hpp"
#include <iostream>
#include <cassert>
template<int NB_ELTS, ElemWise_T ELEM_OP,
......
......@@ -3,10 +3,6 @@
#include "network/typedefs.hpp"
#include "kernels/activation.hpp"
#include <iostream>
#include <cassert>
template<int NB_ELTS,
int INPUT_A_DIMS[], int INPUT_B_DIMS[], int OUTPUT_DIMS[],
......
......@@ -5,8 +5,6 @@
#include "network/utils.hpp"
#include <limits>
#include <stdexcept>
#include <iostream>
void reorder_NCHW_NHWC_pool(const float* input, float* output, int N, int C, int H, int W, bool direct = true) {
......
......@@ -3,9 +3,6 @@
#include "network/typedefs.hpp"
#include "kernels/activation.hpp"
#include <iostream>
#include <cassert>
template<int NB_ELTS,
......
......@@ -2,9 +2,7 @@
#define __AIDGE_EXPORT_CPP_KERNELS_TRANSPOSE__
#include "network/typedefs.hpp"
#include <cstring>
#include <cstdio>
#include <iostream>
using namespace std;
......@@ -27,10 +25,9 @@ void transpose_forward (
int indices[SIZE_OUTPUT_DIMS];
for (int i = 0; i<SIZE_OUTPUT_DIMS;++i){indices[i] = 0;}
// #pragma omp parallel for
for (int i = 0; i < SIZE; ++i) {
int idx = 0;
// #pragma omp parallel for
for (int j = SIZE_OUTPUT_DIMS -1; j >=0; --j) {
idx += indices[PERM[j]] * newStrides[j];
}
......
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