forked from dftfeDevelopers/dftfe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemoryTransferKernelsDevice.cc
More file actions
53 lines (46 loc) · 1.42 KB
/
MemoryTransferKernelsDevice.cc
File metadata and controls
53 lines (46 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// ---------------------------------------------------------------------
//
// Copyright (c) 2017-2022 The Regents of the University of Michigan and DFT-FE
// authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
/*
* @author Sambit Das.
*/
#ifdef DFTFE_WITH_DEVICE
# include <MemoryTransferKernelsDevice.h>
# include <DeviceAPICalls.h>
namespace dftfe
{
namespace utils
{
namespace memoryTransferKernelsDevice
{
void
deviceMemcpyD2H(void *dst, const void *src, std::size_t count)
{
dftfe::utils::deviceMemcpyD2H(dst, src, count);
}
void
deviceMemcpyH2D(void *dst, const void *src, std::size_t count)
{
dftfe::utils::deviceMemcpyH2D(dst, src, count);
}
void
deviceMemcpyD2D(void *dst, const void *src, std::size_t count)
{
dftfe::utils::deviceMemcpyD2D(dst, src, count);
}
} // namespace memoryTransferKernelsDevice
} // namespace utils
} // namespace dftfe
#endif