cuhornet
cuhornet copied to clipboard
I am unable to build, even in Release mode. These are the commands I used: ``` cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CUDA_ARCHITECTURES="70" .. make ``` And then make throws this error: ``` [...
Thanks for your great work! I read throw the batchUpdate functions. I'm confused about the following facts: 1. Does hornet keeps the nodes inside each chunk sorted? If so, why...
Hi, I downloaded the repo from the master and I'm encountering the following problems when using the bfs2 algorithm. The first one is a problem with the binary search load...
Hi, I have downloaded the repo from master and i have noticed that multiple tests are not working in my system. I am using an RTX3060 12GB, CUDA version 11.8,...
Hi I am currently working on Dynamic PageRank, but am encountering problems in using it, which are listed as follows: 1. Initially I created a file PageRankDynamic.cu in the test...
Added a new load-balancing mechanism that is needed for several applications. LRB offers comparable performance to the existing load-balancing mechanisms in Hornet. For BFS with 10 different roots: soc-LiveJournal1.mtx LRB...
SCC deletes portions of the graph recursively. Since we don't want to modify the original graph, we need to make a copy. Hornet doesn't have a copy constructor right now....
The following do not work: 1. Idempotence: G.delete(batch); G.delete(batch); 2. Reuse: G1.insert(batch); G2.insert(batch); If you want to delete some edges from a graph and insert them into a new graph,...