-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcsr_graph.cpp
61 lines (49 loc) · 1.86 KB
/
csr_graph.cpp
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
56
57
58
59
60
61
// Copyright 2019 Lawrence Livermore National Security, LLC and other Metall
// Project Developers. See the top-level COPYRIGHT file for details.
//
// SPDX-License-Identifier: (Apache-2.0 OR MIT)
#include <iostream>
#include <metall/metall.hpp>
#include "graph_data_structure/csr.hpp"
#include "graph_data_structure/csr_using_vector.hpp"
using index_t = uint64_t;
using vid_t = uint64_t;
// We have two CSR graph data structures that have the same interfaces
#if 0
using csr_graph_t = csr<index_t, vid_t, metall::manager::allocator_type<char>>;
#else
using csr_graph_t =
csr_using_vector<index_t, vid_t, metall::manager::allocator_type<char>>;
#endif
int main() {
{
// Create a new Metall datastore in "/tmp/dir"
// If 'dir' does not exist, Metall creates automatically
metall::manager manager(metall::create_only, "/tmp/dir");
std::size_t num_vertices = 16;
std::size_t num_edges = 256;
// Allocate and construct an object in the persistent memory with a name
// "csr_graph"
csr_graph_t *csr_graph = manager.construct<csr_graph_t>("csr_graph")(
num_vertices, num_edges,
manager.get_allocator()); // Arguments to the constructor
// You can use the arrays normally
index_t *indices_array = csr_graph->indices();
vid_t *edges_array = csr_graph->edges();
edges_array[indices_array[1]++] = 10;
}
{
// Open the existing Metall datastore in "/tmp/dir"
metall::manager manager(metall::open_read_only, "/tmp/dir");
csr_graph_t *csr_graph = manager.find<csr_graph_t>("csr_graph").first;
if (!csr_graph) {
std::cerr << "Object csr_graph does not exist" << std::endl;
std::abort();
}
// You can use the arrays normally
index_t *indices_array = csr_graph->indices();
vid_t *edges_array = csr_graph->edges();
std::cout << edges_array[indices_array[0]] << std::endl;
}
return 0;
}