├── Changes ├── Makefile ├── Readme ├── Readme.nfs ├── Readme.qs ├── common ├── batch_factor.c ├── cuda_xface.c ├── dickman.c ├── driver.c ├── expr_eval.c ├── filter │ ├── clique.c │ ├── filter.c │ ├── filter.h │ ├── filter_priv.h │ ├── merge.c │ ├── merge_post.c │ ├── merge_pre.c │ ├── merge_util.c │ ├── merge_util.h │ └── singleton.c ├── hashtable.c ├── integrate.c ├── lanczos │ ├── lanczos.c │ ├── lanczos.h │ ├── lanczos_io.c │ ├── lanczos_matmul0.c │ ├── lanczos_matmul1.c │ ├── lanczos_matmul2.c │ ├── lanczos_pre.c │ └── lanczos_reorder.c ├── minimize.c ├── minimize_global.c ├── mp.c ├── polyroot.c ├── prime_delta.c ├── prime_sieve.c ├── savefile.c ├── smallfact │ ├── gmp_ecm.c │ ├── smallfact.c │ ├── squfof.c │ └── tinyqs.c ├── strtoll.c └── util.c ├── demo.c ├── gnfs ├── fb.c ├── ffpoly.c ├── filter │ ├── duplicate.c │ ├── filter.c │ ├── filter.h │ └── singleton.c ├── gf2.c ├── gnfs.c ├── gnfs.h ├── poly │ ├── poly.c │ ├── poly.h │ ├── poly_skew.c │ ├── poly_skew.h │ ├── polyutil.c │ ├── root_score.c │ ├── size_score.c │ ├── stage1 │ │ ├── stage1.c │ │ ├── stage1.h │ │ ├── stage1_core │ │ │ ├── cpu_intrinsics.h │ │ │ ├── stage1_sieve_deg46_64.c │ │ │ ├── stage1_sieve_deg5_128.c │ │ │ ├── stage1_sieve_deg5_64.c │ │ │ ├── stage1_sieve_deg5_96.c │ │ │ ├── stage1_sieve_deg6_128.c │ │ │ └── stage1_sieve_deg6_96.c │ │ ├── stage1_core_gpu │ │ │ ├── cuda_intrinsics.h │ │ │ ├── stage1_core_deg46_48.cu │ │ │ ├── stage1_core_deg46_64.cu │ │ │ ├── stage1_core_deg46_64.h │ │ │ ├── stage1_core_deg5_128.cu │ │ │ ├── stage1_core_deg5_128.h │ │ │ ├── stage1_core_deg5_48.cu │ │ │ ├── stage1_core_deg5_64.cu │ │ │ ├── stage1_core_deg5_64.h │ │ │ ├── stage1_core_deg5_72.cu │ │ │ ├── stage1_core_deg5_96.cu │ │ │ ├── stage1_core_deg5_96.h │ │ │ ├── stage1_core_deg6_128.cu │ │ │ ├── stage1_core_deg6_128.h │ │ │ ├── stage1_core_deg6_72.cu │ │ │ ├── stage1_core_deg6_96.cu │ │ │ ├── stage1_core_deg6_96.h │ │ │ ├── stage1_sieve_deg46_64.c │ │ │ ├── stage1_sieve_deg5_128.c │ │ │ ├── stage1_sieve_deg5_64.c │ │ │ ├── stage1_sieve_deg5_96.c │ │ │ ├── stage1_sieve_deg6_128.c │ │ │ └── stage1_sieve_deg6_96.c │ │ ├── stage1_roots.c │ │ └── stage1_sieve.c │ └── stage2 │ │ ├── optimize.c │ │ ├── root_sieve.c │ │ ├── root_sieve_deg6.c │ │ ├── root_sieve_deg6_line.c │ │ ├── root_sieve_deg6_x.c │ │ ├── root_sieve_deg6_xy.c │ │ ├── root_sieve_deg6_xyz.c │ │ ├── stage2.c │ │ └── stage2.h ├── relation.c ├── sieve │ ├── sieve.h │ ├── sieve_line.c │ └── sieve_util.c └── sqrt │ ├── sqrt.c │ ├── sqrt.h │ └── sqrt_a.c ├── include ├── batch_factor.h ├── common.h ├── cuda_xface.h ├── dd.h ├── ddcomplex.h ├── gmp_xface.h ├── integrate.h ├── mp.h ├── msieve.h ├── polyroot.h └── util.h └── mpqs ├── gf2.c ├── mpqs.c ├── mpqs.h ├── poly.c ├── relation.c ├── sieve.c ├── sieve_core.c └── sqrt.c /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/Changes -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/Makefile -------------------------------------------------------------------------------- /Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/Readme -------------------------------------------------------------------------------- /Readme.nfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/Readme.nfs -------------------------------------------------------------------------------- /Readme.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/Readme.qs -------------------------------------------------------------------------------- /common/batch_factor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/batch_factor.c -------------------------------------------------------------------------------- /common/cuda_xface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/cuda_xface.c -------------------------------------------------------------------------------- /common/dickman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/dickman.c -------------------------------------------------------------------------------- /common/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/driver.c -------------------------------------------------------------------------------- /common/expr_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/expr_eval.c -------------------------------------------------------------------------------- /common/filter/clique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/filter/clique.c -------------------------------------------------------------------------------- /common/filter/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/filter/filter.c -------------------------------------------------------------------------------- /common/filter/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/filter/filter.h -------------------------------------------------------------------------------- /common/filter/filter_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/filter/filter_priv.h -------------------------------------------------------------------------------- /common/filter/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/filter/merge.c -------------------------------------------------------------------------------- /common/filter/merge_post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/filter/merge_post.c -------------------------------------------------------------------------------- /common/filter/merge_pre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/filter/merge_pre.c -------------------------------------------------------------------------------- /common/filter/merge_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/filter/merge_util.c -------------------------------------------------------------------------------- /common/filter/merge_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/filter/merge_util.h -------------------------------------------------------------------------------- /common/filter/singleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/filter/singleton.c -------------------------------------------------------------------------------- /common/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/hashtable.c -------------------------------------------------------------------------------- /common/integrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/integrate.c -------------------------------------------------------------------------------- /common/lanczos/lanczos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/lanczos/lanczos.c -------------------------------------------------------------------------------- /common/lanczos/lanczos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/lanczos/lanczos.h -------------------------------------------------------------------------------- /common/lanczos/lanczos_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/lanczos/lanczos_io.c -------------------------------------------------------------------------------- /common/lanczos/lanczos_matmul0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/lanczos/lanczos_matmul0.c -------------------------------------------------------------------------------- /common/lanczos/lanczos_matmul1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/lanczos/lanczos_matmul1.c -------------------------------------------------------------------------------- /common/lanczos/lanczos_matmul2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/lanczos/lanczos_matmul2.c -------------------------------------------------------------------------------- /common/lanczos/lanczos_pre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/lanczos/lanczos_pre.c -------------------------------------------------------------------------------- /common/lanczos/lanczos_reorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/lanczos/lanczos_reorder.c -------------------------------------------------------------------------------- /common/minimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/minimize.c -------------------------------------------------------------------------------- /common/minimize_global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/minimize_global.c -------------------------------------------------------------------------------- /common/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/mp.c -------------------------------------------------------------------------------- /common/polyroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/polyroot.c -------------------------------------------------------------------------------- /common/prime_delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/prime_delta.c -------------------------------------------------------------------------------- /common/prime_sieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/prime_sieve.c -------------------------------------------------------------------------------- /common/savefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/savefile.c -------------------------------------------------------------------------------- /common/smallfact/gmp_ecm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/smallfact/gmp_ecm.c -------------------------------------------------------------------------------- /common/smallfact/smallfact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/smallfact/smallfact.c -------------------------------------------------------------------------------- /common/smallfact/squfof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/smallfact/squfof.c -------------------------------------------------------------------------------- /common/smallfact/tinyqs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/smallfact/tinyqs.c -------------------------------------------------------------------------------- /common/strtoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/strtoll.c -------------------------------------------------------------------------------- /common/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/common/util.c -------------------------------------------------------------------------------- /demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/demo.c -------------------------------------------------------------------------------- /gnfs/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/fb.c -------------------------------------------------------------------------------- /gnfs/ffpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/ffpoly.c -------------------------------------------------------------------------------- /gnfs/filter/duplicate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/filter/duplicate.c -------------------------------------------------------------------------------- /gnfs/filter/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/filter/filter.c -------------------------------------------------------------------------------- /gnfs/filter/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/filter/filter.h -------------------------------------------------------------------------------- /gnfs/filter/singleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/filter/singleton.c -------------------------------------------------------------------------------- /gnfs/gf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/gf2.c -------------------------------------------------------------------------------- /gnfs/gnfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/gnfs.c -------------------------------------------------------------------------------- /gnfs/gnfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/gnfs.h -------------------------------------------------------------------------------- /gnfs/poly/poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/poly.c -------------------------------------------------------------------------------- /gnfs/poly/poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/poly.h -------------------------------------------------------------------------------- /gnfs/poly/poly_skew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/poly_skew.c -------------------------------------------------------------------------------- /gnfs/poly/poly_skew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/poly_skew.h -------------------------------------------------------------------------------- /gnfs/poly/polyutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/polyutil.c -------------------------------------------------------------------------------- /gnfs/poly/root_score.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/root_score.c -------------------------------------------------------------------------------- /gnfs/poly/size_score.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/size_score.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core/cpu_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core/cpu_intrinsics.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core/stage1_sieve_deg46_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core/stage1_sieve_deg46_64.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core/stage1_sieve_deg5_128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core/stage1_sieve_deg5_128.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core/stage1_sieve_deg5_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core/stage1_sieve_deg5_64.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core/stage1_sieve_deg5_96.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core/stage1_sieve_deg5_96.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core/stage1_sieve_deg6_128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core/stage1_sieve_deg6_128.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core/stage1_sieve_deg6_96.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core/stage1_sieve_deg6_96.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/cuda_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/cuda_intrinsics.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg46_48.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg46_48.cu -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg46_64.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg46_64.cu -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg46_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg46_64.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_128.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_128.cu -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_128.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_48.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_48.cu -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_64.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_64.cu -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_64.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_72.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_72.cu -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_96.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_96.cu -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_96.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg5_96.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg6_128.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg6_128.cu -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg6_128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg6_128.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg6_72.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg6_72.cu -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg6_96.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg6_96.cu -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg6_96.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core_deg6_96.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_sieve_deg46_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_sieve_deg46_64.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_sieve_deg5_128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_sieve_deg5_128.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_sieve_deg5_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_sieve_deg5_64.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_sieve_deg5_96.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_sieve_deg5_96.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_sieve_deg6_128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_sieve_deg6_128.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_sieve_deg6_96.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_sieve_deg6_96.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_roots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_roots.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_sieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage1/stage1_sieve.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage2/optimize.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage2/root_sieve.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve_deg6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage2/root_sieve_deg6.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve_deg6_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage2/root_sieve_deg6_line.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve_deg6_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage2/root_sieve_deg6_x.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve_deg6_xy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage2/root_sieve_deg6_xy.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve_deg6_xyz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage2/root_sieve_deg6_xyz.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/stage2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage2/stage2.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/stage2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/poly/stage2/stage2.h -------------------------------------------------------------------------------- /gnfs/relation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/relation.c -------------------------------------------------------------------------------- /gnfs/sieve/sieve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/sieve/sieve.h -------------------------------------------------------------------------------- /gnfs/sieve/sieve_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/sieve/sieve_line.c -------------------------------------------------------------------------------- /gnfs/sieve/sieve_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/sieve/sieve_util.c -------------------------------------------------------------------------------- /gnfs/sqrt/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/sqrt/sqrt.c -------------------------------------------------------------------------------- /gnfs/sqrt/sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/sqrt/sqrt.h -------------------------------------------------------------------------------- /gnfs/sqrt/sqrt_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/gnfs/sqrt/sqrt_a.c -------------------------------------------------------------------------------- /include/batch_factor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/include/batch_factor.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/include/common.h -------------------------------------------------------------------------------- /include/cuda_xface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/include/cuda_xface.h -------------------------------------------------------------------------------- /include/dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/include/dd.h -------------------------------------------------------------------------------- /include/ddcomplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/include/ddcomplex.h -------------------------------------------------------------------------------- /include/gmp_xface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/include/gmp_xface.h -------------------------------------------------------------------------------- /include/integrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/include/integrate.h -------------------------------------------------------------------------------- /include/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/include/mp.h -------------------------------------------------------------------------------- /include/msieve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/include/msieve.h -------------------------------------------------------------------------------- /include/polyroot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/include/polyroot.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/include/util.h -------------------------------------------------------------------------------- /mpqs/gf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/mpqs/gf2.c -------------------------------------------------------------------------------- /mpqs/mpqs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/mpqs/mpqs.c -------------------------------------------------------------------------------- /mpqs/mpqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/mpqs/mpqs.h -------------------------------------------------------------------------------- /mpqs/poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/mpqs/poly.c -------------------------------------------------------------------------------- /mpqs/relation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/mpqs/relation.c -------------------------------------------------------------------------------- /mpqs/sieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/mpqs/sieve.c -------------------------------------------------------------------------------- /mpqs/sieve_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/mpqs/sieve_core.c -------------------------------------------------------------------------------- /mpqs/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radii/msieve/HEAD/mpqs/sqrt.c --------------------------------------------------------------------------------