MCPcopy Create free account
hub / github.com/ROCm/AMDMIGraphX / load

Function load

src/load_save.cpp:34–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32inline namespace MIGRAPHX_INLINE_NS {
33
34program load(const std::string& filename, const file_options& options)
35{
36 return load_buffer(read_buffer(filename), options);
37}
38program load_buffer(const std::vector<char>& buffer, const file_options& options)
39{
40 return load_buffer(buffer.data(), buffer.size(), options);

Callers 4

TEST_CASEFunction · 0.50
verify_load_saveFunction · 0.50
TEST_CASEFunction · 0.50
mainFunction · 0.50

Calls 2

load_bufferFunction · 0.85
read_bufferFunction · 0.85

Tested by 1

TEST_CASEFunction · 0.40