We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0acf16 commit 8b1ee64Copy full SHA for 8b1ee64
CHANGELOG.md
@@ -14,6 +14,7 @@ Bugfixes:
14
* Silence warnings when building in 32bit machines.
15
* Create sub folders when writing config file (#690)
16
* Improve user specific locale detection; fix locale detection in Windows 7 (Locale)
17
+* Fix GPU type detection (GPU, macOS)
18
19
# 2.6.0
20
src/detection/gpu/gpu_apple.m
@@ -32,7 +32,7 @@
32
else if ([device supportsFamily:MTLGPUFamilyCommon1])
33
ffStrbufSetStatic(&gpu->platformApi, "Metal Common 1");
34
35
- if (gpu->type == device.hasUnifiedMemory)
+ if (device.hasUnifiedMemory)
36
{
37
gpu->type = FF_GPU_TYPE_INTEGRATED;
38
gpu->shared.total = device.recommendedMaxWorkingSetSize;
0 commit comments