cpu_introspection.hpp
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2023-2025, NVIDIA CORPORATION.
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 #pragma once
6 #include <cstddef>
7 #include <new>
8 
9 namespace ML {
10 namespace fil {
11 namespace detail {
12 #ifdef __cpplib_hardware_interference_size
13 using std::hardware_constructive_interference_size;
14 #else
15 auto constexpr static const hardware_constructive_interference_size = std::size_t{64};
16 #endif
17 } // namespace detail
18 } // namespace fil
19 } // namespace ML
Definition: dbscan.hpp:18