Skip to content

Commit

Permalink
added function call
Browse files Browse the repository at this point in the history
  • Loading branch information
qinatan committed Oct 20, 2023
1 parent 643f4e0 commit 3327150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solver/linear_solver.cu
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ __global__ void SolveKernel(SolveDevice* device)

//kernel call
size_t num_block = (denseMatrix.n_grids_ + BLOCK_SIZE - 1) / BLOCK_SIZE;
AddForcingTermsKernel<<<num_block, BLOCK_SIZE>>>(device);
Solve<<<num_block, BLOCK_SIZE>>>(device);
cudaDeviceSynchronize();

//clean up
Expand Down

0 comments on commit 3327150

Please sign in to comment.