MCPcopy Create free account
hub / github.com/MegEngine/MegEngine / megcoreMemcpy

Function megcoreMemcpy

dnn/src/common/megcore/public_api/computing.cpp:39–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37}
38
39megcoreStatus_t megcoreMemcpy(
40 megcoreComputingHandle_t handle, void* dst, const void* src, size_t sizeInBytes,
41 megcoreMemcpyKind_t kind) {
42 megdnn_assert(handle);
43 handle->content->memcpy(dst, src, sizeInBytes, kind);
44 return megcoreSuccess;
45}
46
47megcoreStatus_t megcoreMemset(
48 megcoreComputingHandle_t handle, void* dst, int value, size_t sizeInBytes) {

Callers 5

TEST_FFunction · 0.85
megdnn_memcpy_internalFunction · 0.85
TESTFunction · 0.85
TEST_FFunction · 0.85
execMethod · 0.85

Calls 1

memcpyMethod · 0.45

Tested by 4

TEST_FFunction · 0.68
megdnn_memcpy_internalFunction · 0.68
TESTFunction · 0.68
TEST_FFunction · 0.68