Subway
Subway copied to clipboard
Out-of-GPU-Memory Graph Processing with Minimal Data Transfer
In the master branch the graph edge number is limited to uint32. In this pull request, 1) change all nodePointer to ull (unsigned long long (64-bit)) 2) change all node...
On line 75 in `subgraph_generator.cu`, `ceil()` is useless with integer division. Should be `unsigned int chunkSize = (unsigned int)ceil((double)numActiveNodes / numThreads);` Results in not copying some data to the edge...
Hi, Throughout your entire code, you use `uint` to represent your pointers to the edges. I was attempting to preprocess an RMAT dataset similar to how you have in the...
little bug
After running with a simple graph,a segmentation fault occurred check the graph.cu I found that in line 156 ```cuda uint *outDegreeCounter = new uint[num_nodes]; uint location; for(uint i=0; i
error
After make, run the instruction. / bfs-sync -- input. / edge_ 875713.el The tips are as follows: Reading the input graph from the following file: ./edge_875713.el Done reading. Number of...