我已经阅读了此链接-https://wiki.debian.org/ru/atihowtoto并决定设置OPENCL。
R600G驱动程序仍然必须将专有微型码加载到GPU中 启用硬件加速度。该固件通常包含在 内核,但在Debian中分别包装。
所以,我安装了固件:
# apt-show-versions firmware-linux-nonfree firmware-linux
firmware-linux-nonfree:all/sid 0.40 uptodate
firmware-linux:all/sid 0.40 uptodate
然后我升级内核版本:
uname -v
#1 SMP PREEMPT RT Debian 3.12.8-1 (2014-01-19)
并检查了内核标志:
grep DRM_RADEON /boot/config-$(uname -r)
CONFIG_DRM_RADEON=m
# CONFIG_DRM_RADEON_UMS is not set
grep AGP /boot/config-$(uname -r)
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=y
CONFIG_AGP_SIS=y
CONFIG_AGP_VIA=y
我还设置了XServer版本的最新版本:
# apt-show-versions xorg
xorg:amd64/sid 1:7.7+5 uptodate
我选择Radeon作为驱动程序:
您肯定正在使用Wheezy的Xserver-Xorg-core 再提供Xorg-video-abi-6.0,而Radeonhd也无法使用 较新的Xorg-Video-Abi,因为它已从Debian
中删除
# apt-show-versions xserver-xorg-video-radeon
xserver-xorg-video-radeon:amd64/sid 1:7.3.0-1 uptodate
这给我开放的工作:
$ glxinfo | grep OpenGL
OpenGL vendor string: X.Org
OpenGL renderer string: Gallium 0.4 on AMD RV770
OpenGL core profile version string: 3.1 (Core Profile) Mesa 10.1.0-devel (git-81144c0 saucy-oibaf-ppa+curaga)
OpenGL core profile shading language version string: 1.40
OpenGL core profile context flags: (none)
OpenGL core profile extensions:
OpenGL version string: 3.0 Mesa 10.1.0-devel (git-81144c0 saucy-oibaf-ppa+curaga)
OpenGL shading language version string: 1.30
OpenGL context flags: (none)
OpenGL extensions:
我正在尝试使用与opencl一起使用的应用程序。
此程序在CPU上运行正常:
$ mono scallion/bin/Debug/scallion.exe parallax
Cooking up some delicions scallions...
Putting 1 patterns into 1 buckets.
Using kernel optimized from file kernel.cl (Optimized4)
Using work group size 1
Compiling kernel... done.
LoopIteration:10 HashCount:167.77MH Speed:7.8MH/s Runtime:00:00:21
Predicted:19:38:20
Stopping and shutting down...
LoopIteration:11 HashCount:184.55MH Speed:7.8MH/s Runtime:00:00:23
Predicted:19:36:58 init: 2687ms / 1 (2687ms, 0.37/s)
generate key: 153ms / 6 (25.5ms, 39.22/s)
cpu precompute: 7ms / 6 (1.17ms, 857.14/s)
total without init: 23706ms / 1 (23706ms, 0.04/s)
set buffers: 0ms / 11 (0ms, 0/s)
write buffers: 0ms / 11 (0ms, 0/s)
read results: 23699ms / 11 (2154.45ms, 0.46/s)
check results: 0ms / 11 (0ms, 0/s)
7.78 million hashes per second
Stopping and shutting down...
,但我无法检测到GPU:
$ mono scallion/bin/Debug/scallion.exe
Usage: scallion [OPTIONS]+ regex [regex]+
Options:
-l, --listdevices Lists the devices that can be used.
-d, --device=VALUE Specifies the opencl device that should be used.
设备列表中没有GPU:
$ mono scallion/bin/Debug/scallion.exe -l
Id:0 Name:Intel(R) Core(TM)2 Quad CPU Q9650 @ 3.00GHz
PreferredGroupSizeMultiple:1 ComputeUnits:4 ClockFrequency:2000
MaxConstantBufferSize:65536 MaxConstantArgs:8 MaxMemAllocSize:2147483648
我无法找到有关如何设置OpenCL的说明:
apt-get install libclc-r600
apt-show-versions libclc-r600 ocl-icd-libopencl1
libclc-r600:all/saucy 0~git20140101-1~gd~s uptodate
ocl-icd-libopencl1:amd64/sid 2.1.3-2 uptodate
开始启动应用程序后,我会收到一个错误:
~/github.com/lachesis/scallion$ mono ./scallion/bin/Debug/scallion.exe -l
Unhandled Exception:
System.InvalidOperationException: ErrorCode:'-1001'
at scallion.CLDeviceInfo.CheckError (Int32 err) [0x00000] in :0
at scallion.CLDeviceInfo.GetPlatformIds () [0x00000] in :0
at scallion.CLDeviceInfo.GetDeviceIds () [0x00000] in :0
at scallion.CLRuntime.GetDevices () [0x00000] in :0
at scallion.Program.ListDevices () [0x00000] in :0
at scallion.Program.Main (System.String[] args) [0x00000] in :0
[ERROR] FATAL UNHANDLED EXCEPTION: System.InvalidOperationException:
ErrorCode:'-1001'
at scallion.CLDeviceInfo.CheckError (Int32 err) [0x00000] in :0
at scallion.CLDeviceInfo.GetPlatformIds () [0x00000] in :0
at scallion.CLDeviceInfo.GetDeviceIds () [0x00000] in :0
at scallion.CLRuntime.GetDevices () [0x00000] in :0
at scallion.Program.ListDevices () [0x00000] in :0
at scallion.Program.Main (System.String[] args) [0x00000] in :0
之后错误代码值在opencl.h中定义 看起来您的平台未正确配置。 cl_platform_not_found_khr(-1001)clgetPlatformids错误。 那是因为您确实有调度员,但没有实际的opencl驱动程序。"
sudo apt-get install libopencl1-mesa
$ find / -iname «libMesaOpenCL.so*» 2>/dev/null
/usr/lib/x86_64-linux-gnu/libMesaOpenCL.so
/usr/lib/x86_64-linux-gnu/libMesaOpenCL.so.1.0.0
/usr/lib/x86_64-linux-gnu/libMesaOpenCL.so.1
在配置文件中应该有
cat /etc/OpenCL/vendors/mesa.icd
libMesaOpenCL.so
错误是
fatal error: cannot open file '/usr/lib/clc/rv770-r600--.bc': No such file or directory
如何使此工作?
我最终启用了免费的OpenCL堆栈,并遇到了非常相似的问题。我将提供一些相关软件包的删节概述。
libopencl1-mesa
只是ICD运行时,它已加载到通用ocl-icd-libopencl1
中。然后,libopencl1-mesa
使用libclc
来处理OpenCL内核。使用LLVM芯片组特定的后端,libclc
生成说明。您缺少GPU芯片组特定的胶水,该由丢失的.bc
提供。这是非常简化的,但是对于这个问题就应该足够了,仍然有一个好的图将极大地帮助。
在您的特定示例中,.bc
的s将由libclc-r600
提供,但是我在此freedesktop.org galliumcompute页面上没有看到任何芯片组的"完成"。看来最低的芯片组是常绿(HD5000系列)。
*如果您在02-04-2014。 不确定'nonfree'驱动程序是否开放。 然后,如果您查看: 似乎使用了GALLIUM LLVM来渲染(不是本机GPU),因此不能保证,GPU会加速OpenGL。无论如何,如果您使用非免费驱动程序,我的建议是从AMD网站下载最新的驱动程序&使用它们而不是当前安装。 此外,最近的AMD App SDK(如果内存适合我,则从2.8开始),与GPU驱动程序分开,因此您可以尝试使用它而不是打开软件包。它至少可以在Ubuntu 12.04上使用(来自AMD网站的存储库 AMD App SDK的AMD驱动程序)OpenGL renderer string: Gallium 0.4 on AMD RV770