mersenneforum.org  

Go Back   mersenneforum.org > Factoring Projects > NFS@Home

Reply
 
Thread Tools
Old 2015-12-01, 10:29   #496
fivemack
(loop (#_fork))
 
fivemack's Avatar
 
Feb 2006
Cambridge, England

11001000110002 Posts
Default EMG-C188 factored

Code:
Sat Nov 28 13:19:23 2015  p91 factor: 1455229648108768594552694966205142453019168989838313852033836936726828258873327877743335007
Sat Nov 28 13:19:23 2015  p98 factor: 60531294671960669735077411626867118292354916934357577613958209636477806174025280318238132795431621
About 212 hours on 7 threads Xeon E5-2650v2 for a 21.1M matrix (the machine had to be rebooted a few times)

Log attached
Attached Files
File Type: txt EMG-C188-log.txt (49.3 KB, 57 views)
fivemack is offline   Reply With Quote
Old 2015-12-02, 13:48   #497
VictordeHolland
 
VictordeHolland's Avatar
 
"Victor de Hollander"
Aug 2011
the Netherlands

23×3×72 Posts
Default

Taking
C154_P182_plus_1
C155_P209_plus_1
C153_P233_plus_1

for post-processing. They probably take only about a day each.
VictordeHolland is offline   Reply With Quote
Old 2015-12-02, 19:06   #498
debrouxl
 
debrouxl's Avatar
 
Sep 2009

977 Posts
Default

You have decent horsepower, so I'd say much less than a day for each of them, though one day for all three might be a stretch.
debrouxl is offline   Reply With Quote
Old 2015-12-02, 21:39   #499
Xyzzy
 
Xyzzy's Avatar
 
"Mike"
Aug 2002

5×17×97 Posts
Default W_790

Code:
prp88 factor: 7672236958518363816567697109832643079838636749631210749387737419588642636816013574367653
prp100 factor: 6562282240936037358815422484225511323795135516019451448000923739689561470840832334996806359588917617
Attached Files
File Type: log msieve.log (13.8 KB, 84 views)
Xyzzy is offline   Reply With Quote
Old 2015-12-03, 07:29   #500
wombatman
I moo ablest echo power!
 
wombatman's Avatar
 
May 2013

13×137 Posts
Default C184_HP2_4496

The C184 blocking HP2(4496) splits as:

Code:
prp83 factor: 18629234615651511444939975064252892061546608854100819750912782705794351301276248439
prp101 factor: 90074244593568724732372840988999455713334654010427512152214073432054138168692117445761801991568405847
elapsed time 110:46:38
Elapsed time is misleading as there was a power outage midway through. Actual total time is somewhere on the order of 120-140 hours.

Matrix was 15331633 x 15331859 with TD=128.
wombatman is offline   Reply With Quote
Old 2015-12-04, 10:35   #501
fivemack
(loop (#_fork))
 
fivemack's Avatar
 
Feb 2006
Cambridge, England

23·11·73 Posts
Default

Running 4261-67; ETA is 21 hours, but that's the weekend so I won't see the answer until Monday.

Also taking 2269-67 and 2789-67 which should fit in over the weekend.

Last fiddled with by fivemack on 2015-12-04 at 14:14
fivemack is offline   Reply With Quote
Old 2015-12-04, 23:49   #502
unconnected
 
unconnected's Avatar
 
May 2009
Russia, Moscow

A2116 Posts
Default

What are best parameters to run MPI version of msieve on single computer? Have Dual Xeon E5-2620, so 6cores/12threads * 2. I compiled msieve v1.52 with OpenMPI 1.8.1 and newest GMP 6.1.0.
I tried MPI version on C165 GNFS-job with many different options (-bind-to-core/-bind-to-socket, -bycore/-bysocket, -cpu-set, etc, running with and without taskset command) and the best what I could receive was 60 hours (taskset -c 0-11 mpirun -np 12 -bind-to-core msieve -t 12 -nc2 2,6).

Running without MPI I got much better results:
taskset -c 0-11 msieve -t 12 -> 36 hours (running only on one cpu)
taskset -c 0-5,12-17 msieve -t 12 -> 40 hours (running on both cpus)
msieve -t 12 -> 43 hours (without taskset command)
taskset -c 0-5 msieve -t 6 -> 63 hours (only 6 threads)

I'm disappointed with these results, what's I'm doing wrong?
unconnected is online now   Reply With Quote
Old 2015-12-05, 00:01   #503
frmky
 
frmky's Avatar
 
Jul 2003
So Cal

212810 Posts
Default

Try, perhaps with a -bysocket if it helps,
mpirun -np 2 msieve -nc2 1,2 -t 12
frmky is online now   Reply With Quote
Old 2015-12-05, 00:09   #504
fivemack
(loop (#_fork))
 
fivemack's Avatar
 
Feb 2006
Cambridge, England

23·11·73 Posts
Default

On a 48-core (4 sockets x 2 chips per socket x 6 cores per chip) Opteron machine I found that it was very helpful to have a 'numactl -l' in the command line, as well as the taskset, to ensure that the memory was allocated on the node on which the process was running. I got mpirun to run a script which contained a taskset command, rather than trying to taskset the mpirun itself - see next post.

I am slightly surprised that you're finding -t12 faster than -t6 on a hyperthreaded system, I should redo that measurement with the next linear algebra job I run.

Last fiddled with by fivemack on 2015-12-05 at 00:34
fivemack is offline   Reply With Quote
Old 2015-12-05, 00:33   #505
fivemack
(loop (#_fork))
 
fivemack's Avatar
 
Feb 2006
Cambridge, England

23×11×73 Posts
Default

For the two-layer approach I did something like

Code:
mpirun -n 8 run.2,4.6.sh
where run.2,4.6.sh was
Code:
msieve_real='/home/nfsworld/msieve-svn-again-mpi/trunk/msieve -v'

CPUL=$[6*$OMPI_COMM_WORLD_RANK]
CPUR=$[6*$OMPI_COMM_WORLD_RANK+5]
taskset -c $CPUL-$CPUR numactl --cpunodebind=$OMPI_COMM_WORLD_RANK -l $msieve_real -t 6 -nc2 2,4
fivemack is offline   Reply With Quote
Old 2015-12-05, 12:21   #506
fivemack
(loop (#_fork))
 
fivemack's Avatar
 
Feb 2006
Cambridge, England

642410 Posts
Default

Quote:
Originally Posted by unconnected View Post
taskset -c 0-11 mpirun -np 12 -bind-to-core msieve -t 12 -nc2 2,6
I'm surprised that worked at all in as little as 60 hours; it causes mpirun to start up 12 copies of sieve each of which tries to use twelve threads, so I'd have thought you'd see the machine load average going into the hundreds.
fivemack is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
restarting nfs linear algebra cubaq YAFU 2 2017-04-02 11:35
Linear algebra at 600% CRGreathouse Msieve 8 2009-08-05 07:25
Linear algebra crashes 10metreh Msieve 3 2009-02-02 08:34
Linear algebra proof Damian Math 8 2007-02-12 22:25
Linear algebra in MPQS R1zZ1 Factoring 2 2007-02-02 06:45

All times are UTC. The time now is 22:53.


Fri Aug 6 22:53:04 UTC 2021 up 14 days, 17:22, 1 user, load averages: 4.27, 4.16, 3.95

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.