Hey guys,
I'm setting up a box with Ubuntu 10.4 (previously was running 11.04 but ran into too many issues) along with a Radeon 6990. I'm having some issues presumably getting OpenCL to see the GPUs.
I have Catalyst 11.4 installed and SDK 2.4 installed at /opt/AMD-APP-SDK-v2.4-lnx32/
fglrxinfo gives the following:
display: :0.0 screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: AMD Radeon HD 6990
OpenGL version string: 4.1.10666 Compatibility Profile Context
display: :0.0 screen: 1
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: AMD Radeon HD 6990
OpenGL version string: 4.1.10666 Compatibility Profile Context
SDK 2.4 doesn't seem to have CLInfo in bin/, but 2.1 and 2.3 did, and it did not show any GPUs, just the CPU.
The output of the bitcoinpool poclb-mod.py script shows this issue as well:
$ python poclbm-mod.py
#########################################################################
# BitcoinPool.Com Custom Miner -
#
# Visit http://www.bitcoinpool.com to register for a free account.
# Then use the following commandline to start mining, just replace
# the username and password with your own, and choose your device
# from the list below:
#
# poclbm-mod.exe --user=USERNAME --pass=PASSWORD -d #
#
# You must specify a device. Use -d to specify one of the following:
#
# [0] AMD Athlon(tm) II X2 260 Processor
#
# Use the --help flag for more options.
#########################################################################
Any idea on what is going on? I'm assuming it is an issue with OpenCL or the 2.4 SDK detecting the card, but I'm out of ideas..
My xorg.conf:
cat /etc/X11/xorg.conf
Section "ServerLayout"
Identifier "aticonfig Layout"
Screen 0 "aticonfig-Screen[0]-0" 0 0
Screen "aticonfig-Screen[1]-0" RightOf "aticonfig-Screen[0]-0"
EndSection
Section "Module"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[1]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:7:0:0"
EndSection
Section "Device"
Identifier "aticonfig-Device[1]-0"
Driver "fglrx"
BusID "PCI:6:0:0"
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "aticonfig-Screen[1]-0"
Device "aticonfig-Device[1]-0"
Monitor "aticonfig-Monitor[1]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Thanks!