Gimps? Sounds like a description of my gait. I wonder why they don't have a BOINC app?
Edit: Oh, I didn't connect GIMPS with the old familiar Prime95 app! I've got a few cores on it now, though no idea what it will take to make a dent in our standing...
I always wanted to try GIMPS, since I'm into PrimeGrid.
What better time than now? 😉
For those wanting to run Gimps on ATI video cards.........Supported GPUs : ...HD4xxx ...........
# where is the CUDA Toolkit installed?
CUDA_DIR = /usr/lib/cuda
# generate code for various compute capabilities
#NVCCFLAGS += --generate-code arch=compute_11,code=sm_11 # CC 1.1, 1.2 and 1.3 GPUs will use this code (1.0 is not possible for mfaktc)
#NVCCFLAGS += --generate-code arch=compute_20,code=sm_20 # CC 2.x GPUs will use this code, one code fits all!
NVCCFLAGS += --generate-code arch=compute_30,code=sm_30 # all CC 3.x GPUs _COULD_ use this code
NVCCFLAGS += --generate-code arch=compute_35,code=sm_35 # but CC 3.5 (3.2?) _CAN_ use funnel shift which is useful for mfaktc
NVCCFLAGS += --generate-code arch=compute_50,code=sm_50 # CC 5.x GPUs will use this code
NVCCFLAGS += --generate-code arch=compute_60,code=sm_60 # CC 6.x GPUs will use this code
I see cuda65, cuda80, and cuda100 at your link, will any of them work? I downloaded them all to see what's inside the zipfiles, but have to work so not much time...Lol, the name could have maybe been given a little more consideration before they went with, err, GIMPS.
I think the serious points are still to be had using GPUs to carry out manual trial factoring. The guide I put together years ago seems to still be relevant except the latest files for downloading are now here. I'm using the standard Windows cuda10 zip file.
A few hours work on a single 2080 has already bumped us up 49 places to 468th and earned us just under 550 vault points.
I can't submit results manually until a site admin verifies my new account. I'll just keep crunching.
Wait... what? There shouldn't be a verification process. Unless you're using GPUto72 or some other external project like that on GIMPS
@emoga , How does your 2080 do on this project? My 1080 Ti's take about 22 minutes per task. I'm thinking of getting a turing card in the near future.
It looks like 3k GHz-day? (3200GHz without running boinc on cpus). No idea if that's good or not.
It's now working! 🙂
I see cuda65, cuda80, and cuda100 at your link, will any of them work? I downloaded them all to see what's inside the zipfiles, but have to work so not much time...
Also trying out MISFIT (windows only) which is a GUI that makes it easier on the eyes.
The latest binary for linux, cuda 6.5, did not work on my machine (mint linux, driver 390.116, dual 1080Tis) .
I decided to download and extracted the source file ( mfaktc-0.21.tar.gz) and installed the cuda toolkit from the mint software manager.
I had to edit the Makefile in the src directory to change the path to the cuda installation.
Code:# where is the CUDA Toolkit installed? CUDA_DIR = /usr/lib/cuda
Since the 1080Ti is compute capability 6.1 and the cuda toolkit I installed is incompatible with compute 1.0x and 2.x, I changed these lines too.
Code:# generate code for various compute capabilities #NVCCFLAGS += --generate-code arch=compute_11,code=sm_11 # CC 1.1, 1.2 and 1.3 GPUs will use this code (1.0 is not possible for mfaktc) #NVCCFLAGS += --generate-code arch=compute_20,code=sm_20 # CC 2.x GPUs will use this code, one code fits all! NVCCFLAGS += --generate-code arch=compute_30,code=sm_30 # all CC 3.x GPUs _COULD_ use this code NVCCFLAGS += --generate-code arch=compute_35,code=sm_35 # but CC 3.5 (3.2?) _CAN_ use funnel shift which is useful for mfaktc NVCCFLAGS += --generate-code arch=compute_50,code=sm_50 # CC 5.x GPUs will use this code NVCCFLAGS += --generate-code arch=compute_60,code=sm_60 # CC 6.x GPUs will use this code
NVCCFLAGS += --generate-code arch=compute_70,code=sm_70 # CC 7.x GPUs will use this code
I can't submit results manually until a site admin verifies my new account. I'll just keep crunching.