ThunderSVM
ThunderSVM: An Open-Source SVM Library on GPUs and CPUs
syncmem.h
1 //
2 // Created by jiashuai on 17-9-16.
3 //
4 
5 #ifndef THUNDERSVM_SYNCMEM_H
6 #define THUNDERSVM_SYNCMEM_H
7 
8 #include <thundersvm/thundersvm.h>
9 
10 namespace thunder {
11  inline void malloc_host(void **ptr, size_t size) {
12 #ifdef USE_CUDA
13  CUDA_CHECK(cudaMallocHost(ptr, size));
14 #else
15  *ptr = malloc(size);
16 #endif
17  }
18 
19  inline void free_host(void *ptr) {
20 #ifdef USE_CUDA
21  CUDA_CHECK(cudaFreeHost(ptr));
22 #else
23  free(ptr);
24 #endif
25  }
26 
27  inline void device_mem_copy(void *dst, const void *src, size_t size) {
28 #ifdef USE_CUDA
29  CUDA_CHECK(cudaMemcpy(dst, src, size, cudaMemcpyDefault));
30 #else
31  NO_GPU;
32 #endif
33  }
34 
38  class SyncMem {
39  public:
40  SyncMem();
41 
47  explicit SyncMem(size_t size);
48 
49  ~SyncMem();
50 
52  void *host_data();
53 
55  void *device_data();
56 
61  void set_host_data(void *data);
62 
67  void set_device_data(void *data);
68 
70  void to_host();
71 
73  void to_device();
74 
76  size_t size() const;
77 
79  enum HEAD {
80  HOST, DEVICE, UNINITIALIZED
81  };
82 
83  HEAD head() const;
84 
85  private:
86  void *device_ptr;
87  void *host_ptr;
88  bool own_device_data;
89  bool own_host_data;
90  size_t size_;
91  HEAD head_;
92  };
93 }
94 using thunder::SyncMem;
95 #endif //THUNDERSVM_SYNCMEM_H
void set_device_data(void *data)
Definition: syncmem.cpp:114
Definition: syncmem.h:10
size_t size() const
return the size of memory
Definition: syncmem.cpp:46
void * host_data()
return raw host pointer
Definition: syncmem.cpp:32
void to_device()
transfer data to device
Definition: syncmem.cpp:79
void * device_data()
return raw device pointer
Definition: syncmem.cpp:37
void set_host_data(void *data)
Definition: syncmem.cpp:104
HEAD
to determine the where the newest data locates in
Definition: syncmem.h:79
void to_host()
transfer data to host
Definition: syncmem.cpp:54
Auto-synced memory for CPU and GPU.
Definition: syncmem.h:38