Skip to content

Commit

Permalink
Fix return type of UID func
Browse files Browse the repository at this point in the history
  • Loading branch information
mlxd committed Aug 8, 2024
1 parent c834d90 commit 6822e08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ template <typename DeviceIndexType = int> class DevicePool {
*
* @return std::vector<cudaUUID_t>
*/
static std::vector<cudaUUID_t> getDeviceUIDs() {
static std::vector<std::string> getDeviceUIDs() {
int deviceCount;
cudaGetDeviceCount(&deviceCount);
int device;
Expand Down

0 comments on commit 6822e08

Please sign in to comment.