Skip to content

Commit 600c5de

Browse files
committed
Preserve integer includes before OpenMP and TBB
1 parent 17cd8f3 commit 600c5de

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

include/parallel/backends.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#pragma once
2+
// clang-format off
3+
#include <stdint.h>
24
#include <oneapi/tbb/blocked_range.h>
35
#include <oneapi/tbb/info.h>
46
#include <oneapi/tbb/parallel_for.h>
5-
#include <stdint.h>
7+
// clang-format on
68

79
// NOLINTNEXTLINE(misc-header-include-cycle)
810
#include <Kokkos_Core.hpp>

include/perf/benchmarking.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
// Using chrono for good measurements and parallelism support
22

33
#pragma once
4-
#include <omp.h>
4+
// clang-format off
55
#include <stdint.h>
6+
#include <omp.h>
7+
// clang-format on
68

79
#include <chrono>
810
#include <cmath>

0 commit comments

Comments
 (0)