Hey there, could you please explain how you did this?
I searched around but I could never find a detailed example config dealing with turning on/off cores or a gpu.
Thanks
I've got 2 GPUs and a quad core processor. I'd like to have pyrit run using only one of my GPUs, so my computer doesn't completely lock up.
pyrit list_cores:
And I'd like to use only my GTX 480.PHP Code:#1: 'CUDA-Device #1 'GeForce GTX 480''
#2: 'CUDA-Device #2 'GeForce 8600 GTS''
#3: 'CPU-Core (SSE2)'
#4: 'CPU-Core (SSE2)'
#5: 'CPU-Core (SSE2)'
#6: 'CPU-Core (SSE2)'
#7: 'CPU-Core (SSE2)'
#8: 'CPU-Core (SSE2)'
#9: 'Network-Clients'
Thanks for the help
k just edited cpyrit.py to achieve this.
Last edited by balding_parrot; 06-02-2010 at 10:57 PM.
Hey there, could you please explain how you did this?
I searched around but I could never find a detailed example config dealing with turning on/off cores or a gpu.
Thanks
in cpyrit.py on line 375 change "for dev_idx in range(p.numDevices):" to "for dev_idx in range(p.numDevices)[:1]:" for first gpu or "for dev_idx in range(p.numDevices)[1:]:" for second gpu