vecmem 1.14.0
Loading...
Searching...
No Matches
Public Types | List of all members
vecmem::copy::type Struct Reference

Wrapper struct around the copy_type enumeration. More...

#include <vecmem/utils/copy.hpp>

Public Types

enum  copy_type {
  host_to_device = 0 , device_to_host = 1 , host_to_host = 2 , device_to_device = 3 ,
  unknown = 4 , count = 5
}
 Types of memory copies to handle. More...
 

Detailed Description

Wrapper struct around the copy_type enumeration.

The code does not use "enum struct type" to declare the copy type, as that unnecessarily makes it hard to use these values as array indices in client code.

Member Enumeration Documentation

◆ copy_type

Types of memory copies to handle.

Enumerator
host_to_device 

Copy operation between the host and a device.

device_to_host 

Copy operation between a device and the host.

host_to_host 

Copy operation on the host.

device_to_device 

Copy operation between two devices.

unknown 

Unknown copy type, determined at runtime.

count 

The number of copy types, useful for technical reasons.


The documentation for this struct was generated from the following file: