Conversation
|
Thank you very much for your PR. Very much appreciated. Please note that the online database does not support MacOS, so before I merge this I need to add support for it to the database first. Since I don't own any Apple devices I need the values for the platform identification. Can you export a JSON file from your device and attach it to this PR? Btw. : Is OpenCL still supported on Apple devices? I was under the impression that Apple abandoned it. |
It is deprecated, but works ok as far as I can tell. |
|
Thanks for the report. In order to make this work properly (with the database), you need to adjust the In the Vulkan Caps Viewer I do it like this: #if defined(VK_USE_PLATFORM_MACOS_MVK)
osInfo.type = 3;
#endif
#if defined(VK_USE_PLATFORM_IOS_MVK)
osInfo.type = 4;
#endifCan you add that to the PR? So that it sets |
|
I used slightly different method, but seems to work, at least on macOS; haven't tested with iOS. Updated JSON: m1.json |
Checked on M1 Mac Mini, macOS Sonoma, GUI and CLI
|
submitted M4 result using this PR.. https://opencl.gpuinfo.org/displayreport.php?id=4967 but needed 2 minor patches, due to using latest opencl headers version (2024.10.24)..
installs:
so I build with:
1)first patch it's due to removal of external mem dx cl extensions.. 2)second patch due to:
these enums are in cl_gl.h now.. if not fails compilation with: patch 1: patch 2: |
|
update: OCL ICD support: https://opencl.gpuinfo.org/displayreport.php?id=4968 replicate: |
|
now last report on osx.. now pointing to search for: |
Checked on M1 Mac Mini, macOS Sonoma, GUI and CLI