![]() |
|
|
#474 |
|
"TF79LL86GIMPS96gpu17"
Mar 2017
US midwest
5,437 Posts |
That was in regard to CUDAPm1 v0.20.
Currently I'm running gpuowl (Fan Ming's executable), P-1 on Colab (Tesla K80). Its selftest passed, finding the known factor. Last fiddled with by kriesel on 2019-10-29 at 15:34 |
|
|
|
|
|
#475 |
|
Einyen
Dec 2003
Denmark
2·1,579 Posts |
Anyone tried using 2 accounts on Kaggle? Running 2x 30 hours GPU per week and up to 20 CPU instances?
I'm tempted to do it since I scripted the restarting, but I do not want to be banned. Last fiddled with by ATH on 2019-10-29 at 17:23 |
|
|
|
|
|
#476 | |
|
"Eric"
Jan 2018
USA
22·53 Posts |
Quote:
For the two accounts thing, I believe you need a phone number to access GPU so you would need multiple phone numbers and obv email accounts. |
|
|
|
|
|
|
#477 |
|
Einyen
Dec 2003
Denmark
2×1,579 Posts |
Yeah, I forgot about the extra phone number needed.
![]() I started all 10 instances manually the first time, and then I use Kaggle API to download files after it is done and restart the instance, as I described in post #424 and #443. I have an ftp I use to download the files inside the notebook scripts and I upload the worktodo.txt and temporary files afterwards. The notebook scripts are: Code:
import os %cd /kaggle/working !wget ftp://<ftp address>/kaggle/mprime.tar.gz !tar -xzvf mprime.tar.gz !wget ftp://<ftp address>/kaggle/kaggle1/* !tar -xzvf files.tar.gz !chmod 755 * !./mprime -d >> output1.txt In post #443 I explain how to rename the instance the first time, so my instances are called kaggle.com/<username>/mprime1 (to mprime10). When they are done I use this Linux script to download and upload files and restart the instance: Code:
#!/bin/sh cd tmp rm * cd tmp rm * cd ~/kaggle/ ~/.local/bin/kaggle kernels output <username>/mprime$1 -p tmp/ cd tmp mv output$1.txt tmp/ mv worktodo.txt tmp/ mv results.txt tmp/ mv prime.log tmp/ mv prime.txt tmp/ mv local.txt tmp/ rm files.tar.gz rm p*.bu* rm prime*.* mv p* tmp/ cd tmp tar -czvf ~/kaggle/tmp/files.tar.gz * cd .. wput -u -nc files.tar.gz ftp://<ftp address>/kaggle/kaggle$1/files.tar.gz cd .. ~/.local/bin/kaggle kernels push -p ~/kaggle/$1 Edit: The last line is where it restarts the instance: ~/.local/bin/kaggle kernels push -p ~/kaggle/$1 In the kaggle folder I have folders 1 to 10, and each folder contains mprime$1.ipynb and kernel-metadata.json, see post #443. Last fiddled with by ATH on 2019-10-30 at 07:14 |
|
|
|
|
|
#478 | |
|
"TF79LL86GIMPS96gpu17"
Mar 2017
US midwest
124758 Posts |
Quote:
Code:
echo \"`git describe --long --dirty --always`\" > version.new
diff -q -N version.new version.inc >/dev/null || mv version.new version.inc
echo Version: `cat version.inc`
Version: "v6.11-11-gfaaa2f2-dirty"
g++ -MT GmpUtil.o -MMD -MP -MF .d/GmpUtil.Td -Wall -O2 -std=c++17 -c -o GmpUtil.o GmpUtil.cpp
g++ -MT Worktodo.o -MMD -MP -MF .d/Worktodo.Td -Wall -O2 -std=c++17 -c -o Worktodo.o Worktodo.cpp
g++ -MT common.o -MMD -MP -MF .d/common.Td -Wall -O2 -std=c++17 -c -o common.o common.cpp
common.cpp:14:10: fatal error: filesystem: No such file or directory
#include <filesystem>
^~~~~~~~~~~~
compilation terminated.
Makefile:30: recipe for target 'common.o' failed
make: *** [common.o] Error 1
|
|
|
|
|
|
|
#479 | |
|
"Eric"
Jan 2018
USA
3248 Posts |
Quote:
I have changed it to #include <experimental-filesystem> before, which resolves this specific issue but others pop out. Last fiddled with by xx005fs on 2019-11-01 at 22:15 |
|
|
|
|
|
|
#480 | |
|
"Dylan"
Mar 2017
22×5×29 Posts |
Quote:
Code:
!apt install gcc-8 Code:
#include <experimental/filesystem> Code:
-lstdc++fs |
|
|
|
|
|
|
#481 |
|
"Mr. Meeseeks"
Jan 2012
California, USA
87816 Posts |
Just got my account on Kaggle blocked - Not sure if it's worth making a new account or contacting support(doubt I'll get far with the latter).
|
|
|
|
|
|
#482 | |
|
"TF79LL86GIMPS96gpu17"
Mar 2017
US midwest
5,437 Posts |
Quote:
Code:
...Setting up libgcc-8-dev:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Setting up gcc-8 (8.3.0-6ubuntu1~18.04.1) ...
Processing triggers for libc-bin (2.27-3ubuntu1) ...
echo \"`git describe --long --dirty --always`\" > version.new
diff -q -N version.new version.inc >/dev/null || mv version.new version.inc
echo Version: `cat version.inc`
Version: "v6.11-11-gfaaa2f2-dirty"
g++ -MT common.o -MMD -MP -MF .d/common.Td -Wall -O2 -std=c++17 -c -o common.o common.cpp
common.cpp:14:10: fatal error: filesystem: No such file or directory
#include <filesystem>
^~~~~~~~~~~~
compilation terminated.
Makefile:30: recipe for target 'common.o' failed
make: *** [common.o] Error 1
Last fiddled with by kriesel on 2019-11-02 at 13:19 |
|
|
|
|
|
|
#483 | |
|
"Mihai Preda"
Apr 2015
3×457 Posts |
did you check the g++ version,
g++ --version I think that a reasonably recent version of gcc/g++ (8 probably) should find the #include<filesystem>. (I don't have another fix for that). I didn't build myself on collab, so I don't have first-hand experience there. I'll review pull-request on github with fixes. Quote:
|
|
|
|
|
|
|
#484 | |
|
"TF79LL86GIMPS96gpu17"
Mar 2017
US midwest
10101001111012 Posts |
Quote:
Code:
g++ (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0 Copyright (C) 2017 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. !apt install g++-8 did that, got Code:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libstdc++-8-dev
Suggested packages:
g++-8-multilib gcc-8-doc libstdc++6-8-dbg libstdc++-8-doc
The following NEW packages will be installed:
g++-8 libstdc++-8-dev
0 upgraded, 2 newly installed, 0 to remove and 28 not upgraded.
Need to get 11.6 MB of archives.
After this operation, 45.2 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 libstdc++-8-dev amd64 8.3.0-6ubuntu1~18.04.1 [1,543 kB]
Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 g++-8 amd64 8.3.0-6ubuntu1~18.04.1 [10.1 MB]
Fetched 11.6 MB in 3s (3,461 kB/s)
Selecting previously unselected package libstdc++-8-dev:amd64.
(Reading database ... 132925 files and directories currently installed.)
Preparing to unpack .../libstdc++-8-dev_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking libstdc++-8-dev:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Selecting previously unselected package g++-8.
Preparing to unpack .../g++-8_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
Unpacking g++-8 (8.3.0-6ubuntu1~18.04.1) ...
Setting up libstdc++-8-dev:amd64 (8.3.0-6ubuntu1~18.04.1) ...
Setting up g++-8 (8.3.0-6ubuntu1~18.04.1) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
g++ (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
echo \"`git describe --long --dirty --always`\" > version.new
diff -q -N version.new version.inc >/dev/null || mv version.new version.inc
echo Version: `cat version.inc`
Version: "v6.11-11-gfaaa2f2-dirty"
g++ -MT common.o -MMD -MP -MF .d/common.Td -Wall -O2 -std=c++17 -c -o common.o common.cpp
common.cpp:14:10: fatal error: filesystem: No such file or directory
#include <filesystem>
^~~~~~~~~~~~
compilation terminated.
Makefile:30: recipe for target 'common.o' failed
make: *** [common.o] Error 1
Last fiddled with by kriesel on 2019-11-02 at 18:56 |
|
|
|
|
![]() |
| Thread Tools | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Alternatives to Google Colab | kriesel | Cloud Computing | 11 | 2020-01-14 18:45 |
| Notebook | enzocreti | enzocreti | 0 | 2019-02-15 08:20 |
| Computer Diet causes Machine Check Exception -- need heuristics help | Christenson | Hardware | 32 | 2011-12-25 08:17 |
| Computer diet - Need help | garo | Hardware | 41 | 2011-10-06 04:06 |
| Workunit diet ? | dsouza123 | NFSNET Discussion | 5 | 2004-02-27 00:42 |