Skip to content

Commit

Permalink
revert some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcosborn committed Dec 13, 2024
1 parent 21d2cad commit f9a551a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/kernels/unitarize_force.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ namespace quda {
if (perform_svd) {
Matrix<complex<Float>, 3> tmp2;
// compute the eigenvalues using the singular value decomposition
computeSVD<Float>(q,tempq,tmp2,g);
computeSVD<Float>(q,tempq,tmp2,g);
// The array g contains the eigenvalues of the matrix q
// The determinant is the product of the eigenvalues, and I can use this
// to check the SVD
Expand Down
2 changes: 1 addition & 1 deletion include/targets/cuda/shared_memory_helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ namespace quda
/**
@brief Return this SharedMemory object.
*/
__device__ __host__ constexpr auto sharedMem() const { return *this; }
constexpr auto sharedMem() const { return *this; }

/**
@brief Subscripting operator returning a reference to element.
Expand Down
2 changes: 1 addition & 1 deletion include/targets/hip/shared_memory_helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ namespace quda
/**
@brief Return this SharedMemory object.
*/
__device__ __host__ constexpr auto sharedMem() const { return *this; }
constexpr auto sharedMem() const { return *this; }

/**
@brief Subscripting operator returning a reference to element.
Expand Down

0 comments on commit f9a551a

Please sign in to comment.