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

Method memcpy

dnn/src/common/megcore/cpu/default_computing_context.cpp:39–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37DefaultComputingContext::~DefaultComputingContext() noexcept = default;
38
39void DefaultComputingContext::memcpy(
40 void* dst, const void* src, size_t size_in_bytes,
41 megcoreMemcpyKind_t /* kind */) {
42 ::memcpy(dst, src, size_in_bytes);
43}
44
45void DefaultComputingContext::memset(void* dst, int value, size_t size_in_bytes) {
46 ::memset(dst, value, size_in_bytes);

Callers 1

megcoreMemcpyFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected