module_util.cc 1.64 KB
Newer Older
Minjie Wang's avatar
Minjie Wang committed
1
2
3
4
5
6
7
8
9
10
11
/*!
 *  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>
#include <string>
12
#include <memory>
Minjie Wang's avatar
Minjie Wang committed
13
14
#include "module_util.h"

15
namespace dgl {
Minjie Wang's avatar
Minjie Wang committed
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
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];
    nbytes |=  (c & 0xffUL) << (i * 8);
  }
  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);
    CHECK(f != nullptr)
        << "Loader of " << tkey << "("
        << fkey << ") is not presented.";
    Module m = (*f)(static_cast<void*>(stream));
    mlist->push_back(m);
  }
#else
  LOG(FATAL) << "SGX does not support ImportModuleBlob";
#endif
}

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

}  // namespace runtime
59
}  // namespace dgl