We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@asherliu in https://github.com/iHeartGraph/iBFS/blob/master/inspector.cuh#L118,
depth_merge[wid*vec_sz*num_agg_bfs+i*num_agg_bfs+j*vec_sz+LANE]=LEVEL;
the depth_merge is allocated in Allocator.cuh with const size_t merge_depth_sz = sizeof(depth_t)*vert_count*num_agg_bfs;
const size_t merge_depth_sz = sizeof(depth_t)*vert_count*num_agg_bfs;
I cannot get the relation with the depth_merge index and whole size, especially variable j in the loop, which is from 0 to 3. for(int j=0;j<4;j++)
for(int j=0;j<4;j++)
And another question, why each vertex need uint4 data type for status check?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@asherliu in https://github.com/iHeartGraph/iBFS/blob/master/inspector.cuh#L118,
depth_merge[wid*vec_sz*num_agg_bfs+i*num_agg_bfs+j*vec_sz+LANE]=LEVEL;
the depth_merge is allocated in Allocator.cuh with
const size_t merge_depth_sz = sizeof(depth_t)*vert_count*num_agg_bfs;
I cannot get the relation with the depth_merge index and whole size, especially variable j in the loop, which is from 0 to 3.
for(int j=0;j<4;j++)
And another question, why each vertex need uint4 data type for status check?
The text was updated successfully, but these errors were encountered: