Skip to content

Commit

Permalink
...EJB
Browse files Browse the repository at this point in the history
  • Loading branch information
ebylaska committed Apr 29, 2024
1 parent ab41f9b commit 021058a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Nwpw/nwpwlib/device/gdevices_cuda.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ class Gdevices {
**************************************/
int fetch_dev_mem_indx_large(const size_t ndsize0, const int size_t ndsize1)
{
const size_t ndsize = (ndsize0>ndsize1) ? ndsize0 : ndsize1;
size_t ndsize = (ndsize0>ndsize1) ? ndsize0 : ndsize1;

int ii = 0;
while ((((ndsize != ndsize_mem_large[ii]) || inuse_large[ii])) && (ii < ndev_mem_large))
Expand Down

0 comments on commit 021058a

Please sign in to comment.