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

Commit e4ee8c7

Browse files
author
Mikolaj Komar
committed
Merge onedpl fix
2 parents 6e0e9d2 + 28e023e commit e4ee8c7

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

benchmarks/gbench/mp/fft3d.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
#include "cxxopts.hpp"
66
#include "fmt/core.h"
77
#include "mpi.h"
8+
#if (ONEDPL_VERSION_MAJOR >= 2025)
89
#include "oneapi/mkl/dft.hpp"
10+
#else
11+
#include "oneapi/mkl/dfti.hpp"
12+
#endif
913
#include <complex>
1014

1115
#include "dr/mp.hpp"

benchmarks/gbench/sp/fft3d.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
// SPDX-License-Identifier: BSD-3-Clause
44

55
#include "cxxopts.hpp"
6+
#if (ONEDPL_VERSION_MAJOR >= 2025)
67
#include "oneapi/mkl/dft.hpp"
8+
#else
9+
#include "oneapi/mkl/dfti.hpp"
10+
#endif
711
#include <complex>
812
#include <dr/sp.hpp>
913
#include <fmt/core.h>

0 commit comments

Comments
 (0)