"git@developer.sourcefind.cn:change/sglang.git" did not exist on "769bf11c05209a1cc08ac8c5180f1e4da68ba21f"
tensor_serialize.cc 1.6 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
49
50
51
52
53
54
55
/*!
 *  Copyright (c) 2019 by Contributors
 * \file graph/serialize/tensor_serialize.cc
 * \brief Graph serialization implementation
 */
#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;

DGL_REGISTER_GLOBAL("data.tensor_serialize._CAPI_SaveNDArrayDict")
  .set_body([](DGLArgs args, DGLRetValue *rv) {
    std::string filename = args[0];
    Map<std::string, Value> nd_dict = args[1];
    std::vector<NamedTensor> namedTensors;
    for (auto kv : nd_dict) {
      NDArray ndarray = static_cast<NDArray>(kv.second->data);
      namedTensors.emplace_back(kv.first, ndarray);
    }
    auto *fs = dynamic_cast<SeekStream *>(
      SeekStream::Create(filename.c_str(), "w", true));
    fs->Write(namedTensors);
    delete fs;
    *rv = true;
  });

DGL_REGISTER_GLOBAL("data.tensor_serialize._CAPI_LoadNDArrayDict")
  .set_body([](DGLArgs args, DGLRetValue *rv) {
    std::string filename = args[0];
    Map<std::string, Value> nd_dict;
    std::vector<NamedTensor> namedTensors;
    SeekStream *fs = SeekStream::CreateForRead(filename.c_str(), true);
    CHECK(fs) << "Filename is invalid or file doesn't exists";
    fs->Read(&namedTensors);
    for (auto kv : namedTensors) {
      Value ndarray = Value(MakeValue(kv.second));
      nd_dict.Set(kv.first, ndarray);
    }
    delete fs;
    *rv = nd_dict;
  });

}  // namespace serialize
}  // namespace dgl