Skip to content

Commit b21284b

Browse files
committed
fix lint
1 parent 18531e0 commit b21284b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

superbench/benchmarks/micro_benchmarks/gpu_stream/gpu_stream.cu

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -713,8 +713,7 @@ int GpuStream::Run() {
713713
// honour CUDA_VISIBLE_DEVICES.
714714
{
715715
using NvmlGetNumaNodeId_t = nvmlReturn_t (*)(nvmlDevice_t, unsigned int *);
716-
auto nvmlGetNumaNodeId = reinterpret_cast<NvmlGetNumaNodeId_t>(
717-
dlsym(RTLD_DEFAULT, "nvmlDeviceGetNumaNodeId"));
716+
auto nvmlGetNumaNodeId = reinterpret_cast<NvmlGetNumaNodeId_t>(dlsym(RTLD_DEFAULT, "nvmlDeviceGetNumaNodeId"));
718717
if (nvmlGetNumaNodeId != nullptr) {
719718
char pci_bus_id[16];
720719
cudaError_t cuda_err = cudaDeviceGetPCIBusId(pci_bus_id, sizeof(pci_bus_id), 0);

0 commit comments

Comments
 (0)