tensor_serialize.cc 2.17 KB
Newer Older
1
/**
2
 *  Copyright (c) 2019 by Contributors
3
4
 * @file graph/serialize/tensor_serialize.cc
 * @brief Graph serialization implementation
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 */
#include <dgl/packed_func_ext.h>
#include <dgl/runtime/container.h>
#include <dgl/runtime/ndarray.h>
#include <dgl/runtime/object.h>
#include <dmlc/io.h>

#include "../../c_api_common.h"

using namespace dgl::runtime;
using dmlc::SeekStream;

namespace dgl {
namespace serialize {

typedef std::pair<std::string, NDArray> NamedTensor;

22
23
constexpr uint64_t kDGLSerialize_Tensors = 0xDD5A9FBE3FA2443F;

24
DGL_REGISTER_GLOBAL("data.tensor_serialize._CAPI_SaveNDArrayDict")
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
    .set_body([](DGLArgs args, DGLRetValue *rv) {
      std::string filename = args[0];
      auto fs = std::unique_ptr<dmlc::Stream>(
          dmlc::Stream::Create(filename.c_str(), "w"));
      CHECK(fs) << "Filename is invalid";
      fs->Write(kDGLSerialize_Tensors);
      bool empty_dict = args[2];
      Map<std::string, Value> nd_dict;
      if (!empty_dict) {
        nd_dict = args[1];
      }
      std::vector<NamedTensor> namedTensors;
      fs->Write(static_cast<uint64_t>(nd_dict.size()));
      for (auto kv : nd_dict) {
        NDArray ndarray = static_cast<NDArray>(kv.second->data);
        namedTensors.emplace_back(kv.first, ndarray);
      }
      fs->Write(namedTensors);
      *rv = true;
    });
45
46

DGL_REGISTER_GLOBAL("data.tensor_serialize._CAPI_LoadNDArrayDict")
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
    .set_body([](DGLArgs args, DGLRetValue *rv) {
      std::string filename = args[0];
      auto fs = std::unique_ptr<dmlc::Stream>(
          dmlc::Stream::Create(filename.c_str(), "r"));
      CHECK(fs) << "Filename is invalid or file doesn't exists";
      uint64_t magincNum, num_elements;
      CHECK(fs->Read(&magincNum)) << "Invalid file";
      CHECK_EQ(magincNum, kDGLSerialize_Tensors) << "Invalid DGL tensor file";
      CHECK(fs->Read(&num_elements)) << "Invalid num of elements";
      Map<std::string, Value> nd_dict;
      std::vector<NamedTensor> namedTensors;
      fs->Read(&namedTensors);
      for (auto kv : namedTensors) {
        Value ndarray = Value(MakeValue(kv.second));
        nd_dict.Set(kv.first, ndarray);
      }
      *rv = nd_dict;
    });
65
66
67

}  // namespace serialize
}  // namespace dgl