Skip to content

Commit

Permalink
update with files
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Apr 25, 2023
1 parent 07e800c commit e281fba
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions include/neighbor_utils.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -2105,8 +2105,11 @@ void SAG_host_UVM_updated(float* d_out,
{

// d_output, d_input, d_row_ptr, d_col_ind, lb_src, ub_src, dim.
const int partSize = 2;
const int warpPerBlock = 32;
// const int partSize = 2;
// const int warpPerBlock = 32;

const int partSize = 16;
const int warpPerBlock = 1;

const nidType block = warpPerBlock * WARP_SIZE;
const nidType grid = ub_src - lb_src;
Expand Down Expand Up @@ -2145,8 +2148,10 @@ void GIN_host_UVM_updated(float* d_out,
{

// d_output, d_input, d_row_ptr, d_col_ind, lb_src, ub_src, dim.
const int partSize = 2;
const int warpPerBlock = 32;
// const int partSize = 2;
// const int warpPerBlock = 32;
const int partSize = 32;
const int warpPerBlock = 1;

const nidType block = warpPerBlock * WARP_SIZE;
const nidType grid = ub_src - lb_src;
Expand Down

0 comments on commit e281fba

Please sign in to comment.