mersenneforum.org  

Go Back   mersenneforum.org > Factoring Projects > Msieve

Reply
 
Thread Tools
Old 2013-02-17, 16:45   #78
jasonp
Tribal Bullet
 
jasonp's Avatar
 
Oct 2004

3,541 Posts
Default

Quote:
Originally Posted by firejuggler View Post
any pre-compiled version availlable yet? 32 bit, 64 bit, anything is fine.
win32 binaries are available here. 64-bit binaries usually are contributed by Jeff Gilchrist, whenever he can get around to it.

Last fiddled with by jasonp on 2013-02-17 at 16:46
jasonp is offline   Reply With Quote
Old 2013-04-26, 08:23   #79
pinhodecarlos
 
pinhodecarlos's Avatar
 
"Carlos Pinho"
Oct 2011
Milton Keynes, UK

3·17·97 Posts
Default

Jeff kindly compiled official 1.51 msieve release and the latest 1.52 development pre-release version. Now the flag -nc "target_density=110" can be used.

Available from:
http://gilchrist.ca/jeff/factoring/

Thank you Jeff.

Last fiddled with by pinhodecarlos on 2013-04-26 at 08:25
pinhodecarlos is offline   Reply With Quote
Old 2013-05-01, 04:11   #80
VBCurtis
 
VBCurtis's Avatar
 
"Curtis"
Feb 2005
Riverside, CA

10010111111012 Posts
Default

I see on Jeff's list of binaries, the only CUDA version is still 1.50. Is it correct that the binaries available for 1.51/1.52 are not GPU-enabled?

-Curtis

Ah, found the gpu binary on sourceforge- disregard.

Last fiddled with by VBCurtis on 2013-05-01 at 04:16
VBCurtis is offline   Reply With Quote
Old 2014-02-05, 03:52   #81
jasonp
Tribal Bullet
 
jasonp's Avatar
 
Oct 2004

354110 Posts
Default Msieve v1.52 Available

Prepackaged source and binaries are now up on Sourceforge. This release incorporates quite a few fixes, some of them for serious bugs. It also incorporates a major speedup of the linear algebra.

I have run out of time to work on this project, for the forseeable future. Please do not expect even annual releases. I'm very sorry and wish it was otherwise.

Happy factoring,
jasonp
jasonp is offline   Reply With Quote
Old 2015-02-12, 19:34   #82
BfoX
 
Feb 2015

32 Posts
Default

in 'stage1_sieve_gpu.c' need make small correction:
[code]
#if 0
if (d->gpu_info->compute_version_major >= 2)
arch = "sm20";
else if (d->gpu_info->compute_version_minor >= 3)
arch = "sm13";
else
arch = "sm10";
#else
if (d->gpu_info->compute_version_major >= 5)
arch = "sm50";
else if (d->gpu_info->compute_version_major >= 3)
if (d->gpu_info->compute_version_minor >= 5)
arch = "sm35";
else
arch = "sm30";
if (d->gpu_info->compute_version_major >= 2)
arch = "sm20";
else if (d->gpu_info->compute_version_minor >= 3)
arch = "sm13";
else if (d->gpu_info->compute_version_minor >= 2)
arch = "sm12";
else
arch = "sm11";
#endif
[\code]

and
#if 0
if (d->gpu_info->compute_version_major >= 2)
CUDA_TRY(cuModuleLoad(&t->gpu_module, "stage1_core_sm20.ptx"))
else if (d->gpu_info->compute_version_minor >= 3)
CUDA_TRY(cuModuleLoad(&t->gpu_module, "stage1_core_sm13.ptx"))
else
CUDA_TRY(cuModuleLoad(&t->gpu_module, "stage1_core_sm11.ptx"))
#else
if (d->gpu_info->compute_version_major >= 5)
CUDA_TRY(cuModuleLoad(&t->gpu_module, "stage1_core_sm50.ptx"))
else if (d->gpu_info->compute_version_major >= 3)
if (d->gpu_info->compute_version_minor >= 5)
CUDA_TRY(cuModuleLoad(&t->gpu_module, "stage1_core_sm35.ptx"))
else
CUDA_TRY(cuModuleLoad(&t->gpu_module, "stage1_core_sm30.ptx"))
else if (d->gpu_info->compute_version_major >= 2)
CUDA_TRY(cuModuleLoad(&t->gpu_module, "stage1_core_sm20.ptx"))
else if (d->gpu_info->compute_version_minor >= 3)
CUDA_TRY(cuModuleLoad(&t->gpu_module, "stage1_core_sm13.ptx"))
else if (d->gpu_info->compute_version_minor >= 2)
CUDA_TRY(cuModuleLoad(&t->gpu_module, "stage1_core_sm12.ptx"))
else
CUDA_TRY(cuModuleLoad(&t->gpu_module, "stage1_core_sm11.ptx"))
#endif
[code]

also add to project
'sort_engine_sm12', 'sort_engine_sm30', 'sort_engine_sm35', 'sort_engine_sm50'
and
'stage1_core_sm12', 'stage1_core_sm30', 'stage1_core_sm35', 'stage1_core_sm50'

[\code]
BfoX is offline   Reply With Quote
Old 2015-12-28, 12:27   #83
ichimarux
 
Dec 2015

3 Posts
Default

why i cant run msieve at my laptop. its show error missing pthread32GC.dll. and i download it then its still error its doenst work at all ._.
ichimarux is offline   Reply With Quote
Old 2016-11-11, 17:30   #84
jasonp
Tribal Bullet
 
jasonp's Avatar
 
Oct 2004

3,541 Posts
Default Msieve v1.53 available

Now up on sourceforge. I have switched to providing win64 binaries, built with Msys2 for Sandy Bridge and CUDA 6.5; if these are insufficiently optimized then Jeff Gilchrist's page contains win64 binaries built from the Visual Studio projects and using the latest CUDA.

This release folds in two years of bug fixes and improvements.

Happy factoring,
jasonp
jasonp is offline   Reply With Quote
Old 2016-11-11, 18:39   #85
Jeff Gilchrist
 
Jeff Gilchrist's Avatar
 
Jun 2003
Ottawa, Canada

22258 Posts
Default

I just updated the page with fresh builds of most/all of the factoring binaries thanks to Brian Gladman. You can find those msieve builds and others here:
http://gilchrist.ca/jeff/factoring/
Jeff Gilchrist is offline   Reply With Quote
Old 2017-04-18, 17:45   #86
BfoX
 
Feb 2015

32 Posts
Default

hi, any1 can explain to me why in the 'msieve153dev_svn1002_win64_cuda' all ptx-file is same - for sm_20 only?
BfoX is offline   Reply With Quote
Old 2018-01-11, 06:31   #87
ixfd64
Bemusing Prompter
 
ixfd64's Avatar
 
"Danny"
Dec 2002
California

2·5·239 Posts
Default Msieve website down

Jason, the Msieve website at http://www.boo.net/~jasonp/qs.html is returning a 404 error. Just a heads-up!
ixfd64 is offline   Reply With Quote
Old 2021-05-22, 16:16   #88
frmky
 
frmky's Avatar
 
Jul 2003
So Cal

2·34·13 Posts
Default

As further evidence that the filtering bug is squashed, I just completed a run using 33-bit large primes with over 1 billion unique relations.

https://pastebin.com/J6hbcjzD
frmky is offline   Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Primenet maintenance announcements Madpoo PrimeNet 7 2015-11-12 05:50
GMP-ECM Announcements akruppa GMP-ECM 12 2013-02-27 15:30
Phrot announcements rogue Conjectures 'R Us 33 2010-01-22 19:39
msieve help em99010pepe Msieve 23 2009-09-27 16:13
Announcements hhh Prime Cullen Prime 10 2007-05-16 20:42

All times are UTC. The time now is 01:12.


Sat Jul 17 01:12:26 UTC 2021 up 49 days, 22:59, 1 user, load averages: 0.54, 1.10, 1.32

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.