Skip to content

Commit

Permalink
gpu - fix tidy error
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylt committed Jul 16, 2024
1 parent 5cea011 commit a46e152
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backends/cuda-ref/ceed-cuda-ref-operator.c
Original file line number Diff line number Diff line change
Expand Up @@ -1619,7 +1619,7 @@ static int CeedOperatorLinearAssembleAddDiagonalAtPoints_Cuda(CeedOperator op, C

// Mask output e-vec
{
CeedInt j = num_input_fields;
CeedInt j = 0;
CeedSize out_size;

CeedCallBackend(CeedVectorGetLength(impl->e_vecs[i + impl->num_inputs], &out_size));
Expand Down
2 changes: 1 addition & 1 deletion backends/hip-ref/ceed-hip-ref-operator.c
Original file line number Diff line number Diff line change
Expand Up @@ -1616,7 +1616,7 @@ static int CeedOperatorLinearAssembleAddDiagonalAtPoints_Hip(CeedOperator op, Ce

// Mask output e-vec
{
CeedInt j = num_input_fields;
CeedInt j = 0;
CeedSize out_size;

CeedCallBackend(CeedVectorGetLength(impl->e_vecs[i + impl->num_inputs], &out_size));
Expand Down

0 comments on commit a46e152

Please sign in to comment.