Skip to content

Commit f0f0e83

Browse files
authored
Merge pull request #1756 from CEED/jeremy/shame-on-me
hip - fix bug, need to actually get kernels
2 parents 8f30862 + a877229 commit f0f0e83

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

backends/hip-shared/ceed-hip-shared-basis.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,10 @@ static int CeedBasisApplyAtPointsCore_Hip_shared(CeedBasis basis, bool apply_add
360360
data->block_sizes[0]));
361361
CeedCallBackend(CeedGetKernel_Hip(ceed, data->moduleAtPoints, "InterpAtPoints", &data->InterpAtPoints));
362362
CeedCallBackend(CeedGetKernel_Hip(ceed, data->moduleAtPoints, "InterpTransposeAtPoints", &data->InterpTransposeAtPoints));
363+
CeedCallBackend(CeedGetKernel_Hip(ceed, data->moduleAtPoints, "InterpTransposeAddAtPoints", &data->InterpTransposeAddAtPoints));
363364
CeedCallBackend(CeedGetKernel_Hip(ceed, data->moduleAtPoints, "GradAtPoints", &data->GradAtPoints));
364365
CeedCallBackend(CeedGetKernel_Hip(ceed, data->moduleAtPoints, "GradTransposeAtPoints", &data->GradTransposeAtPoints));
366+
CeedCallBackend(CeedGetKernel_Hip(ceed, data->moduleAtPoints, "GradTransposeAddAtPoints", &data->GradTransposeAddAtPoints));
365367
}
366368

367369
// Get read/write access to u, v

0 commit comments

Comments
 (0)