Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2013
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. Scott,
  2.  
  3. When you put the 3rd card in you are introducing new hardware.
  4.  
  5. Check if all your cards can be detected and then write configuration to /etc/X11/xorg.conf.
  6.  
  7. aticonfig --lsa [this will show only 2 cards]
  8. sudo aticonfig --adapter=all --initial [this will initialize all adapters]
  9.  
  10. If everything went fine, reboot the computer by “sudo reboot”.
  11.  
  12. After that, check if everything works:
  13.  
  14. sudo aticonfig --adapter=all --odgt
  15.  
  16. If you get something along the lines of "ERROR - X needs to be running to perform AMD Overdrive(TM) commands" because your SSH'd in, run these commands (which are in every tutorial out there)
  17.  
  18. export DISPLAY=:0
  19. export GPU_MAX_ALLOC_PERCENT=100
  20. export GPU_USE_SYNC_OBJECTS=1
  21.  
  22. miner@miner-001:~$ sudo aticonfig --adapter=all --odgt
  23.  
  24. Default Adapter - AMD Radeon R9 290 Series
  25. Sensor: Temperature - 41.00 C
  26.  
  27. Default Adapter - AMD Radeon R9 290 Series
  28. Sensor: Temperature - 41.00 C
  29.  
  30.  
  31. Now, when you're this far, you should be able to run cgminer -n and get the 3 cards.
  32.  
  33. miner@miner-001:~/cgminer$ ./cgminer -n
  34. [2013-12-22 16:59:50] CL Platform 0 vendor: Advanced Micro Devices, Inc.
  35. [2013-12-22 16:59:50] CL Platform 0 name: AMD Accelerated Parallel Processing
  36. [2013-12-22 16:59:50] CL Platform 0 version: OpenCL 1.2 AMD-APP (1348.4)
  37. [2013-12-22 16:59:50] Platform 0 devices: 2
  38. [2013-12-22 16:59:50] 0 Hawaii
  39. [2013-12-22 16:59:50] 1 Hawaii
  40. [2013-12-22 16:59:50] GPU 0 AMD Radeon R9 290 Series hardware monitoring enabled
  41. [2013-12-22 16:59:50] GPU 1 AMD Radeon R9 290 Series hardware monitoring enabled
  42. [2013-12-22 16:59:50] 2 GPU devices max detected
  43.  
  44. You should see "hardware monitoring enabled" and you won't get those ADL errors.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement