Skip to content
This repository was archived by the owner on Jul 22, 2026. It is now read-only.

Commit 5c4e997

Browse files
committed
Format integer-header changes and fix OpenMP include order
1 parent 413b0c6 commit 5c4e997

11 files changed

Lines changed: 15 additions & 4 deletions

File tree

include/layers/ConcatLayer.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22
#include <stdint.h>
3+
34
#include <numeric>
45
#include <stdexcept>
56
#include <vector>

include/layers/InputLayer.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#pragma once
2+
#include <stdint.h>
3+
24
#include <algorithm>
35
#include <cmath>
4-
#include <stdint.h>
56

67
#include "layers/Layer.hpp"
78

include/layers/ReduceLayer.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22
#include <stdint.h>
3+
34
#include <limits>
45
#include <vector>
56

include/layers/Tensor.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#pragma once
22

33
#include <stdint.h>
4+
45
#include <iostream>
56
#include <stdexcept>
67
#include <type_traits>

include/layers_oneDNN/ReduceLayer.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22
#include <stdint.h>
3+
34
#include <dnnl.hpp>
45
#include <memory>
56
#include <vector>

include/parallel/backends.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
#include <oneapi/tbb/parallel_for.h>
55

66
// NOLINTNEXTLINE(misc-header-include-cycle)
7+
#include <stdint.h>
8+
79
#include <Kokkos_Core.hpp>
810
#include <cstddef>
9-
#include <stdint.h>
1011
#include <functional>
1112
#include <limits>
1213
#include <thread>

include/perf/benchmarking.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#pragma once
44
#include <omp.h>
5+
#include <stdint.h>
56

67
#include <chrono>
78
#include <cmath>

test/single_layer/test_batchnormalizationlayer.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
#include <cmath>
2-
#include <stdint.h>
1+
#include <stdint.h>
2+
3+
#include <cmath>
34
#include <iostream>
45
#include <vector>
56

test/single_layer/test_matmullayer.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <stdint.h>
2+
23
#include <iostream>
34
#include <vector>
45

test/single_layer/test_tensor.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include <stdint.h>
2+
23
#include <iostream>
34
#include <vector>
45

0 commit comments

Comments
 (0)