![]() |
![]() |
#276 |
"Kieren"
Jul 2011
In My Own Galaxy!
2×52×7×29 Posts |
![]()
Today I made a couple of attempts at Colab. None of the four instances ran for more than 20 minutes. This was with one notebook per account. One account is still paid, though now cancelled. Colab has been my main processing contribution since I got hooked into it. I have retired my one functional GPU. I have been running P-1 and DCs on two CPUs, but I think I'll let it all rest for a bit. I'll even be able to turn them off once in a while!
![]() |
![]() |
![]() |
![]() |
#277 | |
1976 Toyota Corona years forever!
"Wayne"
Nov 2006
Saskatchewan, Canada
13×349 Posts |
![]() Quote:
|
|
![]() |
![]() |
![]() |
#278 |
1976 Toyota Corona years forever!
"Wayne"
Nov 2006
Saskatchewan, Canada
453710 Posts |
![]() Code:
/bin/bash: LD_LIBRARY_PATH]=lib:/usr/lib64-nvidia: No such file or directory Code:
import subprocess import os import os.path from google.colab import drive import sys if not os.path.exists('/content/drive/My Drive'): drive.mount('/content/drive') %cd '/content/drive/My Drive/HOOTER/' !cp libstdc* /usr/lib/x86_64-linux-gnu/ !LD_LIBRARY_PATH]="lib:${LD_LIBRARY_PATH}" !./gpuowl.exe >>gpuowllog.txt 2>&1 & print('gpuowl launched in background') Last fiddled with by petrw1 on 2020-12-12 at 01:06 |
![]() |
![]() |
![]() |
#279 |
Mar 2019
USA
2·23 Posts |
![]()
I haven't even opened up Colab for well over a week. Didn't seem worth the effort.
Today I tried for kicks and got a T4 for an hour, enough to complete and submit four 73-74 TFs. I had to complete the 5th partially completed one manually using mfaktc. Still not worth it for me. |
![]() |
![]() |
![]() |
#280 | |
Jul 2009
Germany
547 Posts |
![]() Quote:
Code:
import os.path from google.colab import drive if not os.path.exists('/content/drive/My Drive'): drive.mount('/content/drive') #!unzip -o -d '/' '/content/drive/My Drive/Directory.zip' #!zip -r '/content/drive/My Drive/Directory.zip' '/content/drive/My Drive/gpuowl-master' os.chdir('/content/drive/My Drive/') !cp libstdc* /usr/lib/x86_64-linux-gnu/ !nvidia-smi -L os.chdir ('/content/drive/My Drive/gpuowl-master/') !chmod 755 '/content/drive/My Drive/gpuowl-master/gpuowl.exe' !ls -la !cd '.' && /content/drive/My\ Drive/gpuowl-master/gpuowl.exe -carry short -use CARRY32,ORIG_SLOWTRIG,IN_WG=128,IN_SIZEX=16,IN_SPACING=4,OUT_WG=128,OUT_SIZEX=16,OUT_SPACING=4 -nospin -block 100 -maxAlloc 10000 -B1 750000 -rB2 20 Last fiddled with by moebius on 2020-12-12 at 02:17 |
|
![]() |
![]() |