-
Notifications
You must be signed in to change notification settings - Fork 8
/
ChangeLog
20498 lines (15228 loc) · 659 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit 8b63ba3270020908ff2c605f00ac95a541340367
Author: Paul Zimmermann <[email protected]>
Date: Thu May 5 11:35:58 2022 +0200
fixed compiler warnings
commit 1afb36ebf693014eb62e7c21590c0f29afd57e0f
Author: Seth Troisi <[email protected]>
Date: Thu Mar 17 02:01:48 2022 -0700
Expand list of CUDA cc codes to include 80 and 90 series
commit f2aec916ffcde2dd0e388ce1897ced7d094259e7
Author: Seth Troisi <[email protected]>
Date: Thu Mar 17 01:30:58 2022 -0700
Faster -save with large gpu curve count
commit c56cfceb4ed6ef7711bb59655b37735b8041db7d
Author: Seth Troisi <[email protected]>
Date: Thu Sep 9 13:52:53 2021 -0700
Add Seth Troisi to authors
commit 9d5b903396bb24ae73fad7106de71153bad4d6a3
Author: Seth Troisi <[email protected]>
Date: Wed Nov 10 17:59:27 2021 -0800
Add comment explaining extra GPU time after curves are done
commit d013c5018f2db5a3fd5e89551d4575749b587324
Merge: d8f7afc 0ad8a8c
Author: Paul Zimmermann <[email protected]>
Date: Tue Mar 15 10:54:21 2022 +0100
Merge branch 'gpu_tests' of gitlab.inria.fr:zimmerma/ecm into gpu_tests
commit 0ad8a8c8a0ff17c4b54a9df63d37119a780bd09e
Author: Seth Troisi <[email protected]>
Date: Mon Aug 30 19:35:33 2021 -0700
check_gpuecm.sage add smallestGroupOrder
This allows for
$ sage --preparse check_gpuecm.sage
$ mv -f check_gpuecm.sage.py check_gpuecm.py
$ python -c "import check_gpuecm; check_gpuecm.smallestGroupOrder(594538100848945223169882301931953, 3, 10, 1000)"
Which can help find B1/B2 limits for tests where prime will be found.
commit 923c9415152afc74f6a59fe32a4eb95fbb19c9a9
Author: David Cleaver <[email protected]>
Date: Mon Jan 17 15:21:50 2022 +0000
Update configure.ac - Fix WINDOWS64_ABI for mingw64 targets
commit 09f4c42e8a2237657194ff06b82f780d7b278a51
Author: David Cleaver <[email protected]>
Date: Mon Jan 17 03:08:05 2022 +0000
Add mulredc1.asm for Linux and Win64
commit b44037d4b74f960da3bd3c0b1babdbec69011f58
Author: David Cleaver <[email protected]>
Date: Mon Jan 17 01:56:40 2022 +0000
Update mulredc1.m4 - fix mulredc1_xx for win64
commit bff07a7ff416b324656936753679327ec207485e
Author: David Cleaver <[email protected]>
Date: Mon Jan 17 01:55:40 2022 +0000
Update mulredc.m4 - fix k=3 to k=20 for win64
commit 3f083d03ed8894a6339454500e97b7f4a2fc49cc
Author: David Cleaver <[email protected]>
Date: Mon Jan 17 01:54:43 2022 +0000
Update autogen.py - fix k=1 and k=2 for win64
commit f83edb3cf665af92663baac0610644b67156da4a
Author: David Cleaver <[email protected]>
Date: Mon Jan 17 01:52:17 2022 +0000
Delete mulredc1.asm - has code that breaks win64 builds
commit cfa3304dd2abd0604bcc4da2f16e63d76063e0a1
Author: Brian Gladman <[email protected]>
Date: Wed Jan 26 22:44:18 2022 +0000
Update Visual Studio build to use CUDA v11.5
Conditional MSVC addition in cudacommon.h for definition of int32_t
commit 42e02b964accf4d7b3bbea099e91ef8e4678d0b5
Merge: 4013d15 0e97deb
Author: Brian Gladman <[email protected]>
Date: Wed Jan 26 19:50:12 2022 +0000
Merge branch 'master' of gitlab.inria.fr:zimmerma/ecm
commit 0e97deb611f15e2547cb46f6cd6216a31e434433
Author: Paul Zimmermann <[email protected]>
Date: Wed Dec 1 14:56:43 2021 +0100
added section about GMP-ECM packages
commit 3f8604b2974ba59fdf0a3a534782ba87abfc79ef
Author: Paul Zimmermann <[email protected]>
Date: Wed Dec 1 14:50:51 2021 +0100
renamed back
commit a67270777c6ad582fe9c8c3b9580189ce8d705f3
Author: Paul Zimmermann <[email protected]>
Date: Wed Dec 1 14:49:29 2021 +0100
renamed README to README.md
commit 4b8d0bf2462c5741d0ba407d7deb0be7dce87c6c
Author: Seth Troisi <[email protected]>
Date: Sun Oct 24 00:14:01 2021 -0700
cgbn_stage1: Remove B1 limit, Reduce GPU memory 8x
commit f7bcd6750aad10c2515e6b7f0d5093b29a530c68
Author: Seth Troisi <[email protected]>
Date: Sat Oct 16 05:25:52 2021 -0700
Remove getNumberOfBlockPerMultiProcessor
2.0 and 2.1 are no longer
getNumberOfBlockPerMultiProcessor returns a static 2
commit 258c076ec164181ffba72890800654e744db1b11
Author: Seth Troisi <[email protected]>
Date: Fri Oct 15 02:51:17 2021 -0700
Add note about endianness
commit 6dddca4a2301e4be753bebc1d10f06cd85e4a4fb
Author: Seth Troisi <[email protected]>
Date: Mon Sep 13 12:37:42 2021 -0700
cgbn_stage1: Hack fix for custom kernel TPI
commit 980d80e79c9be830bc79fab7e1a2b9afb8cad0e4
Author: Seth Troisi <[email protected]>
Date: Fri Sep 10 13:39:09 2021 -0700
cgbn_stage1: Tuning
commit 5680a7ae3a9624045a7f456dacbc01206f2a192f
Author: Seth Troisi <[email protected]>
Date: Thu Sep 2 00:09:37 2021 -0700
cgbn_stage1: Reduce duplicated inlined double_add_v2 code
commit 10029404df1db7d64bc523ec02b88932a8c3001f
Author: Seth Troisi <[email protected]>
Date: Wed Sep 1 14:57:44 2021 -0700
Remove c++11 const vector init
commit 38dba282bf020ee07692c4b8041b47adce4c6cda
Author: Seth Troisi <[email protected]>
Date: Tue Aug 31 00:45:39 2021 -0700
cuda: Refactor some common code to cudacommon.h
Extract get_device_prob from select_and_init_GPU
commit c1aa300fbe4401e7bc3ed582456d191d5a07670d
Author: Seth Troisi <[email protected]>
Date: Fri Oct 1 22:22:41 2021 -0700
cgbn_stage1: Extract find_np0
commit 77948f945a4614e9eb2a82e088e8664fffd9342b
Author: Seth Troisi <[email protected]>
Date: Fri Oct 1 21:44:08 2021 -0700
cgbn_stage1: remove ecm_param scruct
commit ed13a84671c8b3e3eba01af14e24d461048e270a
Author: Seth Troisi <[email protected]>
Date: Tue Aug 31 21:46:44 2021 -0700
cgbn_stage1: Improve kernel names add comment about custom kernels
commit b18d27a7c76a2f19ccecc55d5048fe885f6ea547
Author: Seth Troisi <[email protected]>
Date: Mon Aug 30 19:42:18 2021 -0700
cgbn_stage1: Make bits_per_batch dynamic, add ETA
commit 75672c65b54082f37be35767dde674ad2f32a4b0
Author: Seth Troisi <[email protected]>
Date: Wed Aug 25 11:40:06 2021 -0700
cgbn_stage1: break kernel calls into intervals
Helps with system responsiveness
commit 37cba2bc710d6f03184bfba99e1b0febc1ab39dc
Author: Seth Troisi <[email protected]>
Date: Tue Aug 24 16:29:28 2021 -0700
cgbn_stage1: tune for <512 bits
commit 6e4c1aece2c62215459d63a7dfa806cc8e0dc794
Author: wraythex <[email protected]>
Date: Sat Aug 28 16:23:03 2021 -0500
Move cudaDeviceSchedule* to device init (#3)
* Add schedule option
* Move schedule call to device initialization
* Update cuda_check to print the error number
* Remove un-needed error output
commit c2f89580ab20c51256178e2a20633830f27e91df
Author: Seth Troisi <[email protected]>
Date: Tue Aug 24 15:33:43 2021 -0700
cgbn_stage1: dynamic bit level part 2
commit e8ef8f9e4e4ee93e5e31a008a722824ba72707b8
Author: Seth Troisi <[email protected]>
Date: Tue Aug 24 13:23:56 2021 -0700
cgbn_stage1: dynamic bit level part 1
Refactor out some param & bit logic
commit ebf1d479c1d104fe674976843b5c166398fa0205
Author: Seth Troisi <[email protected]>
Date: Fri Oct 1 20:26:55 2021 -0700
Improve GPU input overflow detection
commit f41e1fee4b8b69f5d6163f06aa19ec6872e9343b
Author: Seth Troisi <[email protected]>
Date: Wed Sep 1 14:46:03 2021 -0700
Added automake process files to .gitignore
commit b6edc67096dccda55abe52afd990e5f7336f9706
Author: Seth Troisi <[email protected]>
Date: Mon Aug 23 22:40:13 2021 -0700
Cleanup GPU flags in acinclude.m4
commit df7b3762e34492234d09640509df1f53b1a16c0c
Author: Seth Troisi <[email protected]>
Date: Fri Aug 20 14:32:10 2021 -0700
Minor cleanups to makefile, acinclude, spacing in cgbn code
commit 9d2484195442acb31e58ee780c469285be860a3b
Author: Seth Troisi <[email protected]>
Date: Sat Oct 2 00:23:03 2021 -0700
Update ecm champion url
commit 26aacfa7e6d1e86c8596cf96b3f07ee7915816ff
Author: Paul Zimmermann <[email protected]>
Date: Thu Oct 14 17:09:08 2021 +0200
patch from Jerome BENOIT <[email protected]>
commit 237f3567bb75be9023e4fd636a32819abfc45238
Author: Paul Zimmermann <[email protected]>
Date: Thu Oct 14 17:05:22 2021 +0200
update after migration to gitlab
commit 3631a253bf614b53473c34f1305929b42545f5ff
Author: Seth Troisi <[email protected]>
Date: Fri Oct 1 20:25:50 2021 -0700
Refactor check_gpuecm.sage
Add overflowTest and timingTest
commit 26211282d679c1980565ff8f7275305540e47185
Author: Seth Troisi <[email protected]>
Date: Wed Sep 1 17:08:34 2021 -0700
gpu_throughput_test.sh
commit 95ac93301e7679cd47aee3cada76a24db0b9d664
Author: Seth Troisi <[email protected]>
Date: Wed Sep 29 22:33:01 2021 -0700
test.gpuecm: Verify GPU residuals with CPU
commit de92909baaa6f6881291cf6a1c6a43d3c4499b65
Author: Seth Troisi <[email protected]>
Date: Wed Sep 1 02:11:01 2021 -0700
Added test.cgbnecm to run test.gpuecm with -cgbn
commit e9c197e37dc5ad0d6e20a17cbe22eae3dac89b11
Author: Seth Troisi <[email protected]>
Date: Fri Sep 10 16:43:41 2021 -0700
Removed two very old TODO files, added TODO.gpu
commit 8f826e82035baa5361ec3a902aadad1bed16ab71
Author: Seth Troisi <[email protected]>
Date: Wed Aug 18 19:02:20 2021 -0700
Update README.gpu
Add details on CGBN
Add common fix for cuda present error
commit fa61067e038f494986698e65cd0cd11ae70845f6
Author: Seth Troisi <[email protected]>
Date: Sat Oct 2 00:01:01 2021 -0700
Add missing commented example to testlong.ecm
commit 2d2e2e637afe4510f4e7f68b153fdb2880e10c78
Author: Seth Troisi <[email protected]>
Date: Thu Aug 19 18:38:50 2021 -0700
Added example CGBN GPU code
This will be followed by a new stage 1 implementation.
The new implementation is both 2-3x faster and supports a large range of
inputs (512-32K bits).
commit 186d4f2906cdc54099054fb262ec5cecff07e758
Author: Seth Troisi <[email protected]>
Date: Fri Aug 20 02:44:19 2021 -0700
with_cgbn_include for new CGBN gpu code
commit 3c3d468c7cc6d140564c6188a9d961648bbca75c
Merge: 261fdbb f03297b
Author: Seth Troisi <[email protected]>
Date: Thu Sep 30 18:43:11 2021 +0000
Merge branch 'user_redefine_cc' into 'master'
disable user_redefine_cc when CC is $GCC
Closes #21859
See merge request zimmerma/ecm!23
commit 261fdbbd8fcab38ffae9a87e019bf2e548dc1906
Author: Seth Troisi <[email protected]>
Date: Thu Sep 30 03:13:02 2021 -0700
fix two warnings from !17 (see #21859)
commit f03297b27db6a8aff4b4d5062b955a1d8e5120a5
Author: Seth Troisi <[email protected]>
Date: Thu Sep 30 02:18:35 2021 -0700
disable user_redefine_cc when CC is $GCC
commit 3d37c3906b1141faa746d83f301bd5381b2c16cd
Merge: 563495a 245af7b
Author: Seth Troisi <[email protected]>
Date: Thu Sep 23 09:25:08 2021 +0000
Merge branch 'gpu_configure' into 'master'
Improve --enable-gpu
See merge request zimmerma/ecm!19
commit 563495ae3dfc8b09dff08478ea01691d71c178ff
Merge: 0b6d645 2f50b8a
Author: ZIMMERMANN Paul <[email protected]>
Date: Thu Sep 16 09:35:57 2021 +0000
Merge branch 'improve_tests_v2' into 'master'
Improve tests
See merge request zimmerma/ecm!21
commit 2f50b8a4182538e211df0bb98f1ca38b67b216ec
Author: Seth Troisi <[email protected]>
Date: Wed Sep 15 12:35:06 2021 -0700
Improve tests
(2nd attempt and 65be45e8 was reverted in 15ef0cbc)
Cleanup checkcode $C
Verify some error strings
Create test_dummy2.save in tests (and remove from repo)
commit 0b6d6456c7f22da593a6e6e288341ec6e5de0e7d
Merge: 0d4db6e 1fed9c9
Author: Seth Troisi <[email protected]>
Date: Wed Sep 15 20:03:54 2021 +0000
Merge branch 'rho_fix' into 'master'
Update standalone rho to use primesieve & improve help
See merge request zimmerma/ecm!18
commit 1fed9c9eef5fc2979715c91516e5e9800b0b1944
Author: Seth Troisi <[email protected]>
Date: Wed Sep 15 12:51:28 2021 -0700
Add more usage details to rho when called without arg
commit 07f6805b03af0b0b3a533ee8c9c0b6ee06a0e63e
Author: Seth Troisi <[email protected]>
Date: Thu Sep 9 19:05:10 2021 -0700
Update standalone rho to use primesieve
Only one small update to match functionality
primesieve_skipto(11); primesieve_next() == 13
primegen_skipto(11); primegen_next() == 11
commit 0d4db6ec345b87dba58a7285f02a2cc0944331bc
Author: Seth Troisi <[email protected]>
Date: Wed Sep 15 12:21:51 2021 -0700
cleanup two warnings from !16 (see #21859)
commit 0101f5be206e2074c5bc168cfa9237e2f86f08c4
Merge: 3dba32a 3dca1e4
Author: ZIMMERMANN Paul <[email protected]>
Date: Wed Sep 15 12:57:11 2021 +0000
Merge branch 'step1_multiple_factors_final' into 'master'
Add reducefactors to find primes from many composites in stage1 GPU code
See merge request zimmerma/ecm!17
commit 3dba32a4e8e375f5b160379d644d7f52297d86cd
Merge: fa5525c 24a544f
Author: ZIMMERMANN Paul <[email protected]>
Date: Wed Sep 15 12:50:17 2021 +0000
Merge branch 'param_cleanup' into 'master'
Simplify get_curve_from_param[13] with mpz_invert
See merge request zimmerma/ecm!16
commit fa5525c297175d86ee9fda3b7774893df60f9b87
Merge: f2c8661 15ef0cb
Author: ZIMMERMANN Paul <[email protected]>
Date: Wed Sep 15 12:47:22 2021 +0000
Merge branch 'revert-f398b6b5' into 'master'
Revert "Merge branch 'improve_tests' into 'master'"
See merge request zimmerma/ecm!20
commit 15ef0cbc56cc9675cc9259b9147ad9cf86db5fe7
Author: ZIMMERMANN Paul <[email protected]>
Date: Wed Sep 15 12:44:59 2021 +0000
Revert "Merge branch 'improve_tests' into 'master'"
This reverts merge request !15
commit f2c86613381eb0b83854d2acb11c14f56289b1b8
Author: Paul Zimmermann <[email protected]>
Date: Wed Sep 15 11:12:25 2021 +0200
added known issue
commit f398b6b57af06b48761bb7d3caabf7e0761c911f
Merge: 9f837eb 65be45e
Author: ZIMMERMANN Paul <[email protected]>
Date: Wed Sep 15 08:35:31 2021 +0000
Merge branch 'improve_tests' into 'master'
Improve tests
See merge request zimmerma/ecm!15
commit 9f837eb04aac7be2868ce5f72cdd43afe0977b48
Merge: dfd8046 5b6825c
Author: ZIMMERMANN Paul <[email protected]>
Date: Wed Sep 15 08:30:30 2021 +0000
Merge branch 'doc_power_pm1' into 'master'
exit if -power or -dickson is used with P-1/P+1
See merge request zimmerma/ecm!10
commit 245af7b180ce803e2c90379210c3462b332d39ad
Author: Seth Troisi <[email protected]>
Date: Fri Aug 20 02:27:55 2021 -0700
Added NVCC_CHECK_COMPILE to simplify gpu checks
commit b97a2c1021a8250d2b1767f895692610f7138712
Author: Seth Troisi <[email protected]>
Date: Thu Aug 19 05:54:52 2021 -0700
Add back support for --enable-gpu=62
commit 3dca1e467f9c790f2cab2878054890d3b4c24a6d
Author: Seth Troisi <[email protected]>
Date: Wed Aug 25 16:45:06 2021 -0700
array_stage_found -> array_found
The code notices what stage the factor was found in and never mixes
stage 1 and stage 2 factors so array_found is a better name.
commit 1529a4d648bd2978ada4da20322bebf1caf22ace
Author: Seth Troisi <[email protected]>
Date: Wed Aug 25 16:27:41 2021 -0700
Add reducefactors to find primes from many composites in stage1 GPU code
commit 65be45e89810c6367eaff018bf0ed45bb064e6c8
Author: Seth Troisi <[email protected]>
Date: Wed Sep 1 13:39:10 2021 -0700
Improve tests
Cleanup checkcode $C
Verify some error strings
Create test_dummy2.save in tests (and remove from repo)
commit 24a544fb4ece8da20ef94a990c1211409b2ca29b
Author: Seth Troisi <[email protected]>
Date: Sat Aug 7 01:25:15 2021 -0700
Simplify get_curve_from_param[13] with mpz_invert
commit dfd8046b32041a102fe15ad07a5a54e8aaff3f92
Merge: 2c057e2 bb00c05
Author: ZIMMERMANN Paul <[email protected]>
Date: Tue Sep 14 14:41:17 2021 +0000
Merge branch 'execstack_otherintel' into 'master'
Execstack otherintel
See merge request zimmerma/ecm!7
commit 2c057e23c8f162a21f9015e2a83ec00b417278eb
Merge: 968cb8f e32a867
Author: ZIMMERMANN Paul <[email protected]>
Date: Tue Sep 14 14:39:27 2021 +0000
Merge branch 'git_ignore' into 'master'
Moderately complete .gitignore
See merge request zimmerma/ecm!12
commit 968cb8f72f8c7e2d0cfbee07f9334b22ce7918cd
Merge: 7157d2e ea3d295
Author: ZIMMERMANN Paul <[email protected]>
Date: Tue Sep 14 14:38:14 2021 +0000
Merge branch 'faster_expected_curves' into 'master'
Faster expected curves
See merge request zimmerma/ecm!13
commit 7157d2e7161f25d2d9b2d1509ed83ceb1729fc1a
Merge: 793dd86 b018e41
Author: ZIMMERMANN Paul <[email protected]>
Date: Tue Sep 14 14:35:45 2021 +0000
Merge branch 'sm_70_fix' into 'master'
Fix cuda error in SM_70 for __any
See merge request zimmerma/ecm!8
commit 793dd860e2f5d65bc949dee5974204e669bd3e5b
Merge: b3f5661 6c2e1db
Author: ZIMMERMANN Paul <[email protected]>
Date: Tue Sep 14 14:32:13 2021 +0000
Merge branch 'gpu_verbose_tweak' into 'master'
Better verbosity control for -gpu
See merge request zimmerma/ecm!14
commit 6c2e1db93851690b6239bbc38b668ef7820e38f6
Author: Seth Troisi <[email protected]>
Date: Fri Sep 10 00:33:38 2021 -0700
Better verbosity control for -gpu
`ecm -gpu -v` now prints
Expected number of curves
Block size
Stage 1 time
Stage 1 throughput
Curve <X> Step 2 took <Z>ms
Stage 2 time
Stage 2 throughput
Expected time to find a factor
this removes the ~20 lines per stage2 that would otherwise print at -v
commit ea3d2958a825413720213605e348ebe3a008cca9
Author: Seth Troisi <[email protected]>
Date: Thu Sep 9 19:45:03 2021 -0700
Move compute_s to after print_expcurves
commit e32a867bb0788204c1fbf2af543a1e0a80eab16b
Author: Seth Troisi <[email protected]>
Date: Thu Aug 19 07:50:54 2021 -0700
Moderately complete .gitignore
commit 5b6825c537a55e79adc3eeaca3e7cae2c68b194a
Author: Seth Troisi <[email protected]>
Date: Thu Sep 9 17:27:14 2021 -0700
exit if -power or -dickson is used with P-1/P+1
This has been broken since 2013 when the old PM1 stage 1
was removed in git commit 36108424
commit d8f7afca3c0c1d4c21763dc086bb7dfed8cec243
Author: Seth Troisi <[email protected]>
Date: Mon Aug 30 19:35:33 2021 -0700
check_gpuecm.sage add smallestGroupOrder
This allows for
$ sage --preparse check_gpuecm.sage
$ mv -f check_gpuecm.sage.py check_gpuecm.py
$ python -c "import check_gpuecm; check_gpuecm.smallestGroupOrder(594538100848945223169882301931953, 3, 1000, 10 ** 12, 1000)"
Which can help find B1/B2 limits for tests where prime will be found.
commit b018e41fd32c005b03771a452ac43d25802b187e
Author: Seth Troisi <[email protected]>
Date: Wed Aug 25 16:27:04 2021 -0700
Fix cuda error in SM_70 for __any
commit b3f5661cc60db68580aa29b4a9b95dae9962607d
Author: David Cleaver <[email protected]>
Date: Fri Aug 6 15:08:53 2021 +0000
Update README - Add details about constraints on sigma.
commit bb00c05b7f3e21a8eaaef1ce9e5dff96b8e7fe8f
Author: François Bissey <[email protected]>
Date: Thu Jun 17 10:22:16 2021 +1200
Regenerate pentium4 asm files
commit 69e38b5533cca1b02c13b276710a54122b42f2c1
Author: François Bissey <[email protected]>
Date: Thu Jun 17 10:21:12 2021 +1200
replace enumeration by sequence (pentium4)
commit fea0e3a33573e03c9b8e1f3cefecbc055c67d637
Author: François Bissey <[email protected]>
Date: Thu Jun 17 10:07:55 2021 +1200
Add a no execstack block to generated asm files (pentium4)
commit 7108cf5ed35f36a244964d74c4eb27fe55e64502
Author: François Bissey <[email protected]>
Date: Thu Jun 17 09:50:40 2021 +1200
fix autogen for py3
commit 981a332ef39c1530a22dac9528b31da0613daff8
Author: François Bissey <[email protected]>
Date: Thu Jun 17 09:48:42 2021 +1200
Regenerate all asm files
commit fb41ea295ba00e6bb29db96e0bf10dad8516baa7
Author: François Bissey <[email protected]>
Date: Thu Jun 17 09:47:43 2021 +1200
Add a no execstack block to generated asm files
commit 0356043c27c72486ec443bc5de6f63bd29110a51
Author: François Bissey <[email protected]>
Date: Thu Jun 17 09:37:40 2021 +1200
replace manual enumeration, bound to have mistakes sooner or later, with a sequence.
commit 9c2bc110735d93973d24d33679c889a69c6743fc
Author: François Bissey <[email protected]>
Date: Thu Jun 17 09:36:57 2021 +1200
add braces to print in autogen.py so it is py3 compliant
commit c6c2eaba2d66d5d1a23c9a736aed8f40fb8e5a61
Merge: 8c75c05 29c5847
Author: David Cleaver <[email protected]>
Date: Tue Jun 15 23:27:27 2021 +0000
Merge branch 'execstack' into 'master'
Execstack part 1: x86_64
See merge request zimmerma/ecm!6
commit 29c5847ee3bfeb0d6a94f2401b4798cd55a96dc0
Author: François Bissey <[email protected]>
Date: Tue Jun 15 11:45:00 2021 +1200
Add exec stack code to mulredc1,asm as it is not generated.
commit 1106ce1ec56d1ecfb8b82ee3b60644f41289eab9
Author: François Bissey <[email protected]>
Date: Tue Jun 15 11:20:54 2021 +1200
Add appropriate assembly code at the end of the m4 templates with appropriate quoting.
commit ab8338134ac854cfda7e17eda01bb1084303b422
Author: François Bissey <[email protected]>
Date: Tue Jun 15 11:17:37 2021 +1200
We don't plan to rely on --noexecstak anymore so removing detection and inclusion
commit 4013d15f6cc7d16e05b79a14e32116870f25f450
Merge: 1f5b919 8c75c05
Author: Brian Gladman <[email protected]>
Date: Tue Jan 26 18:29:11 2021 +0000
Merge branch 'master' of gitlab.inria.fr:zimmerma/ecm
commit 1f5b919e714e06364db3be2d1265755e4129d387
Author: Brian Gladman <[email protected]>
Date: Tue Jan 26 18:28:51 2021 +0000
Update to CUDA 11.2
commit 8c75c05d6272282c8c3f3730294e6109dd4351f8
Merge: 59bdbef 3d26545
Author: David Cleaver <[email protected]>
Date: Wed Nov 18 20:00:12 2020 +0100
Merge branch 'update-todo' into 'master'
Remove primality proving from TODO
See merge request zimmerma/ecm!4
commit 3d2654571a187cbb24b3d19cf270c5fafb100687
Author: David Cleaver <[email protected]>
Date: Wed Nov 18 12:57:33 2020 -0600
Remove primality proving from TODO
commit 59bdbef9c14ab95b17f86b7824739fa194902896
Author: David Cleaver <[email protected]>
Date: Wed Nov 18 19:27:28 2020 +0100
Add config file for gitlab ci
commit 554ca5c95f8410e8dc5811c2d7d02b1945de53e8
Author: Paul Zimmermann <[email protected]>
Date: Fri Nov 6 15:06:51 2020 +0100
added tag for 6.0.1
commit d875a8beff22eba4729b0fe010e687fab6a79a04
Author: Paul Zimmermann <[email protected]>
Date: Wed Nov 4 10:44:57 2020 +0100
update README.dev for change to git
commit 009acd453a0a29ccfb57ffdd74af6cfad48be437
Author: Brian Gladman <[email protected]>
Date: Tue Nov 3 14:56:40 2020 +0000
Reinstate a declaration required by Visual C's out of date Open MP version
commit 940c757cda8e4b51edb3923b21040ca779584911
Merge: 2d7cfb2 35af4b5
Author: Brian Gladman <[email protected]>
Date: Tue Nov 3 12:06:41 2020 +0000
Merge branch 'master' of gitlab.inria.fr:zimmerma/ecm
commit 2d7cfb2d1e18721bf9ef0d93ecd5b0edd6e1937f
Author: Brian Gladman <[email protected]>
Date: Wed Oct 28 17:04:04 2020 +0000
Update Visual Studio 2019 build to CUDA 11.1
commit 35af4b5ff0e74c8015dc543b55c7432d9b246f16
Author: Paul Zimmermann <[email protected]>
Date: Fri Oct 23 16:02:45 2020 +0200
added note
commit cbfad99a5cd4f33a2c02c7b8bacaa099ebba7a81
Merge: fa2b11e a61ff7b
Author: ZIMMERMANN Paul <[email protected]>
Date: Fri Oct 23 12:27:26 2020 +0200
Merge branch 'clang_openmp' into 'master'
unsigned long are now acceptable variable for openMP
Closes #21857
See merge request zimmerma/ecm!3
commit a61ff7bd9b30f7d2ec8bda44a9c23f951a58333a
Author: François Bissey <[email protected]>
Date: Fri Oct 23 22:10:12 2020 +1300
unsigned long are now acceptable variable for openMP
commit fa2b11ea408c33ea62f14494db915d55e4f28302
Author: Paul Zimmermann <[email protected]>
Date: Fri Oct 23 10:14:40 2020 +0200
fixed typo
commit 2349ef93fe4ab99b6dc3390b98bdfccbbbde4a04
Author: Paul Zimmermann <[email protected]>
Date: Thu Oct 22 10:40:23 2020 +0200
fixed memory leaks
(reported by Bruno Victal <brunovictal at outlook dot com>)
commit 09c5a3634b2101c56a94755fe647b4e953b41ba8
Author: Paul Zimmermann <[email protected]>
Date: Tue Oct 20 16:49:37 2020 +0200
updated references to ecm-discuss list and archives
commit 3566332e4d56c8bbe0d8d4e34001d8d107407a41
Author: Paul Zimmermann <[email protected]>
Date: Wed Oct 14 09:54:08 2020 +0200
fixed "make longcheck" (reported by Christoph Conrads)
commit c8eb7861219d9b43f2652ab84f0b93a4fbae8540
Author: Paul Zimmermann <[email protected]>
Date: Fri Oct 9 16:31:18 2020 +0200
added Jim Fougeron in .mailmap
commit 30611601cc78676deb73d7db65c4234793a78993
Author: Paul Zimmermann <[email protected]>
Date: Fri Oct 9 16:21:04 2020 +0200
added .mailmap
commit 54b2c2197dd1a8a57a16f11777aff71a12a8e1be
Author: Paul Zimmermann <[email protected]>
Date: Mon Sep 28 13:33:38 2020 +0000
fix another issue reported by Wang Runsen
(https://lists.gforge.inria.fr/pipermail/ecm-discuss/2020-August/004495.html)
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3092 404564d9-a503-0410-82bf-e18ce2cf3989
commit 6124ff41afe7343080c0a2117d4ae83433e91eb9
Author: Paul Zimmermann <[email protected]>
Date: Mon Sep 28 13:12:23 2020 +0000
fixed bug reported by Wang Runsen
(https://lists.gforge.inria.fr/pipermail/ecm-discuss/2020-August/004492.html)
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3091 404564d9-a503-0410-82bf-e18ce2cf3989
commit 058c64c80cdeb16f0ff8e8d409c57ff50db714d6
Author: Paul Zimmermann <[email protected]>
Date: Mon Sep 28 12:26:56 2020 +0000
fixed problem reported by Christoph Conrads
(https://gforge.inria.fr/tracker/index.php?func=detail&aid=21755&group_id=135&atid=626)
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3090 404564d9-a503-0410-82bf-e18ce2cf3989
commit 8fbb2809afe72799098e07d7c74fef4d6febbf70
Author: Paul Zimmermann <[email protected]>
Date: Fri Sep 18 14:44:26 2020 +0000
fix for clang 12 from Apple's Xcode 12
(https://gforge.inria.fr/tracker/?func=detail&atid=623&aid=21856&group_id=135)
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3089 404564d9-a503-0410-82bf-e18ce2cf3989
commit 388d48e8997ef1b3cceffd84479425c98eb9898f
Author: Brian Gladman <[email protected]>
Date: Mon Jul 27 12:16:12 2020 +0000
remove *.obj file
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3088 404564d9-a503-0410-82bf-e18ce2cf3989
commit b22add97119f0f7b558040ac7d15a5bdb501a4c1
Author: Brian Gladman <[email protected]>
Date: Mon Jul 27 11:40:30 2020 +0000
update Visual Studio 2019 build to use CUDA 11.0
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3087 404564d9-a503-0410-82bf-e18ce2cf3989
commit 69c359dc5b4996449bd50ff8838edf90bc74765e
Author: Brian Gladman <[email protected]>
Date: Wed Jul 8 15:09:06 2020 +0000
update Visual Studio 2019 build to use CUDA 11.0
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3086 404564d9-a503-0410-82bf-e18ce2cf3989
commit ca7d4e2bda8f42bbf9ab60d201fa5496e012531c
Author: Paul Zimmermann <[email protected]>
Date: Fri May 22 07:47:51 2020 +0000
[INSTALL-ecm] added note related to GWNUM
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3085 404564d9-a503-0410-82bf-e18ce2cf3989
commit cf5e6273abe14d00878ebd62cc15e024adb1b8ad
Author: Paul Zimmermann <[email protected]>
Date: Thu May 21 06:39:58 2020 +0000
[Fgw.c] fix bug reported at https://mersenneforum.org/showthread.php?t=25559
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3084 404564d9-a503-0410-82bf-e18ce2cf3989
commit 114aa487e16c678eb95acb63c4d51450be33c46a
Author: Paul Zimmermann <[email protected]>
Date: Thu May 21 06:08:45 2020 +0000
[INSTALL-ecm] updated latest GWNUM version
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3083 404564d9-a503-0410-82bf-e18ce2cf3989
commit 2f35ffb44690ec51c6f1f9e15fd742ec41e90212
Author: Paul Zimmermann <[email protected]>
Date: Tue Apr 21 07:25:26 2020 +0000
partly revert previous commit (+ cast)
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3082 404564d9-a503-0410-82bf-e18ce2cf3989
commit 9e20ec01d4cbf11acbef5b31f47ef09fffa005d2
Author: Paul Zimmermann <[email protected]>
Date: Sun Apr 19 06:35:39 2020 +0000
use AC_PROG_CC_C99 + print fix
(https://lists.gforge.inria.fr/pipermail/ecm-discuss/2020-April/004485.html)
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3081 404564d9-a503-0410-82bf-e18ce2cf3989
commit 4ec21e29f65115a4fa36fe0d1a6e08366a82f464
Author: Paul Zimmermann <[email protected]>
Date: Fri Mar 20 15:17:28 2020 +0000
added comment
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3080 404564d9-a503-0410-82bf-e18ce2cf3989
commit 82d017b69ec96d50babdc57b11a012d9501eee03
Author: Paul Zimmermann <[email protected]>
Date: Fri Mar 20 15:09:52 2020 +0000
added ecm_reset()
git-svn-id: svn://scm.gforge.inria.fr/svnroot/ecm/trunk@3079 404564d9-a503-0410-82bf-e18ce2cf3989
commit c72938126f3c6be2cbd548958c85b06b30ed6f78