11#include "vecmem/containers/details/resize_jagged_vector.hpp"
12#include "vecmem/containers/jagged_vector.hpp"
13#include "vecmem/edm/details/schema_traits.hpp"
14#include "vecmem/memory/host_memory_resource.hpp"
15#include "vecmem/utils/debug.hpp"
16#include "vecmem/utils/type_traits.hpp"
28template <
typename TYPE>
32 if ((data.size_ptr() ==
nullptr) || (data.capacity() == 0)) {
40 "Prepared a device vector buffer of capacity %u "
41 "for use on a device (ptr: %p)",
42 data.capacity(),
static_cast<void*
>(data.size_ptr()));
48template <
typename TYPE>
52 if (data.capacity() == 0) {
58 VECMEM_DEBUG_MSG(2,
"Set %u vector elements to %i at ptr: %p",
59 data.capacity(), value,
static_cast<void*
>(data.ptr()));
65template <
typename TYPE>
83template <
typename TYPE>
97template <
typename TYPE,
typename ALLOC>
99 const data::vector_view<std::add_const_t<TYPE>>&
from_view,
100 std::vector<TYPE, ALLOC>&
to_vec, type::copy_type
cptype)
const {
103 const typename data::vector_view<std::add_const_t<TYPE>>::size_type size =
115template <
typename TYPE>
139template <
typename TYPE>
143 if (data.
size() == 0) {
149 if (data.
host_ptr()[0].size_ptr() !=
nullptr) {
167 "Prepared a jagged device vector buffer of size %lu "
168 "for use on a device",
175template <
typename TYPE>
180 if (is_contiguous(data.host_ptr(), data.capacity())) {
184 const std::size_t
total_size = std::accumulate(
185 data.host_ptr(), data.host_ptr() + data.size(),
186 static_cast<std::size_t
>(0
u),
187 [](std::size_t
sum,
const data::vector_view<TYPE>&
iv) {
188 return sum + iv.capacity();
191 for (std::size_t
i = 0;
i < data.size(); ++
i) {
192 data::vector_view<TYPE>&
iv = data.host_ptr()[
i];
193 if ((
iv.capacity() != 0
u) && (
iv.ptr() !=
nullptr)) {
205 for (std::size_t
i = 0;
i < data.size(); ++
i) {
206 data::vector_view<TYPE>&
iv = data.host_ptr()[
i];
215template <
typename TYPE>
236template <
typename TYPE>
250template <
typename TYPE,
typename ALLOC1,
typename ALLOC2>
252 const data::jagged_vector_view<std::add_const_t<TYPE>>&
from_view,
254 type::copy_type
cptype)
const {
260 for (
typename data::jagged_vector_view<std::add_const_t<TYPE>>::size_type
270template <
typename TYPE>
278template <
typename TYPE>
284 if ((
sizes.size() == 0) && (data.
size() == 0)) {
289 std::ostringstream
msg;
290 msg <<
"sizes.size() (" <<
sizes.size() <<
") != data.size() ("
291 << data.
size() <<
")";
292 throw std::length_error(
msg.str());
302 std::ostringstream
msg;
303 msg <<
"data.host_ptr()[" <<
i <<
"].capacity() ("
304 << data.
host_ptr()[
i].capacity() <<
") < sizes[" <<
i <<
"] ("
306 throw std::length_error(
msg.str());
310 if (data.
host_ptr()[
i].size_ptr() ==
nullptr) {
313 throw std::runtime_error(
314 "Inconsistent target jagged vector view received for resizing");
330template <
typename SCHEMA>
334 if (data.capacity() == 0) {
339 if (data.layout().ptr() != data.host_layout().ptr()) {
340 assert(data.layout().capacity() > 0
u);
342 copy_view_impl(data.host_layout(), data.layout(),
type::unknown);
347 if (data.size().ptr() !=
nullptr) {
348 assert(data.size().capacity() > 0
u);
349 do_memset(data.size().capacity() *
sizeof(
char), data.size().ptr(), 0);
352 "Prepared an SoA container of capacity %u "
353 "for use on a device (layout: {%u, %p}, size: {%u, %p})",
354 data.capacity(), data.layout().size(),
355 static_cast<void*
>(data.layout().ptr()),
356 data.size().size(),
static_cast<void*
>(data.size().ptr()));
367 if (data.payload().ptr() !=
nullptr) {
368 memset(data.payload(), value);
380 const edm::view<edm::details::add_const_t<edm::schema<VARTYPES...>>>&
382 edm::view<edm::schema<VARTYPES...>>
to_view, type::copy_type
cptype)
const {
386 if ((
from_view.payload().ptr() !=
nullptr) &&
387 (
to_view.payload().ptr() !=
nullptr) &&
391 if (
from_view.payload().capacity() == 0) {
396 VECMEM_DEBUG_MSG(2,
"Performing simple SoA copy of %u bytes",
403 if (
to_view.size().ptr() !=
nullptr) {
408 std::ostringstream
msg;
409 msg <<
"from_view.size().capacity() ("
411 <<
") != to_view.size().capacity() ("
412 <<
to_view.size().capacity() <<
")";
413 throw std::length_error(
msg.str());
436 const edm::view<edm::details::add_const_t<edm::schema<VARTYPES...>>>&
439 type::copy_type
cptype)
const {
459 if constexpr (std::disjunction_v<
465 if (data.size().ptr() ==
nullptr) {
470 assert(data.size().size() ==
487template <
typename TYPE>
488bool copy::copy_view_impl(
501 if (
to_view.capacity() < size) {
502 std::ostringstream
msg;
503 msg <<
"Target capacity (" <<
to_view.capacity() <<
") < source size ("
505 throw std::length_error(
msg.str());
510 if (
to_view.size_ptr() !=
nullptr) {
541template <
typename TYPE>
542bool copy::copy_view_impl(
543 const data::jagged_vector_view<std::add_const_t<TYPE>>&
from_view,
544 data::jagged_vector_view<TYPE>
to_view, type::copy_type
cptype)
const {
548 std::ostringstream
msg;
550 <<
") > to_view.size() (" <<
to_view.size() <<
")";
551 throw std::length_error(
msg.str());
555 const typename data::jagged_vector_view<std::add_const_t<TYPE>>::size_type
564 VECMEM_DEBUG_MSG(3,
"from_is_contiguous = %d, to_is_contiguous = %d",
578 std::vector<typename data::vector_view<std::add_const_t<TYPE>>::size_type>
581 for (std::size_t
i = 0;
i < size; ++
i) {
609template <
typename TYPE>
610void copy::copy_views_impl(
612 const data::vector_view<std::add_const_t<TYPE>>*
from_view,
613 data::vector_view<TYPE>*
to_view, type::copy_type
cptype)
const {
620 const std::size_t size =
sizes.size();
624 for (std::size_t
i = 0;
i < size; ++
i) {
645 "Copied the payload of a jagged vector of type "
646 "\"%s\" with %lu copy operation(s)",
650template <
typename TYPE>
651void copy::copy_views_contiguous_impl(
653 const data::vector_view<std::add_const_t<TYPE>>*
from_view,
654 data::vector_view<TYPE>*
to_view, type::copy_type
cptype)
const {
663 const std::size_t size =
sizes.size();
666 static_cast<std::size_t
>(0)) *
670 for (std::size_t
i = 0;
i < size; ++
i) {
688 "Copied the payload of a jagged vector of type "
689 "\"%s\" with 1 copy operation(s)",
693template <
typename TYPE>
694std::vector<typename data::vector_view<TYPE>::size_type> copy::get_sizes_impl(
695 const data::vector_view<TYPE>* data, std::size_t size)
const {
698 std::vector<typename data::vector_view<TYPE>::size_type>
result(size, 0);
701 for (std::size_t
i = 0;
i < size; ++
i) {
704 if ((data[
i].capacity() != 0) && (data[
i].size_ptr() !=
nullptr)) {
721 for (std::size_t
i = 0;
i < size; ++
i) {
727template <
typename TYPE>
728bool copy::is_contiguous(
const data::vector_view<TYPE>* data,
735 auto ptr = data[0].ptr();
736 for (std::size_t
i = 1;
i < size; ++
i) {
737 if ((ptr + data[
i - 1].capacity()) != data[
i].ptr()) {
746void copy::memset_impl(edm::view<edm::schema<VARTYPES...>> data,
750 if constexpr (edm::type::details::is_scalar<
typename std::tuple_element<
752 do_memset(
sizeof(
typename std::tuple_element<
753 INDEX, std::tuple<VARTYPES...>>::type::type),
760 if constexpr (
sizeof...(VARTYPES) > (
INDEX + 1)) {
767void copy::resize_impl(
768 const edm::view<edm::details::add_const_t<edm::schema<VARTYPES...>>>&
779 if constexpr (std::disjunction_v<
780 edm::type::details::is_jagged_vector<VARTYPES>...> ==
784 edm::details::add_const_t<edm::schema<
VARTYPES...>>>::size_type
790 sizeof(
typename edm::view<edm::details::add_const_t<
791 edm::schema<VARTYPES...>>>::size_type));
793 do_copy(
sizeof(
typename edm::view<edm::details::add_const_t<
794 edm::schema<VARTYPES...>>>::size_type),
803 VECMEM_DEBUG_MSG(4,
"Resizing a (non-jagged) container to size %u",
810 if constexpr (edm::type::details::is_jagged_vector<
811 typename std::tuple_element<
817 4,
"Resizing jagged vector variable at index %lu to size %lu",
822 for (std::size_t
i = 0;
i <
sizes.size(); ++
i) {
825 }
else if constexpr (edm::type::details::is_vector<
826 typename std::tuple_element<
828 std::tuple<
VARTYPES...>>::type>::value) {
833 "Resizing vector variable at index %lu to size %u",
838 if constexpr (
sizeof...(VARTYPES) > (
INDEX + 1)) {
845void copy::copy_sizes_impl(
847 edm::details::add_const_t<edm::schema<VARTYPES...>>>&
from_view,
857 if constexpr (std::disjunction_v<
858 edm::type::details::is_jagged_vector<VARTYPES>...> ==
862 edm::details::add_const_t<edm::schema<
VARTYPES...>>>::size_type
879 do_copy(
sizeof(
typename edm::view<edm::details::add_const_t<
880 edm::schema<VARTYPES...>>>::size_type),
890 if constexpr (edm::type::details::is_jagged_vector<
891 typename std::tuple_element<
898 if constexpr (
sizeof...(VARTYPES) > (
INDEX + 1)) {
905void copy::copy_payload_impl(
906 const edm::view<edm::details::add_const_t<edm::schema<VARTYPES...>>>&
908 edm::view<edm::schema<VARTYPES...>>
to_view, type::copy_type
cptype)
const {
911 if constexpr (edm::type::details::is_scalar<
typename std::tuple_element<
913 do_copy(
sizeof(
typename std::tuple_element<
914 INDEX, std::tuple<VARTYPES...>>::type::type),
923 if constexpr (
sizeof...(VARTYPES) > (
INDEX + 1)) {
VECMEM_NODISCARD event_type set_sizes(const std::vector< typename data::vector_view< TYPE >::size_type > &sizes, data::jagged_vector_view< TYPE > data) const
Helper function for setting the sizes of a resizable jagged vector.
VECMEM_NODISCARD event_type operator()(const data::vector_view< std::add_const_t< TYPE > > &from, data::vector_view< TYPE > to, type::copy_type cptype=type::unknown) const
Copy a 1-dimensional vector's data between two existing memory blocks.
VECMEM_NODISCARD event_type setup(data::vector_view< TYPE > data) const
Set up the internal state of a vector buffer correctly on a device.
virtual void do_copy(std::size_t size, const void *from, void *to, type::copy_type cptype) const
Perform a "low level" memory copy.
Definition copy.cpp:27
std::unique_ptr< abstract_event > event_type
Event type used by the copy class.
Definition copy.hpp:69
data::vector_view< TYPE >::size_type get_size(const data::vector_view< TYPE > &data) const
Helper function for getting the size of a resizable 1D buffer.
Definition copy.ipp:116
virtual void do_memset(std::size_t size, void *ptr, int value) const
Perform a "low level" memory filling operation.
Definition copy.cpp:40
virtual VECMEM_NODISCARD event_type create_event() const
Create an event for synchronization.
Definition copy.cpp:50
std::vector< typename data::vector_view< TYPE >::size_type > get_sizes(const data::jagged_vector_view< TYPE > &data) const
Helper function for getting the sizes of a resizable jagged vector.
Definition copy.ipp:271
VECMEM_NODISCARD event_type memset(data::vector_view< TYPE > data, int value) const
Set all bytes of the vector to some value.
data::vector_buffer< std::remove_cv_t< TYPE > > to(const data::vector_view< TYPE > &data, memory_resource &resource, type::copy_type cptype=type::unknown) const
Copy a 1-dimensional vector to the specified memory resource.
Definition copy.ipp:66
Object owning all the data of a jagged vector.
Definition jagged_vector_buffer.hpp:30
typename base_type::value_type value_type
Use the base class's value_type.
Definition jagged_vector_buffer.hpp:38
A view for jagged vectors.
Definition jagged_vector_view.hpp:44
VECMEM_HOST_AND_DEVICE pointer host_ptr() const
Access the host accessible array describing the inner vectors.
Definition jagged_vector_view.ipp:102
std::size_t size_type
We cannot use boolean types.
Definition jagged_vector_view.hpp:52
VECMEM_HOST_AND_DEVICE pointer ptr() const
Get a pointer to the vector elements.
Definition jagged_vector_view.ipp:96
VECMEM_HOST_AND_DEVICE size_type size() const
Get the "outer" size of the jagged vector.
Definition jagged_vector_view.ipp:83
Object owning the data held by it.
Definition vector_buffer.hpp:29
typename base_type::size_type size_type
Size type definition coming from the base class.
Definition vector_buffer.hpp:35
Class holding data about a 1 dimensional vector/array.
Definition vector_view.hpp:38
unsigned int size_type
We cannot use boolean types.
Definition vector_view.hpp:47
VECMEM_HOST_AND_DEVICE size_pointer size_ptr() const
Get a pointer to the size of the vector.
Definition vector_view.ipp:84
VECMEM_HOST_AND_DEVICE size_type capacity() const
Get the maximum capacity of the vector.
Definition vector_view.ipp:78
VECMEM_HOST_AND_DEVICE size_type size() const
Get the size of the vector.
Definition vector_view.ipp:72
Technical base type for view<schema<VARTYPES...>>
Definition view.hpp:28
void resize_jagged_vector(std::vector< std::vector< T, ALLOC1 >, ALLOC2 > &vec, std::size_t size)
Resize a generic jagged vector.
Definition resize_jagged_vector.hpp:23
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
VECMEM_HOST data::vector_view< T > get_data(array< T, N > &a)
Helper function creating a vecmem::data::vector_view object.
Definition array.ipp:217
copy_type
Types of memory copies to handle.
Definition copy.hpp:52
@ device_to_host
Copy operation between a device and the host.
Definition copy.hpp:56
@ device_to_device
Copy operation between two devices.
Definition copy.hpp:60
@ unknown
Unknown copy type, determined at runtime.
Definition copy.hpp:62
@ host_to_host
Copy operation on the host.
Definition copy.hpp:58
@ host_to_device
Copy operation between the host and a device.
Definition copy.hpp:54
Meta type describing the "schema" of an SoA container.
Definition schema.hpp:46
Definition schema_traits.hpp:82