├── Changes ├── Makefile ├── README.NFS.md ├── README.QS.md ├── README.md ├── Readme ├── Readme.nfs ├── Readme.qs ├── aprcl ├── jacobi_sum32.h ├── mpz_aprcl32.c └── mpz_aprcl32.h ├── 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 │ ├── cpu │ │ ├── lanczos_cpu.h │ │ ├── lanczos_matmul0.c │ │ ├── lanczos_matmul1.c │ │ ├── lanczos_matmul2.c │ │ └── lanczos_vv.c │ ├── lanczos.c │ ├── lanczos.h │ ├── lanczos_io.c │ ├── lanczos_matmul.c │ ├── lanczos_pre.c │ ├── lanczos_reorder.c │ └── matmul_util.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 ├── thread.c └── util.c ├── cub ├── Makefile ├── cub │ ├── agent │ │ ├── agent_histogram.cuh │ │ ├── agent_radix_sort_downsweep.cuh │ │ ├── agent_radix_sort_upsweep.cuh │ │ ├── agent_reduce.cuh │ │ ├── agent_reduce_by_key.cuh │ │ ├── agent_rle.cuh │ │ ├── agent_scan.cuh │ │ ├── agent_segment_fixup.cuh │ │ ├── agent_select_if.cuh │ │ ├── agent_spmv_csrt.cuh │ │ ├── agent_spmv_orig.cuh │ │ ├── agent_spmv_row_based.cuh │ │ └── single_pass_scan_operators.cuh │ ├── block │ │ ├── block_adjacent_difference.cuh │ │ ├── block_discontinuity.cuh │ │ ├── block_exchange.cuh │ │ ├── block_histogram.cuh │ │ ├── block_load.cuh │ │ ├── block_radix_rank.cuh │ │ ├── block_radix_sort.cuh │ │ ├── block_raking_layout.cuh │ │ ├── block_reduce.cuh │ │ ├── block_reduce_by_key.cuh │ │ ├── block_scan.cuh │ │ ├── block_shuffle.cuh │ │ ├── block_store.cuh │ │ └── specializations │ │ │ ├── block_histogram_atomic.cuh │ │ │ ├── block_histogram_sort.cuh │ │ │ ├── block_reduce_raking.cuh │ │ │ ├── block_reduce_raking_commutative_only.cuh │ │ │ ├── block_reduce_warp_reductions.cuh │ │ │ ├── block_scan_raking.cuh │ │ │ ├── block_scan_warp_scans.cuh │ │ │ ├── block_scan_warp_scans2.cuh │ │ │ └── block_scan_warp_scans3.cuh │ ├── cub.cuh │ ├── device │ │ ├── device_histogram.cuh │ │ ├── device_partition.cuh │ │ ├── device_radix_sort.cuh │ │ ├── device_reduce.cuh │ │ ├── device_run_length_encode.cuh │ │ ├── device_scan.cuh │ │ ├── device_segmented_radix_sort.cuh │ │ ├── device_segmented_reduce.cuh │ │ ├── device_select.cuh │ │ ├── device_spmv.cuh │ │ └── dispatch │ │ │ ├── dispatch_histogram.cuh │ │ │ ├── dispatch_radix_sort.cuh │ │ │ ├── dispatch_reduce.cuh │ │ │ ├── dispatch_reduce_by_key.cuh │ │ │ ├── dispatch_rle.cuh │ │ │ ├── dispatch_scan.cuh │ │ │ ├── dispatch_select_if.cuh │ │ │ ├── dispatch_spmv_csrt.cuh │ │ │ ├── dispatch_spmv_orig.cuh │ │ │ └── dispatch_spmv_row_based.cuh │ ├── grid │ │ ├── grid_barrier.cuh │ │ ├── grid_even_share.cuh │ │ ├── grid_mapping.cuh │ │ └── grid_queue.cuh │ ├── host │ │ ├── mutex.cuh │ │ └── spinlock.cuh │ ├── iterator │ │ ├── arg_index_input_iterator.cuh │ │ ├── cache_modified_input_iterator.cuh │ │ ├── cache_modified_output_iterator.cuh │ │ ├── constant_input_iterator.cuh │ │ ├── counting_input_iterator.cuh │ │ ├── discard_output_iterator.cuh │ │ ├── tex_obj_input_iterator.cuh │ │ ├── tex_ref_input_iterator.cuh │ │ └── transform_input_iterator.cuh │ ├── thread │ │ ├── thread_load.cuh │ │ ├── thread_operators.cuh │ │ ├── thread_reduce.cuh │ │ ├── thread_scan.cuh │ │ ├── thread_search.cuh │ │ └── thread_store.cuh │ ├── util_allocator.cuh │ ├── util_arch.cuh │ ├── util_debug.cuh │ ├── util_device.cuh │ ├── util_macro.cuh │ ├── util_namespace.cuh │ ├── util_ptx.cuh │ ├── util_type.cuh │ └── warp │ │ ├── specializations │ │ ├── warp_reduce_shfl.cuh │ │ ├── warp_reduce_smem.cuh │ │ ├── warp_scan_shfl.cuh │ │ └── warp_scan_smem.cuh │ │ ├── warp_reduce.cuh │ │ └── warp_scan.cuh ├── sort_engine.cu └── sort_engine.h ├── 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_param.c │ ├── poly_skew.c │ ├── poly_skew.h │ ├── polyutil.c │ ├── root_score.c │ ├── size_score.c │ ├── stage1 │ │ ├── cpu_intrinsics.h │ │ ├── stage1.c │ │ ├── stage1.h │ │ ├── stage1_core_gpu │ │ │ ├── cuda_intrinsics.h │ │ │ ├── stage1_core.cu │ │ │ └── stage1_core.h │ │ ├── stage1_roots.c │ │ ├── stage1_sieve_cpu.c │ │ └── stage1_sieve_gpu.c │ └── stage2 │ │ ├── optimize.c │ │ ├── optimize_deg6.c │ │ ├── root_sieve.c │ │ ├── root_sieve_deg45_x.c │ │ ├── root_sieve_deg5_xy.c │ │ ├── root_sieve_deg6_x.c │ │ ├── root_sieve_deg6_xy.c │ │ ├── root_sieve_deg6_xyz.c │ │ ├── root_sieve_line.c │ │ ├── root_sieve_util.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 ├── thread.h └── util.h ├── mpqs ├── gf2.c ├── mpqs.c ├── mpqs.h ├── poly.c ├── relation.c ├── sieve.c ├── sieve_core.c └── sqrt.c └── zlib ├── adler32.c ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── masmx64 ├── gvmat64.asm ├── inffas8664.c └── inffasx64.asm ├── masmx86 ├── inffas32.asm └── match686.asm ├── minigzip.c ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zlib.h ├── zutil.c └── zutil.h /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/Changes -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/Makefile -------------------------------------------------------------------------------- /README.NFS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/README.NFS.md -------------------------------------------------------------------------------- /README.QS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/README.QS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/README.md -------------------------------------------------------------------------------- /Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/Readme -------------------------------------------------------------------------------- /Readme.nfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/Readme.nfs -------------------------------------------------------------------------------- /Readme.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/Readme.qs -------------------------------------------------------------------------------- /aprcl/jacobi_sum32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/aprcl/jacobi_sum32.h -------------------------------------------------------------------------------- /aprcl/mpz_aprcl32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/aprcl/mpz_aprcl32.c -------------------------------------------------------------------------------- /aprcl/mpz_aprcl32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/aprcl/mpz_aprcl32.h -------------------------------------------------------------------------------- /common/batch_factor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/batch_factor.c -------------------------------------------------------------------------------- /common/cuda_xface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/cuda_xface.c -------------------------------------------------------------------------------- /common/dickman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/dickman.c -------------------------------------------------------------------------------- /common/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/driver.c -------------------------------------------------------------------------------- /common/expr_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/expr_eval.c -------------------------------------------------------------------------------- /common/filter/clique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/filter/clique.c -------------------------------------------------------------------------------- /common/filter/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/filter/filter.c -------------------------------------------------------------------------------- /common/filter/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/filter/filter.h -------------------------------------------------------------------------------- /common/filter/filter_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/filter/filter_priv.h -------------------------------------------------------------------------------- /common/filter/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/filter/merge.c -------------------------------------------------------------------------------- /common/filter/merge_post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/filter/merge_post.c -------------------------------------------------------------------------------- /common/filter/merge_pre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/filter/merge_pre.c -------------------------------------------------------------------------------- /common/filter/merge_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/filter/merge_util.c -------------------------------------------------------------------------------- /common/filter/merge_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/filter/merge_util.h -------------------------------------------------------------------------------- /common/filter/singleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/filter/singleton.c -------------------------------------------------------------------------------- /common/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/hashtable.c -------------------------------------------------------------------------------- /common/integrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/integrate.c -------------------------------------------------------------------------------- /common/lanczos/cpu/lanczos_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/lanczos/cpu/lanczos_cpu.h -------------------------------------------------------------------------------- /common/lanczos/cpu/lanczos_matmul0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/lanczos/cpu/lanczos_matmul0.c -------------------------------------------------------------------------------- /common/lanczos/cpu/lanczos_matmul1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/lanczos/cpu/lanczos_matmul1.c -------------------------------------------------------------------------------- /common/lanczos/cpu/lanczos_matmul2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/lanczos/cpu/lanczos_matmul2.c -------------------------------------------------------------------------------- /common/lanczos/cpu/lanczos_vv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/lanczos/cpu/lanczos_vv.c -------------------------------------------------------------------------------- /common/lanczos/lanczos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/lanczos/lanczos.c -------------------------------------------------------------------------------- /common/lanczos/lanczos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/lanczos/lanczos.h -------------------------------------------------------------------------------- /common/lanczos/lanczos_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/lanczos/lanczos_io.c -------------------------------------------------------------------------------- /common/lanczos/lanczos_matmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/lanczos/lanczos_matmul.c -------------------------------------------------------------------------------- /common/lanczos/lanczos_pre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/lanczos/lanczos_pre.c -------------------------------------------------------------------------------- /common/lanczos/lanczos_reorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/lanczos/lanczos_reorder.c -------------------------------------------------------------------------------- /common/lanczos/matmul_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/lanczos/matmul_util.c -------------------------------------------------------------------------------- /common/minimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/minimize.c -------------------------------------------------------------------------------- /common/minimize_global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/minimize_global.c -------------------------------------------------------------------------------- /common/mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/mp.c -------------------------------------------------------------------------------- /common/polyroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/polyroot.c -------------------------------------------------------------------------------- /common/prime_delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/prime_delta.c -------------------------------------------------------------------------------- /common/prime_sieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/prime_sieve.c -------------------------------------------------------------------------------- /common/savefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/savefile.c -------------------------------------------------------------------------------- /common/smallfact/gmp_ecm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/smallfact/gmp_ecm.c -------------------------------------------------------------------------------- /common/smallfact/smallfact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/smallfact/smallfact.c -------------------------------------------------------------------------------- /common/smallfact/squfof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/smallfact/squfof.c -------------------------------------------------------------------------------- /common/smallfact/tinyqs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/smallfact/tinyqs.c -------------------------------------------------------------------------------- /common/strtoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/strtoll.c -------------------------------------------------------------------------------- /common/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/thread.c -------------------------------------------------------------------------------- /common/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/common/util.c -------------------------------------------------------------------------------- /cub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/Makefile -------------------------------------------------------------------------------- /cub/cub/agent/agent_histogram.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/agent_histogram.cuh -------------------------------------------------------------------------------- /cub/cub/agent/agent_radix_sort_downsweep.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/agent_radix_sort_downsweep.cuh -------------------------------------------------------------------------------- /cub/cub/agent/agent_radix_sort_upsweep.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/agent_radix_sort_upsweep.cuh -------------------------------------------------------------------------------- /cub/cub/agent/agent_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/agent_reduce.cuh -------------------------------------------------------------------------------- /cub/cub/agent/agent_reduce_by_key.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/agent_reduce_by_key.cuh -------------------------------------------------------------------------------- /cub/cub/agent/agent_rle.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/agent_rle.cuh -------------------------------------------------------------------------------- /cub/cub/agent/agent_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/agent_scan.cuh -------------------------------------------------------------------------------- /cub/cub/agent/agent_segment_fixup.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/agent_segment_fixup.cuh -------------------------------------------------------------------------------- /cub/cub/agent/agent_select_if.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/agent_select_if.cuh -------------------------------------------------------------------------------- /cub/cub/agent/agent_spmv_csrt.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/agent_spmv_csrt.cuh -------------------------------------------------------------------------------- /cub/cub/agent/agent_spmv_orig.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/agent_spmv_orig.cuh -------------------------------------------------------------------------------- /cub/cub/agent/agent_spmv_row_based.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/agent_spmv_row_based.cuh -------------------------------------------------------------------------------- /cub/cub/agent/single_pass_scan_operators.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/agent/single_pass_scan_operators.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_adjacent_difference.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_adjacent_difference.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_discontinuity.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_discontinuity.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_exchange.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_exchange.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_histogram.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_histogram.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_load.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_load.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_radix_rank.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_radix_rank.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_radix_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_radix_sort.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_raking_layout.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_raking_layout.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_reduce.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_reduce_by_key.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_reduce_by_key.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_scan.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_shuffle.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_shuffle.cuh -------------------------------------------------------------------------------- /cub/cub/block/block_store.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/block_store.cuh -------------------------------------------------------------------------------- /cub/cub/block/specializations/block_histogram_atomic.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/specializations/block_histogram_atomic.cuh -------------------------------------------------------------------------------- /cub/cub/block/specializations/block_histogram_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/specializations/block_histogram_sort.cuh -------------------------------------------------------------------------------- /cub/cub/block/specializations/block_reduce_raking.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/specializations/block_reduce_raking.cuh -------------------------------------------------------------------------------- /cub/cub/block/specializations/block_reduce_raking_commutative_only.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/specializations/block_reduce_raking_commutative_only.cuh -------------------------------------------------------------------------------- /cub/cub/block/specializations/block_reduce_warp_reductions.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/specializations/block_reduce_warp_reductions.cuh -------------------------------------------------------------------------------- /cub/cub/block/specializations/block_scan_raking.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/specializations/block_scan_raking.cuh -------------------------------------------------------------------------------- /cub/cub/block/specializations/block_scan_warp_scans.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/specializations/block_scan_warp_scans.cuh -------------------------------------------------------------------------------- /cub/cub/block/specializations/block_scan_warp_scans2.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/specializations/block_scan_warp_scans2.cuh -------------------------------------------------------------------------------- /cub/cub/block/specializations/block_scan_warp_scans3.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/block/specializations/block_scan_warp_scans3.cuh -------------------------------------------------------------------------------- /cub/cub/cub.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/cub.cuh -------------------------------------------------------------------------------- /cub/cub/device/device_histogram.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/device_histogram.cuh -------------------------------------------------------------------------------- /cub/cub/device/device_partition.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/device_partition.cuh -------------------------------------------------------------------------------- /cub/cub/device/device_radix_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/device_radix_sort.cuh -------------------------------------------------------------------------------- /cub/cub/device/device_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/device_reduce.cuh -------------------------------------------------------------------------------- /cub/cub/device/device_run_length_encode.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/device_run_length_encode.cuh -------------------------------------------------------------------------------- /cub/cub/device/device_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/device_scan.cuh -------------------------------------------------------------------------------- /cub/cub/device/device_segmented_radix_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/device_segmented_radix_sort.cuh -------------------------------------------------------------------------------- /cub/cub/device/device_segmented_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/device_segmented_reduce.cuh -------------------------------------------------------------------------------- /cub/cub/device/device_select.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/device_select.cuh -------------------------------------------------------------------------------- /cub/cub/device/device_spmv.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/device_spmv.cuh -------------------------------------------------------------------------------- /cub/cub/device/dispatch/dispatch_histogram.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/dispatch/dispatch_histogram.cuh -------------------------------------------------------------------------------- /cub/cub/device/dispatch/dispatch_radix_sort.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/dispatch/dispatch_radix_sort.cuh -------------------------------------------------------------------------------- /cub/cub/device/dispatch/dispatch_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/dispatch/dispatch_reduce.cuh -------------------------------------------------------------------------------- /cub/cub/device/dispatch/dispatch_reduce_by_key.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/dispatch/dispatch_reduce_by_key.cuh -------------------------------------------------------------------------------- /cub/cub/device/dispatch/dispatch_rle.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/dispatch/dispatch_rle.cuh -------------------------------------------------------------------------------- /cub/cub/device/dispatch/dispatch_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/dispatch/dispatch_scan.cuh -------------------------------------------------------------------------------- /cub/cub/device/dispatch/dispatch_select_if.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/dispatch/dispatch_select_if.cuh -------------------------------------------------------------------------------- /cub/cub/device/dispatch/dispatch_spmv_csrt.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/dispatch/dispatch_spmv_csrt.cuh -------------------------------------------------------------------------------- /cub/cub/device/dispatch/dispatch_spmv_orig.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/dispatch/dispatch_spmv_orig.cuh -------------------------------------------------------------------------------- /cub/cub/device/dispatch/dispatch_spmv_row_based.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/device/dispatch/dispatch_spmv_row_based.cuh -------------------------------------------------------------------------------- /cub/cub/grid/grid_barrier.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/grid/grid_barrier.cuh -------------------------------------------------------------------------------- /cub/cub/grid/grid_even_share.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/grid/grid_even_share.cuh -------------------------------------------------------------------------------- /cub/cub/grid/grid_mapping.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/grid/grid_mapping.cuh -------------------------------------------------------------------------------- /cub/cub/grid/grid_queue.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/grid/grid_queue.cuh -------------------------------------------------------------------------------- /cub/cub/host/mutex.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/host/mutex.cuh -------------------------------------------------------------------------------- /cub/cub/host/spinlock.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/host/spinlock.cuh -------------------------------------------------------------------------------- /cub/cub/iterator/arg_index_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/iterator/arg_index_input_iterator.cuh -------------------------------------------------------------------------------- /cub/cub/iterator/cache_modified_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/iterator/cache_modified_input_iterator.cuh -------------------------------------------------------------------------------- /cub/cub/iterator/cache_modified_output_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/iterator/cache_modified_output_iterator.cuh -------------------------------------------------------------------------------- /cub/cub/iterator/constant_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/iterator/constant_input_iterator.cuh -------------------------------------------------------------------------------- /cub/cub/iterator/counting_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/iterator/counting_input_iterator.cuh -------------------------------------------------------------------------------- /cub/cub/iterator/discard_output_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/iterator/discard_output_iterator.cuh -------------------------------------------------------------------------------- /cub/cub/iterator/tex_obj_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/iterator/tex_obj_input_iterator.cuh -------------------------------------------------------------------------------- /cub/cub/iterator/tex_ref_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/iterator/tex_ref_input_iterator.cuh -------------------------------------------------------------------------------- /cub/cub/iterator/transform_input_iterator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/iterator/transform_input_iterator.cuh -------------------------------------------------------------------------------- /cub/cub/thread/thread_load.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/thread/thread_load.cuh -------------------------------------------------------------------------------- /cub/cub/thread/thread_operators.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/thread/thread_operators.cuh -------------------------------------------------------------------------------- /cub/cub/thread/thread_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/thread/thread_reduce.cuh -------------------------------------------------------------------------------- /cub/cub/thread/thread_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/thread/thread_scan.cuh -------------------------------------------------------------------------------- /cub/cub/thread/thread_search.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/thread/thread_search.cuh -------------------------------------------------------------------------------- /cub/cub/thread/thread_store.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/thread/thread_store.cuh -------------------------------------------------------------------------------- /cub/cub/util_allocator.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/util_allocator.cuh -------------------------------------------------------------------------------- /cub/cub/util_arch.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/util_arch.cuh -------------------------------------------------------------------------------- /cub/cub/util_debug.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/util_debug.cuh -------------------------------------------------------------------------------- /cub/cub/util_device.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/util_device.cuh -------------------------------------------------------------------------------- /cub/cub/util_macro.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/util_macro.cuh -------------------------------------------------------------------------------- /cub/cub/util_namespace.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/util_namespace.cuh -------------------------------------------------------------------------------- /cub/cub/util_ptx.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/util_ptx.cuh -------------------------------------------------------------------------------- /cub/cub/util_type.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/util_type.cuh -------------------------------------------------------------------------------- /cub/cub/warp/specializations/warp_reduce_shfl.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/warp/specializations/warp_reduce_shfl.cuh -------------------------------------------------------------------------------- /cub/cub/warp/specializations/warp_reduce_smem.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/warp/specializations/warp_reduce_smem.cuh -------------------------------------------------------------------------------- /cub/cub/warp/specializations/warp_scan_shfl.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/warp/specializations/warp_scan_shfl.cuh -------------------------------------------------------------------------------- /cub/cub/warp/specializations/warp_scan_smem.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/warp/specializations/warp_scan_smem.cuh -------------------------------------------------------------------------------- /cub/cub/warp/warp_reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/warp/warp_reduce.cuh -------------------------------------------------------------------------------- /cub/cub/warp/warp_scan.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/cub/warp/warp_scan.cuh -------------------------------------------------------------------------------- /cub/sort_engine.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/sort_engine.cu -------------------------------------------------------------------------------- /cub/sort_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/cub/sort_engine.h -------------------------------------------------------------------------------- /demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/demo.c -------------------------------------------------------------------------------- /gnfs/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/fb.c -------------------------------------------------------------------------------- /gnfs/ffpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/ffpoly.c -------------------------------------------------------------------------------- /gnfs/filter/duplicate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/filter/duplicate.c -------------------------------------------------------------------------------- /gnfs/filter/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/filter/filter.c -------------------------------------------------------------------------------- /gnfs/filter/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/filter/filter.h -------------------------------------------------------------------------------- /gnfs/filter/singleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/filter/singleton.c -------------------------------------------------------------------------------- /gnfs/gf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/gf2.c -------------------------------------------------------------------------------- /gnfs/gnfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/gnfs.c -------------------------------------------------------------------------------- /gnfs/gnfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/gnfs.h -------------------------------------------------------------------------------- /gnfs/poly/poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/poly.c -------------------------------------------------------------------------------- /gnfs/poly/poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/poly.h -------------------------------------------------------------------------------- /gnfs/poly/poly_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/poly_param.c -------------------------------------------------------------------------------- /gnfs/poly/poly_skew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/poly_skew.c -------------------------------------------------------------------------------- /gnfs/poly/poly_skew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/poly_skew.h -------------------------------------------------------------------------------- /gnfs/poly/polyutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/polyutil.c -------------------------------------------------------------------------------- /gnfs/poly/root_score.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/root_score.c -------------------------------------------------------------------------------- /gnfs/poly/size_score.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/size_score.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/cpu_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage1/cpu_intrinsics.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage1/stage1.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage1/stage1.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/cuda_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/cuda_intrinsics.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core.cu -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_core_gpu/stage1_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage1/stage1_core_gpu/stage1_core.h -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_roots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage1/stage1_roots.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_sieve_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage1/stage1_sieve_cpu.c -------------------------------------------------------------------------------- /gnfs/poly/stage1/stage1_sieve_gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage1/stage1_sieve_gpu.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage2/optimize.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/optimize_deg6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage2/optimize_deg6.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage2/root_sieve.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve_deg45_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage2/root_sieve_deg45_x.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve_deg5_xy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage2/root_sieve_deg5_xy.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve_deg6_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage2/root_sieve_deg6_x.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve_deg6_xy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage2/root_sieve_deg6_xy.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve_deg6_xyz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage2/root_sieve_deg6_xyz.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage2/root_sieve_line.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/root_sieve_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage2/root_sieve_util.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/stage2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage2/stage2.c -------------------------------------------------------------------------------- /gnfs/poly/stage2/stage2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/poly/stage2/stage2.h -------------------------------------------------------------------------------- /gnfs/relation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/relation.c -------------------------------------------------------------------------------- /gnfs/sieve/sieve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/sieve/sieve.h -------------------------------------------------------------------------------- /gnfs/sieve/sieve_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/sieve/sieve_line.c -------------------------------------------------------------------------------- /gnfs/sieve/sieve_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/sieve/sieve_util.c -------------------------------------------------------------------------------- /gnfs/sqrt/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/sqrt/sqrt.c -------------------------------------------------------------------------------- /gnfs/sqrt/sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/sqrt/sqrt.h -------------------------------------------------------------------------------- /gnfs/sqrt/sqrt_a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/gnfs/sqrt/sqrt_a.c -------------------------------------------------------------------------------- /include/batch_factor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/include/batch_factor.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/include/common.h -------------------------------------------------------------------------------- /include/cuda_xface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/include/cuda_xface.h -------------------------------------------------------------------------------- /include/dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/include/dd.h -------------------------------------------------------------------------------- /include/ddcomplex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/include/ddcomplex.h -------------------------------------------------------------------------------- /include/gmp_xface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/include/gmp_xface.h -------------------------------------------------------------------------------- /include/integrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/include/integrate.h -------------------------------------------------------------------------------- /include/mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/include/mp.h -------------------------------------------------------------------------------- /include/msieve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/include/msieve.h -------------------------------------------------------------------------------- /include/polyroot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/include/polyroot.h -------------------------------------------------------------------------------- /include/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/include/thread.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/include/util.h -------------------------------------------------------------------------------- /mpqs/gf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/mpqs/gf2.c -------------------------------------------------------------------------------- /mpqs/mpqs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/mpqs/mpqs.c -------------------------------------------------------------------------------- /mpqs/mpqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/mpqs/mpqs.h -------------------------------------------------------------------------------- /mpqs/poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/mpqs/poly.c -------------------------------------------------------------------------------- /mpqs/relation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/mpqs/relation.c -------------------------------------------------------------------------------- /mpqs/sieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/mpqs/sieve.c -------------------------------------------------------------------------------- /mpqs/sieve_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/mpqs/sieve_core.c -------------------------------------------------------------------------------- /mpqs/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/mpqs/sqrt.c -------------------------------------------------------------------------------- /zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/adler32.c -------------------------------------------------------------------------------- /zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/compress.c -------------------------------------------------------------------------------- /zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/crc32.c -------------------------------------------------------------------------------- /zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/crc32.h -------------------------------------------------------------------------------- /zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/deflate.c -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/gzclose.c -------------------------------------------------------------------------------- /zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/gzguts.h -------------------------------------------------------------------------------- /zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/gzlib.c -------------------------------------------------------------------------------- /zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/gzread.c -------------------------------------------------------------------------------- /zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/gzwrite.c -------------------------------------------------------------------------------- /zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/infback.c -------------------------------------------------------------------------------- /zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/inffast.c -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/inflate.c -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/inftrees.c -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/masmx64/gvmat64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/masmx64/gvmat64.asm -------------------------------------------------------------------------------- /zlib/masmx64/inffas8664.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/masmx64/inffas8664.c -------------------------------------------------------------------------------- /zlib/masmx64/inffasx64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/masmx64/inffasx64.asm -------------------------------------------------------------------------------- /zlib/masmx86/inffas32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/masmx86/inffas32.asm -------------------------------------------------------------------------------- /zlib/masmx86/match686.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/masmx86/match686.asm -------------------------------------------------------------------------------- /zlib/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/minigzip.c -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/uncompr.c -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/zutil.c -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/upiter/msieve/HEAD/zlib/zutil.h --------------------------------------------------------------------------------