Skip to content

Commit 29644ef

Browse files
committed
GPU (Linux): disable vmem detection
Ref #816
1 parent 39dfcb6 commit 29644ef

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/detection/gpu/gpu_linux.c

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,12 @@ static const char* detectPci(const FFGPUOptions* options, FFlist* gpus, FFstrbuf
186186
ffGPUParsePciIds(&pciids, subclassId, (uint16_t) vendorId, (uint16_t) deviceId, gpu);
187187
}
188188

189-
pciDetectVmem(gpu, drmDir, buffer);
190-
ffStrbufSubstrBefore(drmDir, drmDirPathLength);
189+
// Temporarily disabled for now #816
190+
if (false)
191+
{
192+
pciDetectVmem(gpu, drmDir, buffer);
193+
ffStrbufSubstrBefore(drmDir, drmDirPathLength);
194+
}
191195

192196
pciDetectVfreq(gpu, drmDir, buffer);
193197
ffStrbufSubstrBefore(drmDir, drmDirPathLength);

0 commit comments

Comments
 (0)