Skip to content

Commit

Permalink
Moved vecmem::device_address_space out of details/
Browse files Browse the repository at this point in the history
Since the main declaration of vecmem::device_atomic_ref
needs that enumeration as well.
  • Loading branch information
krasznaa committed Sep 2, 2024
1 parent 4e05698 commit e57da85
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ vecmem_add_library( vecmem_core core
"include/vecmem/memory/details/is_aligned.hpp"
"src/memory/details/is_aligned.cpp"
# Atomic reference(s).
"include/vecmem/memory/device_address_space.hpp"
"include/vecmem/memory/device_atomic_ref.hpp"
"include/vecmem/memory/details/device_address_space.hpp"
"include/vecmem/memory/details/dummy_device_atomic_ref.hpp"
"include/vecmem/memory/impl/dummy_device_atomic_ref.ipp"
"include/vecmem/memory/details/cuda_device_atomic_ref.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#pragma once

// Local include(s).
#include "vecmem/memory/details/device_address_space.hpp"
#include "vecmem/memory/device_address_space.hpp"
#include "vecmem/memory/memory_order.hpp"
#include "vecmem/utils/types.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#pragma once

// Local include(s).
#include "vecmem/memory/details/device_address_space.hpp"
#include "vecmem/memory/device_address_space.hpp"
#include "vecmem/memory/memory_order.hpp"
#include "vecmem/utils/types.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#pragma once

// Local include(s).
#include "vecmem/memory/details/device_address_space.hpp"
#include "vecmem/memory/device_address_space.hpp"
#include "vecmem/memory/memory_order.hpp"
#include "vecmem/utils/types.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#pragma once

// Local include(s).
#include "vecmem/memory/details/device_address_space.hpp"
#include "vecmem/memory/device_address_space.hpp"

// SYCL include(s).
#include <CL/sycl.hpp>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#pragma once

// Local include(s).
#include "vecmem/memory/details/device_address_space.hpp"
#include "vecmem/memory/device_address_space.hpp"
#include "vecmem/memory/memory_order.hpp"

// System include(s).
Expand Down
2 changes: 1 addition & 1 deletion core/include/vecmem/memory/device_atomic_ref.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#pragma once

// Local include(s).
#include "vecmem/memory/details/device_address_space.hpp"
#include "vecmem/memory/device_address_space.hpp"

// System include(s).
#include <atomic>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
#pragma once

// Local include(s).
#include "vecmem/memory/details/device_address_space.hpp"
#include "vecmem/memory/memory_order.hpp"
#include "vecmem/utils/types.hpp"

Expand Down

0 comments on commit e57da85

Please sign in to comment.