module_util.cc 1.61 KB
Newer Older
Minjie Wang's avatar
Minjie Wang committed
1
2
3
4
5
6
7
8
9
10
/*!
 *  Copyright (c) 2017 by Contributors
 * \file module_util.cc
 * \brief Utilities for module.
 */
#ifndef _LIBCPP_SGX_CONFIG
#include <dmlc/memory_io.h>
#endif
#include <dgl/runtime/module.h>
#include <dgl/runtime/registry.h>
11

12
#include <memory>
13
14
#include <string>

Minjie Wang's avatar
Minjie Wang committed
15
16
#include "module_util.h"

17
namespace dgl {
Minjie Wang's avatar
Minjie Wang committed
18
19
20
21
22
23
24
25
namespace runtime {

void ImportModuleBlob(const char* mblob, std::vector<Module>* mlist) {
#ifndef _LIBCPP_SGX_CONFIG
  CHECK(mblob != nullptr);
  uint64_t nbytes = 0;
  for (size_t i = 0; i < sizeof(nbytes); ++i) {
    uint64_t c = mblob[i];
26
    nbytes |= (c & 0xffUL) << (i * 8);
Minjie Wang's avatar
Minjie Wang committed
27
28
29
30
31
32
33
34
35
36
37
  }
  dmlc::MemoryFixedSizeStream fs(
      const_cast<char*>(mblob + sizeof(nbytes)), static_cast<size_t>(nbytes));
  dmlc::Stream* stream = &fs;
  uint64_t size;
  CHECK(stream->Read(&size));
  for (uint64_t i = 0; i < size; ++i) {
    std::string tkey;
    CHECK(stream->Read(&tkey));
    std::string fkey = "module.loadbinary_" + tkey;
    const PackedFunc* f = Registry::Get(fkey);
38
39
    CHECK(f != nullptr) << "Loader of " << tkey << "(" << fkey
                        << ") is not presented.";
Minjie Wang's avatar
Minjie Wang committed
40
41
42
43
44
45
46
47
    Module m = (*f)(static_cast<void*>(stream));
    mlist->push_back(m);
  }
#else
  LOG(FATAL) << "SGX does not support ImportModuleBlob";
#endif
}

48
49
PackedFunc WrapPackedFunc(
    BackendPackedCFunc faddr, const std::shared_ptr<ModuleNode>& sptr_to_self) {
50
  return PackedFunc([faddr, sptr_to_self](DGLArgs args, DGLRetValue* rv) {
51
52
53
54
55
    int ret = (*faddr)(
        const_cast<DGLValue*>(args.values), const_cast<int*>(args.type_codes),
        args.num_args);
    CHECK_EQ(ret, 0) << DGLGetLastError();
  });
Minjie Wang's avatar
Minjie Wang committed
56
57
58
}

}  // namespace runtime
59
}  // namespace dgl