├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── Rules.mk ├── Rules.top ├── config.dox ├── config.h ├── config.mk ├── config.py ├── doc ├── EECS-2015-229.pdf ├── Makefile ├── Rules.mk ├── reference_manual.pdf └── reference_website.zip ├── examples ├── MPI_sum_sine.c ├── Makefile └── sum_sine.c ├── final.mk ├── include ├── MPI_reproBLAS.h ├── Makefile ├── Rules.mk ├── binned.h ├── binnedBLAS.h ├── binnedMPI.h └── reproBLAS.h ├── mk ├── Makefile ├── Readme.txt ├── build-debug.mk ├── build-profile.mk ├── build-release.mk ├── config-Cygwin-i686_Cygwin-i686.mk ├── config-Cygwin-i686_Linux-ppc.mk ├── config-Darwin-x86_64_Darwin-x86_64.mk ├── config-MinGW-i686_MinGW-i686.mk ├── config-SunOS-sun4u_SunOS-sun4u.mk ├── config-default.mk ├── config.mk ├── def_rules.mk ├── footer.mk ├── header.mk └── skel.mk ├── scripts ├── Makefile ├── Rules.mk ├── __init__.py ├── cogapp │ ├── PKG-INFO │ ├── README.txt │ ├── __init__.py │ ├── __main__.py │ ├── backward.py │ ├── cogapp.py │ ├── makefiles.py │ ├── test_cogapp.py │ ├── test_makefiles.py │ ├── test_whiteutils.py │ └── whiteutils.py ├── cpuinfo │ ├── LICENSE │ ├── __init__.py │ └── cpuinfo.py ├── getter.ccog ├── pseudocog.sh ├── terminal.py └── texttable │ ├── LICENSE │ ├── __init__.py │ └── texttable.py ├── src ├── Makefile ├── Rules.mk ├── __init__.py ├── binned │ ├── Makefile │ ├── Rules.mk │ ├── __init__.py │ ├── cballoc.c │ ├── cbcadd.c │ ├── cbcbadd.c │ ├── cbcbaddv.c │ ├── cbcbset.c │ ├── cbcconv.c │ ├── cbcdeposit.c │ ├── cbcupdate.c │ ├── cbnegate.c │ ├── cbnum.c │ ├── cbprint.c │ ├── cbrenorm.c │ ├── cbsbset.c │ ├── cbsetzero.c │ ├── cbsize.c │ ├── cbsupdate.c │ ├── ccbconv_sub.c │ ├── ccmconv_sub.c │ ├── cmcadd.c │ ├── cmcconv.c │ ├── cmcdeposit.c │ ├── cmcmadd.c │ ├── cmcmset.c │ ├── cmcupdate.c │ ├── cmdenorm.c │ ├── cmnegate.c │ ├── cmprint.c │ ├── cmrenorm.c │ ├── cmsetzero.c │ ├── cmsmset.c │ ├── cmsrescale.c │ ├── cmsupdate.c │ ├── dballoc.c │ ├── dbbound.c │ ├── dbdadd.c │ ├── dbdbadd.c │ ├── dbdbaddsq.c │ ├── dbdbaddv.c │ ├── dbdbset.c │ ├── dbdconv.c │ ├── dbddeposit.c │ ├── dbdupdate.c │ ├── dbnegate.c │ ├── dbnum.c │ ├── dbprint.c │ ├── dbrenorm.c │ ├── dbsetzero.c │ ├── dbsize.c │ ├── ddbconv.c │ ├── ddmconv.c │ ├── deposit.py │ ├── dindex.c │ ├── dmbins.c │ ├── dmdadd.c │ ├── dmdconv.c │ ├── dmddeposit.c │ ├── dmdenorm.c │ ├── dmdmadd.c │ ├── dmdmaddsq.c │ ├── dmdmset.c │ ├── dmdrescale.c │ ├── dmdupdate.c │ ├── dmindex.c │ ├── dmindex0.c │ ├── dmnegate.c │ ├── dmprint.c │ ├── dmrenorm.c │ ├── dmsetzero.c │ ├── dscale.c │ ├── sballoc.c │ ├── sbbound.c │ ├── sbnegate.c │ ├── sbnum.c │ ├── sbprint.c │ ├── sbrenorm.c │ ├── sbsadd.c │ ├── sbsbadd.c │ ├── sbsbaddsq.c │ ├── sbsbaddv.c │ ├── sbsbset.c │ ├── sbsbze.c │ ├── sbsconv.c │ ├── sbsdeposit.c │ ├── sbsetzero.c │ ├── sbsupdate.c │ ├── sindex.c │ ├── smbins.c │ ├── smdenorm.c │ ├── smindex.c │ ├── smindex0.c │ ├── smnegate.c │ ├── smprint.c │ ├── smrenorm.c │ ├── smsadd.c │ ├── smsconv.c │ ├── smsdeposit.c │ ├── smsetzero.c │ ├── smsmadd.c │ ├── smsmaddsq.c │ ├── smsmset.c │ ├── smsrescale.c │ ├── smsupdate.c │ ├── ssbconv.c │ ├── sscale.c │ ├── ssmconv.c │ ├── ufp.c │ ├── ufpf.c │ ├── zballoc.c │ ├── zbdbset.c │ ├── zbdupdate.c │ ├── zbnegate.c │ ├── zbnum.c │ ├── zbprint.c │ ├── zbrenorm.c │ ├── zbsetzero.c │ ├── zbsize.c │ ├── zbzadd.c │ ├── zbzbadd.c │ ├── zbzbaddv.c │ ├── zbzbset.c │ ├── zbzconv.c │ ├── zbzdeposit.c │ ├── zbzupdate.c │ ├── zmdenorm.c │ ├── zmdmset.c │ ├── zmdrescale.c │ ├── zmdupdate.c │ ├── zmnegate.c │ ├── zmprint.c │ ├── zmrenorm.c │ ├── zmsetzero.c │ ├── zmzadd.c │ ├── zmzconv.c │ ├── zmzdeposit.c │ ├── zmzmadd.c │ ├── zmzmset.c │ ├── zmzupdate.c │ ├── zzbconv_sub.c │ └── zzmconv_sub.c ├── binnedBLAS │ ├── Makefile │ ├── Rules.mk │ ├── amax.py │ ├── amaxm.py │ ├── camax_sub.ccog │ ├── camaxm_sub.ccog │ ├── cbcdotc.c │ ├── cbcdotu.c │ ├── cbcgemm.ccog │ ├── cbcgemv.ccog │ ├── cbcsum.c │ ├── cmcdotc.ccog │ ├── cmcdotu.ccog │ ├── cmcsum.ccog │ ├── damax.ccog │ ├── damaxm.ccog │ ├── dbdasum.c │ ├── dbddot.c │ ├── dbdgemm.ccog │ ├── dbdgemv.ccog │ ├── dbdssq.c │ ├── dbdsum.c │ ├── dbzasum.c │ ├── dbzssq.c │ ├── depositASum.py │ ├── depositDot.py │ ├── depositDotC.py │ ├── depositDotU.py │ ├── depositM.py │ ├── depositSSq.py │ ├── depositSum.py │ ├── dmdasum.ccog │ ├── dmddot.ccog │ ├── dmdssq.ccog │ ├── dmdsum.ccog │ ├── dmzasum.ccog │ ├── dmzssq.ccog │ ├── samax.ccog │ ├── samaxm.ccog │ ├── sbcasum.c │ ├── sbcssq.c │ ├── sbsasum.c │ ├── sbsdot.c │ ├── sbsgemm.ccog │ ├── sbsgemv.ccog │ ├── sbsssq.c │ ├── sbssum.c │ ├── smcasum.ccog │ ├── smcssq.ccog │ ├── smsasum.ccog │ ├── smsdot.ccog │ ├── smsssq.ccog │ ├── smssum.ccog │ ├── zamax_sub.ccog │ ├── zamaxm_sub.ccog │ ├── zbzdotc.c │ ├── zbzdotu.c │ ├── zbzgemm.ccog │ ├── zbzgemv.ccog │ ├── zbzsum.c │ ├── zmzdotc.ccog │ ├── zmzdotu.ccog │ └── zmzsum.ccog ├── binnedMPI │ ├── CBCBADD.ccog │ ├── DBDBADD.ccog │ ├── DBDBADDSQ.ccog │ ├── DOUBLE_BINNED.c │ ├── DOUBLE_BINNED_SCALED.c │ ├── DOUBLE_COMPLEX_BINNED.c │ ├── FLOAT_BINNED.c │ ├── FLOAT_BINNED_SCALED.c │ ├── FLOAT_COMPLEX_BINNED.c │ ├── Makefile │ ├── Rules.mk │ ├── SBSBADD.ccog │ ├── SBSBADDSQ.ccog │ └── ZBZBADD.ccog ├── common │ ├── Makefile │ ├── Rules.mk │ ├── __init__.py │ ├── blockSize.py │ └── common.h ├── default_args.json ├── gen │ ├── __init__.py │ ├── dataTypes.py │ ├── default_args.py │ ├── generate.py │ ├── utils.py │ └── vectorizations.py ├── params.json ├── reproBLAS │ ├── Makefile │ ├── Rules.mk │ ├── cdotc_sub.c │ ├── cdotu_sub.c │ ├── cgemm.c │ ├── cgemv.c │ ├── csum_sub.c │ ├── dasum.c │ ├── ddot.c │ ├── dgemm.c │ ├── dgemv.c │ ├── dnrm2.c │ ├── dsum.c │ ├── dzasum.c │ ├── dznrm2.c │ ├── rcdotc_sub.c │ ├── rcdotu_sub.c │ ├── rcgemm.c │ ├── rcgemv.c │ ├── rcsum_sub.c │ ├── rdasum.c │ ├── rddot.c │ ├── rdgemm.c │ ├── rdgemv.c │ ├── rdnrm2.c │ ├── rdsum.c │ ├── rdzasum.c │ ├── rdznrm2.c │ ├── rsasum.c │ ├── rscasum.c │ ├── rscnrm2.c │ ├── rsdot.c │ ├── rsgemm.c │ ├── rsgemv.c │ ├── rsnrm2.c │ ├── rssum.c │ ├── rzdotc_sub.c │ ├── rzdotu_sub.c │ ├── rzgemm.c │ ├── rzgemv.c │ ├── rzsum_sub.c │ ├── sasum.c │ ├── scasum.c │ ├── scnrm2.c │ ├── sdot.c │ ├── sgemm.c │ ├── sgemv.c │ ├── snrm2.c │ ├── ssum.c │ ├── zdotc_sub.c │ ├── zdotu_sub.c │ ├── zgemm.c │ ├── zgemv.c │ └── zsum_sub.c ├── tuned_args.json └── tuned_args_peters_mac.json ├── tests ├── Makefile ├── Rules.mk ├── __init__.py ├── accs │ ├── Makefile │ ├── Rules.mk │ ├── __init__.py │ ├── acc.py │ ├── acc_csum.c │ ├── acc_dsum.c │ ├── acc_rcsum.c │ ├── acc_rdsum.c │ ├── acc_rssum.c │ ├── acc_rzsum.c │ ├── acc_ssum.c │ ├── acc_vecvec_fill_header.h │ ├── acc_zsum.c │ └── accs.py ├── benchs │ ├── Makefile │ ├── Rules.mk │ ├── __init__.py │ ├── bench.py │ ├── bench_camax.c │ ├── bench_camaxm.c │ ├── bench_cbcbadd.c │ ├── bench_cciconv.c │ ├── bench_cdotc.c │ ├── bench_cdotu.c │ ├── bench_cgemm.c │ ├── bench_cgemv.c │ ├── bench_csum.c │ ├── bench_damax.c │ ├── bench_damaxm.c │ ├── bench_dasum.c │ ├── bench_dbdbadd.c │ ├── bench_ddbconv.c │ ├── bench_ddot.c │ ├── bench_dgemm.c │ ├── bench_dgemv.c │ ├── bench_dnrm2.c │ ├── bench_dsum.c │ ├── bench_dzasum.c │ ├── bench_dznrm2.c │ ├── bench_icamax.c │ ├── bench_idamax.c │ ├── bench_ireduce.c │ ├── bench_isamax.c │ ├── bench_izamax.c │ ├── bench_matmat_fill_header.h │ ├── bench_matvec_fill_header.h │ ├── bench_rcdotc.c │ ├── bench_rcdotu.c │ ├── bench_rcgemm.c │ ├── bench_rcgemv.c │ ├── bench_rcsum.c │ ├── bench_rdasum.c │ ├── bench_rddot.c │ ├── bench_rdgemm.c │ ├── bench_rdgemv.c │ ├── bench_rdnrm2.c │ ├── bench_rdsum.c │ ├── bench_rdzasum.c │ ├── bench_rdznrm2.c │ ├── bench_reduce.c │ ├── bench_rsasum.c │ ├── bench_rscasum.c │ ├── bench_rscnrm2.c │ ├── bench_rsdot.c │ ├── bench_rsgemm.c │ ├── bench_rsgemv.c │ ├── bench_rsnrm2.c │ ├── bench_rssum.c │ ├── bench_rzdotc.c │ ├── bench_rzdotu.c │ ├── bench_rzgemm.c │ ├── bench_rzgemv.c │ ├── bench_rzsum.c │ ├── bench_samax.c │ ├── bench_samaxm.c │ ├── bench_sasum.c │ ├── bench_sbsbadd.c │ ├── bench_scasum.c │ ├── bench_scnrm2.c │ ├── bench_sdot.c │ ├── bench_sgemm.c │ ├── bench_sgemv.c │ ├── bench_snrm2.c │ ├── bench_ssbconv.c │ ├── bench_ssum.c │ ├── bench_utils.c │ ├── bench_vecvec_fill_header.h │ ├── bench_zamax.c │ ├── bench_zamaxm.c │ ├── bench_zbzbadd.c │ ├── bench_zdotc.c │ ├── bench_zdotu.c │ ├── bench_zgemm.c │ ├── bench_zgemv.c │ ├── bench_zsum.c │ ├── bench_zziconv.c │ └── benchs.py ├── checks │ ├── Makefile │ ├── README.txt │ ├── Rules.mk │ ├── __init__.py │ ├── check.py │ ├── checks.py │ ├── corroborate_rcgemm.c │ ├── corroborate_rcgemv.c │ ├── corroborate_rdgemm.c │ ├── corroborate_rdgemv.c │ ├── corroborate_rsgemm.c │ ├── corroborate_rsgemv.c │ ├── corroborate_rzgemm.c │ ├── corroborate_rzgemv.c │ ├── data │ │ ├── c_2_rand-1_N4095.dat │ │ ├── c_2_rand-1_N4095__Brcdotc.dat │ │ ├── c_2_rand-1_N4095__Brcdotu.dat │ │ ├── c_2_rand-1_N4095__Brcsum.dat │ │ ├── c_2_rand-1_N4095__Brscasum.dat │ │ ├── c_2_rand-1_N4095__Brscnrm2.dat │ │ ├── c_2_rand-1_N4095__rcdotc.dat │ │ ├── c_2_rand-1_N4095__rcdotu.dat │ │ ├── c_2_rand-1_N4095__rcsum.dat │ │ ├── c_2_rand-1_N4095__rscasum.dat │ │ ├── c_2_rand-1_N4095__rscnrm2.dat │ │ ├── c_normal_N4095.dat │ │ ├── c_normal_N4095__Brcdotc.dat │ │ ├── c_normal_N4095__Brcdotu.dat │ │ ├── c_normal_N4095__Brcsum.dat │ │ ├── c_normal_N4095__Brscasum.dat │ │ ├── c_normal_N4095__Brscnrm2.dat │ │ ├── c_normal_N4095__rcdotc.dat │ │ ├── c_normal_N4095__rcdotu.dat │ │ ├── c_normal_N4095__rcsum.dat │ │ ├── c_normal_N4095__rscasum.dat │ │ ├── c_normal_N4095__rscnrm2.dat │ │ ├── c_rand+(rand-1)_N4095.dat │ │ ├── c_rand+(rand-1)_N4095__Brcdotc.dat │ │ ├── c_rand+(rand-1)_N4095__Brcdotu.dat │ │ ├── c_rand+(rand-1)_N4095__Brcsum.dat │ │ ├── c_rand+(rand-1)_N4095__Brscasum.dat │ │ ├── c_rand+(rand-1)_N4095__Brscnrm2.dat │ │ ├── c_rand+(rand-1)_N4095__rcdotc.dat │ │ ├── c_rand+(rand-1)_N4095__rcdotu.dat │ │ ├── c_rand+(rand-1)_N4095__rcsum.dat │ │ ├── c_rand+(rand-1)_N4095__rscasum.dat │ │ ├── c_rand+(rand-1)_N4095__rscnrm2.dat │ │ ├── c_rand_N4095.dat │ │ ├── c_rand_N4095__Brcdotc.dat │ │ ├── c_rand_N4095__Brcdotu.dat │ │ ├── c_rand_N4095__Brcsum.dat │ │ ├── c_rand_N4095__Brscasum.dat │ │ ├── c_rand_N4095__Brscnrm2.dat │ │ ├── c_rand_N4095__rcdotc.dat │ │ ├── c_rand_N4095__rcdotu.dat │ │ ├── c_rand_N4095__rcsum.dat │ │ ├── c_rand_N4095__rscasum.dat │ │ ├── c_rand_N4095__rscnrm2.dat │ │ ├── c_rand_cond_N4095.dat │ │ ├── c_rand_cond_N4095__Brcdotc.dat │ │ ├── c_rand_cond_N4095__Brcdotu.dat │ │ ├── c_rand_cond_N4095__Brcsum.dat │ │ ├── c_rand_cond_N4095__Brscasum.dat │ │ ├── c_rand_cond_N4095__Brscnrm2.dat │ │ ├── c_rand_cond_N4095__rcdotc.dat │ │ ├── c_rand_cond_N4095__rcdotu.dat │ │ ├── c_rand_cond_N4095__rcsum.dat │ │ ├── c_rand_cond_N4095__rscasum.dat │ │ ├── c_rand_cond_N4095__rscnrm2.dat │ │ ├── c_sine_N4095.dat │ │ ├── c_sine_N4095__Brcdotc.dat │ │ ├── c_sine_N4095__Brcdotu.dat │ │ ├── c_sine_N4095__Brcsum.dat │ │ ├── c_sine_N4095__Brscasum.dat │ │ ├── c_sine_N4095__Brscnrm2.dat │ │ ├── c_sine_N4095__rcdotc.dat │ │ ├── c_sine_N4095__rcdotu.dat │ │ ├── c_sine_N4095__rcsum.dat │ │ ├── c_sine_N4095__rscasum.dat │ │ ├── c_sine_N4095__rscnrm2.dat │ │ ├── c_small+grow_big_N4095.dat │ │ ├── c_small+grow_big_N4095__Brcdotc.dat │ │ ├── c_small+grow_big_N4095__Brcdotu.dat │ │ ├── c_small+grow_big_N4095__Brcsum.dat │ │ ├── c_small+grow_big_N4095__Brscasum.dat │ │ ├── c_small+grow_big_N4095__Brscnrm2.dat │ │ ├── c_small+grow_big_N4095__rcdotc.dat │ │ ├── c_small+grow_big_N4095__rcdotu.dat │ │ ├── c_small+grow_big_N4095__rcsum.dat │ │ ├── c_small+grow_big_N4095__rscasum.dat │ │ ├── c_small+grow_big_N4095__rscnrm2.dat │ │ ├── c_small+rand_big_N4095.dat │ │ ├── c_small+rand_big_N4095__Brcdotc.dat │ │ ├── c_small+rand_big_N4095__Brcdotu.dat │ │ ├── c_small+rand_big_N4095__Brcsum.dat │ │ ├── c_small+rand_big_N4095__Brscasum.dat │ │ ├── c_small+rand_big_N4095__Brscnrm2.dat │ │ ├── c_small+rand_big_N4095__rcdotc.dat │ │ ├── c_small+rand_big_N4095__rcdotu.dat │ │ ├── c_small+rand_big_N4095__rcsum.dat │ │ ├── c_small+rand_big_N4095__rscasum.dat │ │ ├── c_small+rand_big_N4095__rscnrm2.dat │ │ ├── d_2_rand-1_N4095.dat │ │ ├── d_2_rand-1_N4095__Brdasum.dat │ │ ├── d_2_rand-1_N4095__Brddot.dat │ │ ├── d_2_rand-1_N4095__Brdnrm2.dat │ │ ├── d_2_rand-1_N4095__Brdsum.dat │ │ ├── d_2_rand-1_N4095__rdasum.dat │ │ ├── d_2_rand-1_N4095__rddot.dat │ │ ├── d_2_rand-1_N4095__rdnrm2.dat │ │ ├── d_2_rand-1_N4095__rdsum.dat │ │ ├── d_normal_N4095.dat │ │ ├── d_normal_N4095__Brdasum.dat │ │ ├── d_normal_N4095__Brddot.dat │ │ ├── d_normal_N4095__Brdnrm2.dat │ │ ├── d_normal_N4095__Brdsum.dat │ │ ├── d_normal_N4095__rdasum.dat │ │ ├── d_normal_N4095__rddot.dat │ │ ├── d_normal_N4095__rdnrm2.dat │ │ ├── d_normal_N4095__rdsum.dat │ │ ├── d_rand+(rand-1)_N4095.dat │ │ ├── d_rand+(rand-1)_N4095__Brdasum.dat │ │ ├── d_rand+(rand-1)_N4095__Brddot.dat │ │ ├── d_rand+(rand-1)_N4095__Brdnrm2.dat │ │ ├── d_rand+(rand-1)_N4095__Brdsum.dat │ │ ├── d_rand+(rand-1)_N4095__rdasum.dat │ │ ├── d_rand+(rand-1)_N4095__rddot.dat │ │ ├── d_rand+(rand-1)_N4095__rdnrm2.dat │ │ ├── d_rand+(rand-1)_N4095__rdsum.dat │ │ ├── d_rand_N4095.dat │ │ ├── d_rand_N4095__Brdasum.dat │ │ ├── d_rand_N4095__Brddot.dat │ │ ├── d_rand_N4095__Brdnrm2.dat │ │ ├── d_rand_N4095__Brdsum.dat │ │ ├── d_rand_N4095__rdasum.dat │ │ ├── d_rand_N4095__rddot.dat │ │ ├── d_rand_N4095__rdnrm2.dat │ │ ├── d_rand_N4095__rdsum.dat │ │ ├── d_rand_cond_N4095.dat │ │ ├── d_rand_cond_N4095__Brdasum.dat │ │ ├── d_rand_cond_N4095__Brddot.dat │ │ ├── d_rand_cond_N4095__Brdnrm2.dat │ │ ├── d_rand_cond_N4095__Brdsum.dat │ │ ├── d_rand_cond_N4095__rdasum.dat │ │ ├── d_rand_cond_N4095__rddot.dat │ │ ├── d_rand_cond_N4095__rdnrm2.dat │ │ ├── d_rand_cond_N4095__rdsum.dat │ │ ├── d_sine_N4095.dat │ │ ├── d_sine_N4095__Brdasum.dat │ │ ├── d_sine_N4095__Brddot.dat │ │ ├── d_sine_N4095__Brdnrm2.dat │ │ ├── d_sine_N4095__Brdsum.dat │ │ ├── d_sine_N4095__rdasum.dat │ │ ├── d_sine_N4095__rddot.dat │ │ ├── d_sine_N4095__rdnrm2.dat │ │ ├── d_sine_N4095__rdsum.dat │ │ ├── d_small+grow_big_N4095.dat │ │ ├── d_small+grow_big_N4095__Brdasum.dat │ │ ├── d_small+grow_big_N4095__Brddot.dat │ │ ├── d_small+grow_big_N4095__Brdnrm2.dat │ │ ├── d_small+grow_big_N4095__Brdsum.dat │ │ ├── d_small+grow_big_N4095__rdasum.dat │ │ ├── d_small+grow_big_N4095__rddot.dat │ │ ├── d_small+grow_big_N4095__rdnrm2.dat │ │ ├── d_small+grow_big_N4095__rdsum.dat │ │ ├── d_small+rand_big_N4095.dat │ │ ├── d_small+rand_big_N4095__Brdasum.dat │ │ ├── d_small+rand_big_N4095__Brddot.dat │ │ ├── d_small+rand_big_N4095__Brdnrm2.dat │ │ ├── d_small+rand_big_N4095__Brdsum.dat │ │ ├── d_small+rand_big_N4095__rdasum.dat │ │ ├── d_small+rand_big_N4095__rddot.dat │ │ ├── d_small+rand_big_N4095__rdnrm2.dat │ │ ├── d_small+rand_big_N4095__rdsum.dat │ │ ├── s_2_rand-1_N4095.dat │ │ ├── s_2_rand-1_N4095__Brsasum.dat │ │ ├── s_2_rand-1_N4095__Brsdot.dat │ │ ├── s_2_rand-1_N4095__Brsnrm2.dat │ │ ├── s_2_rand-1_N4095__Brssum.dat │ │ ├── s_2_rand-1_N4095__rsasum.dat │ │ ├── s_2_rand-1_N4095__rsdot.dat │ │ ├── s_2_rand-1_N4095__rsnrm2.dat │ │ ├── s_2_rand-1_N4095__rssum.dat │ │ ├── s_normal_N4095.dat │ │ ├── s_normal_N4095__Brsasum.dat │ │ ├── s_normal_N4095__Brsdot.dat │ │ ├── s_normal_N4095__Brsnrm2.dat │ │ ├── s_normal_N4095__Brssum.dat │ │ ├── s_normal_N4095__rsasum.dat │ │ ├── s_normal_N4095__rsdot.dat │ │ ├── s_normal_N4095__rsnrm2.dat │ │ ├── s_normal_N4095__rssum.dat │ │ ├── s_rand+(rand-1)_N4095.dat │ │ ├── s_rand+(rand-1)_N4095__Brsasum.dat │ │ ├── s_rand+(rand-1)_N4095__Brsdot.dat │ │ ├── s_rand+(rand-1)_N4095__Brsnrm2.dat │ │ ├── s_rand+(rand-1)_N4095__Brssum.dat │ │ ├── s_rand+(rand-1)_N4095__rsasum.dat │ │ ├── s_rand+(rand-1)_N4095__rsdot.dat │ │ ├── s_rand+(rand-1)_N4095__rsnrm2.dat │ │ ├── s_rand+(rand-1)_N4095__rssum.dat │ │ ├── s_rand_N4095.dat │ │ ├── s_rand_N4095__Brsasum.dat │ │ ├── s_rand_N4095__Brsdot.dat │ │ ├── s_rand_N4095__Brsnrm2.dat │ │ ├── s_rand_N4095__Brssum.dat │ │ ├── s_rand_N4095__rsasum.dat │ │ ├── s_rand_N4095__rsdot.dat │ │ ├── s_rand_N4095__rsnrm2.dat │ │ ├── s_rand_N4095__rssum.dat │ │ ├── s_rand_cond_N4095.dat │ │ ├── s_rand_cond_N4095__Brsasum.dat │ │ ├── s_rand_cond_N4095__Brsdot.dat │ │ ├── s_rand_cond_N4095__Brsnrm2.dat │ │ ├── s_rand_cond_N4095__Brssum.dat │ │ ├── s_rand_cond_N4095__rsasum.dat │ │ ├── s_rand_cond_N4095__rsdot.dat │ │ ├── s_rand_cond_N4095__rsnrm2.dat │ │ ├── s_rand_cond_N4095__rssum.dat │ │ ├── s_sine_N4095.dat │ │ ├── s_sine_N4095__Brsasum.dat │ │ ├── s_sine_N4095__Brsdot.dat │ │ ├── s_sine_N4095__Brsnrm2.dat │ │ ├── s_sine_N4095__Brssum.dat │ │ ├── s_sine_N4095__rsasum.dat │ │ ├── s_sine_N4095__rsdot.dat │ │ ├── s_sine_N4095__rsnrm2.dat │ │ ├── s_sine_N4095__rssum.dat │ │ ├── s_small+grow_big_N4095.dat │ │ ├── s_small+grow_big_N4095__Brsasum.dat │ │ ├── s_small+grow_big_N4095__Brsdot.dat │ │ ├── s_small+grow_big_N4095__Brsnrm2.dat │ │ ├── s_small+grow_big_N4095__Brssum.dat │ │ ├── s_small+grow_big_N4095__rsasum.dat │ │ ├── s_small+grow_big_N4095__rsdot.dat │ │ ├── s_small+grow_big_N4095__rsnrm2.dat │ │ ├── s_small+grow_big_N4095__rssum.dat │ │ ├── s_small+rand_big_N4095.dat │ │ ├── s_small+rand_big_N4095__Brsasum.dat │ │ ├── s_small+rand_big_N4095__Brsdot.dat │ │ ├── s_small+rand_big_N4095__Brsnrm2.dat │ │ ├── s_small+rand_big_N4095__Brssum.dat │ │ ├── s_small+rand_big_N4095__rsasum.dat │ │ ├── s_small+rand_big_N4095__rsdot.dat │ │ ├── s_small+rand_big_N4095__rsnrm2.dat │ │ ├── s_small+rand_big_N4095__rssum.dat │ │ ├── z_2_rand-1_N4095.dat │ │ ├── z_2_rand-1_N4095__Brdzasum.dat │ │ ├── z_2_rand-1_N4095__Brdznrm2.dat │ │ ├── z_2_rand-1_N4095__Brzdotc.dat │ │ ├── z_2_rand-1_N4095__Brzdotu.dat │ │ ├── z_2_rand-1_N4095__Brzsum.dat │ │ ├── z_2_rand-1_N4095__rdzasum.dat │ │ ├── z_2_rand-1_N4095__rdznrm2.dat │ │ ├── z_2_rand-1_N4095__rzdotc.dat │ │ ├── z_2_rand-1_N4095__rzdotu.dat │ │ ├── z_2_rand-1_N4095__rzsum.dat │ │ ├── z_normal_N4095.dat │ │ ├── z_normal_N4095__Brdzasum.dat │ │ ├── z_normal_N4095__Brdznrm2.dat │ │ ├── z_normal_N4095__Brzdotc.dat │ │ ├── z_normal_N4095__Brzdotu.dat │ │ ├── z_normal_N4095__Brzsum.dat │ │ ├── z_normal_N4095__rdzasum.dat │ │ ├── z_normal_N4095__rdznrm2.dat │ │ ├── z_normal_N4095__rzdotc.dat │ │ ├── z_normal_N4095__rzdotu.dat │ │ ├── z_normal_N4095__rzsum.dat │ │ ├── z_rand+(rand-1)_N4095.dat │ │ ├── z_rand+(rand-1)_N4095__Brdzasum.dat │ │ ├── z_rand+(rand-1)_N4095__Brdznrm2.dat │ │ ├── z_rand+(rand-1)_N4095__Brzdotc.dat │ │ ├── z_rand+(rand-1)_N4095__Brzdotu.dat │ │ ├── z_rand+(rand-1)_N4095__Brzsum.dat │ │ ├── z_rand+(rand-1)_N4095__rdzasum.dat │ │ ├── z_rand+(rand-1)_N4095__rdznrm2.dat │ │ ├── z_rand+(rand-1)_N4095__rzdotc.dat │ │ ├── z_rand+(rand-1)_N4095__rzdotu.dat │ │ ├── z_rand+(rand-1)_N4095__rzsum.dat │ │ ├── z_rand_N4095.dat │ │ ├── z_rand_N4095__Brdzasum.dat │ │ ├── z_rand_N4095__Brdznrm2.dat │ │ ├── z_rand_N4095__Brzdotc.dat │ │ ├── z_rand_N4095__Brzdotu.dat │ │ ├── z_rand_N4095__Brzsum.dat │ │ ├── z_rand_N4095__rdzasum.dat │ │ ├── z_rand_N4095__rdznrm2.dat │ │ ├── z_rand_N4095__rzdotc.dat │ │ ├── z_rand_N4095__rzdotu.dat │ │ ├── z_rand_N4095__rzsum.dat │ │ ├── z_rand_cond_N4095.dat │ │ ├── z_rand_cond_N4095__Brdzasum.dat │ │ ├── z_rand_cond_N4095__Brdznrm2.dat │ │ ├── z_rand_cond_N4095__Brzdotc.dat │ │ ├── z_rand_cond_N4095__Brzdotu.dat │ │ ├── z_rand_cond_N4095__Brzsum.dat │ │ ├── z_rand_cond_N4095__rdzasum.dat │ │ ├── z_rand_cond_N4095__rdznrm2.dat │ │ ├── z_rand_cond_N4095__rzdotc.dat │ │ ├── z_rand_cond_N4095__rzdotu.dat │ │ ├── z_rand_cond_N4095__rzsum.dat │ │ ├── z_sine_N4095.dat │ │ ├── z_sine_N4095__Brdzasum.dat │ │ ├── z_sine_N4095__Brdznrm2.dat │ │ ├── z_sine_N4095__Brzdotc.dat │ │ ├── z_sine_N4095__Brzdotu.dat │ │ ├── z_sine_N4095__Brzsum.dat │ │ ├── z_sine_N4095__rdzasum.dat │ │ ├── z_sine_N4095__rdznrm2.dat │ │ ├── z_sine_N4095__rzdotc.dat │ │ ├── z_sine_N4095__rzdotu.dat │ │ ├── z_sine_N4095__rzsum.dat │ │ ├── z_small+grow_big_N4095.dat │ │ ├── z_small+grow_big_N4095__Brdzasum.dat │ │ ├── z_small+grow_big_N4095__Brdznrm2.dat │ │ ├── z_small+grow_big_N4095__Brzdotc.dat │ │ ├── z_small+grow_big_N4095__Brzdotu.dat │ │ ├── z_small+grow_big_N4095__Brzsum.dat │ │ ├── z_small+grow_big_N4095__rdzasum.dat │ │ ├── z_small+grow_big_N4095__rdznrm2.dat │ │ ├── z_small+grow_big_N4095__rzdotc.dat │ │ ├── z_small+grow_big_N4095__rzdotu.dat │ │ ├── z_small+grow_big_N4095__rzsum.dat │ │ ├── z_small+rand_big_N4095.dat │ │ ├── z_small+rand_big_N4095__Brdzasum.dat │ │ ├── z_small+rand_big_N4095__Brdznrm2.dat │ │ ├── z_small+rand_big_N4095__Brzdotc.dat │ │ ├── z_small+rand_big_N4095__Brzdotu.dat │ │ ├── z_small+rand_big_N4095__Brzsum.dat │ │ ├── z_small+rand_big_N4095__rdzasum.dat │ │ ├── z_small+rand_big_N4095__rdznrm2.dat │ │ ├── z_small+rand_big_N4095__rzdotc.dat │ │ ├── z_small+rand_big_N4095__rzdotu.dat │ │ └── z_small+rand_big_N4095__rzsum.dat │ ├── rcblas1_wrapper.h │ ├── rdblas1_wrapper.h │ ├── reference.py │ ├── reference.suite │ ├── rsblas1_wrapper.h │ ├── rzblas1_wrapper.h │ ├── validate_external_rcblas1.c │ ├── validate_external_rdblas1.c │ ├── validate_external_rsblas1.c │ ├── validate_external_rzblas1.c │ ├── validate_internal_camax.c │ ├── validate_internal_caugsum.c │ ├── validate_internal_damax.c │ ├── validate_internal_daugsum.c │ ├── validate_internal_digranularity.c │ ├── validate_internal_dindex.c │ ├── validate_internal_dmindex.c │ ├── validate_internal_dscale.c │ ├── validate_internal_samax.c │ ├── validate_internal_saugsum.c │ ├── validate_internal_sindex.c │ ├── validate_internal_smindex.c │ ├── validate_internal_sscale.c │ ├── validate_internal_ufp.c │ ├── validate_internal_ufpf.c │ ├── validate_internal_zamax.c │ ├── validate_internal_zaugsum.c │ ├── validate_xblas_cdot.c │ ├── validate_xblas_ddot.c │ ├── validate_xblas_sdot.c │ ├── validate_xblas_zdot.c │ ├── verify_caugsum.c │ ├── verify_daugsum.c │ ├── verify_dbdssq.c │ ├── verify_dbzssq.c │ ├── verify_rcblas1.c │ ├── verify_rdblas1.c │ ├── verify_rsblas1.c │ ├── verify_rzblas1.c │ ├── verify_saugsum.c │ ├── verify_sbcssq.c │ ├── verify_sbsssq.c │ ├── verify_zaugsum.c │ ├── wrap_caugsum.h │ ├── wrap_daugsum.h │ ├── wrap_rcgemm.h │ ├── wrap_rcgemv.h │ ├── wrap_rdgemm.h │ ├── wrap_rdgemv.h │ ├── wrap_rsgemm.h │ ├── wrap_rsgemv.h │ ├── wrap_rzgemm.h │ ├── wrap_rzgemv.h │ ├── wrap_saugsum.h │ └── wrap_zaugsum.h ├── common │ ├── Makefile │ ├── Rules.mk │ ├── test_BLAS.h │ ├── test_data.c │ ├── test_file.c │ ├── test_file.h │ ├── test_file_header.h │ ├── test_header.h │ ├── test_limits.h │ ├── test_mat.c │ ├── test_matmat_fill_header.h │ ├── test_matmat_header.h │ ├── test_matvec_fill_header.h │ ├── test_matvec_header.h │ ├── test_metric.c │ ├── test_metric.h │ ├── test_opt.c │ ├── test_opt.h │ ├── test_time.c │ ├── test_time.h │ ├── test_util.c │ ├── test_util.h │ ├── test_util_xblas_cdot_fill.c │ ├── test_util_xblas_ddot_fill.c │ ├── test_util_xblas_sdot_fill.c │ ├── test_util_xblas_zdot_fill.c │ ├── test_vecvec_fill_header.h │ └── test_vecvec_header.h └── harness │ ├── __init__.py │ └── harness.py └── tune ├── Makefile ├── ReproBLASOpenTuner.py └── Rules.mk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | mk/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/README.md -------------------------------------------------------------------------------- /Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/Rules.mk -------------------------------------------------------------------------------- /Rules.top: -------------------------------------------------------------------------------- 1 | Rules.mk -------------------------------------------------------------------------------- /config.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/config.dox -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/config.h -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/config.mk -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/config.py -------------------------------------------------------------------------------- /doc/EECS-2015-229.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/doc/EECS-2015-229.pdf -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- 1 | ../mk/Makefile -------------------------------------------------------------------------------- /doc/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/doc/Rules.mk -------------------------------------------------------------------------------- /doc/reference_manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/doc/reference_manual.pdf -------------------------------------------------------------------------------- /doc/reference_website.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/doc/reference_website.zip -------------------------------------------------------------------------------- /examples/MPI_sum_sine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/examples/MPI_sum_sine.c -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/sum_sine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/examples/sum_sine.c -------------------------------------------------------------------------------- /final.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/final.mk -------------------------------------------------------------------------------- /include/MPI_reproBLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/include/MPI_reproBLAS.h -------------------------------------------------------------------------------- /include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/include/Makefile -------------------------------------------------------------------------------- /include/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/include/Rules.mk -------------------------------------------------------------------------------- /include/binned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/include/binned.h -------------------------------------------------------------------------------- /include/binnedBLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/include/binnedBLAS.h -------------------------------------------------------------------------------- /include/binnedMPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/include/binnedMPI.h -------------------------------------------------------------------------------- /include/reproBLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/include/reproBLAS.h -------------------------------------------------------------------------------- /mk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/Makefile -------------------------------------------------------------------------------- /mk/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/Readme.txt -------------------------------------------------------------------------------- /mk/build-debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/build-debug.mk -------------------------------------------------------------------------------- /mk/build-profile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/build-profile.mk -------------------------------------------------------------------------------- /mk/build-release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/build-release.mk -------------------------------------------------------------------------------- /mk/config-Cygwin-i686_Cygwin-i686.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/config-Cygwin-i686_Cygwin-i686.mk -------------------------------------------------------------------------------- /mk/config-Cygwin-i686_Linux-ppc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/config-Cygwin-i686_Linux-ppc.mk -------------------------------------------------------------------------------- /mk/config-Darwin-x86_64_Darwin-x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/config-Darwin-x86_64_Darwin-x86_64.mk -------------------------------------------------------------------------------- /mk/config-MinGW-i686_MinGW-i686.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/config-MinGW-i686_MinGW-i686.mk -------------------------------------------------------------------------------- /mk/config-SunOS-sun4u_SunOS-sun4u.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/config-SunOS-sun4u_SunOS-sun4u.mk -------------------------------------------------------------------------------- /mk/config-default.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/config-default.mk -------------------------------------------------------------------------------- /mk/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/config.mk -------------------------------------------------------------------------------- /mk/def_rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/def_rules.mk -------------------------------------------------------------------------------- /mk/footer.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/footer.mk -------------------------------------------------------------------------------- /mk/header.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/header.mk -------------------------------------------------------------------------------- /mk/skel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/mk/skel.mk -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- 1 | ../mk/Makefile -------------------------------------------------------------------------------- /scripts/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/Rules.mk -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/cogapp/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cogapp/PKG-INFO -------------------------------------------------------------------------------- /scripts/cogapp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cogapp/README.txt -------------------------------------------------------------------------------- /scripts/cogapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cogapp/__init__.py -------------------------------------------------------------------------------- /scripts/cogapp/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cogapp/__main__.py -------------------------------------------------------------------------------- /scripts/cogapp/backward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cogapp/backward.py -------------------------------------------------------------------------------- /scripts/cogapp/cogapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cogapp/cogapp.py -------------------------------------------------------------------------------- /scripts/cogapp/makefiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cogapp/makefiles.py -------------------------------------------------------------------------------- /scripts/cogapp/test_cogapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cogapp/test_cogapp.py -------------------------------------------------------------------------------- /scripts/cogapp/test_makefiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cogapp/test_makefiles.py -------------------------------------------------------------------------------- /scripts/cogapp/test_whiteutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cogapp/test_whiteutils.py -------------------------------------------------------------------------------- /scripts/cogapp/whiteutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cogapp/whiteutils.py -------------------------------------------------------------------------------- /scripts/cpuinfo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cpuinfo/LICENSE -------------------------------------------------------------------------------- /scripts/cpuinfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/cpuinfo/cpuinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/cpuinfo/cpuinfo.py -------------------------------------------------------------------------------- /scripts/getter.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/getter.ccog -------------------------------------------------------------------------------- /scripts/pseudocog.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cp $3 $2 3 | -------------------------------------------------------------------------------- /scripts/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/terminal.py -------------------------------------------------------------------------------- /scripts/texttable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/texttable/LICENSE -------------------------------------------------------------------------------- /scripts/texttable/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/texttable/texttable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/scripts/texttable/texttable.py -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- 1 | ../mk/Makefile -------------------------------------------------------------------------------- /src/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/Rules.mk -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/binned/Makefile: -------------------------------------------------------------------------------- 1 | ../../mk/Makefile -------------------------------------------------------------------------------- /src/binned/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/Rules.mk -------------------------------------------------------------------------------- /src/binned/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/binned/cballoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cballoc.c -------------------------------------------------------------------------------- /src/binned/cbcadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbcadd.c -------------------------------------------------------------------------------- /src/binned/cbcbadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbcbadd.c -------------------------------------------------------------------------------- /src/binned/cbcbaddv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbcbaddv.c -------------------------------------------------------------------------------- /src/binned/cbcbset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbcbset.c -------------------------------------------------------------------------------- /src/binned/cbcconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbcconv.c -------------------------------------------------------------------------------- /src/binned/cbcdeposit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbcdeposit.c -------------------------------------------------------------------------------- /src/binned/cbcupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbcupdate.c -------------------------------------------------------------------------------- /src/binned/cbnegate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbnegate.c -------------------------------------------------------------------------------- /src/binned/cbnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbnum.c -------------------------------------------------------------------------------- /src/binned/cbprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbprint.c -------------------------------------------------------------------------------- /src/binned/cbrenorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbrenorm.c -------------------------------------------------------------------------------- /src/binned/cbsbset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbsbset.c -------------------------------------------------------------------------------- /src/binned/cbsetzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbsetzero.c -------------------------------------------------------------------------------- /src/binned/cbsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbsize.c -------------------------------------------------------------------------------- /src/binned/cbsupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cbsupdate.c -------------------------------------------------------------------------------- /src/binned/ccbconv_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/ccbconv_sub.c -------------------------------------------------------------------------------- /src/binned/ccmconv_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/ccmconv_sub.c -------------------------------------------------------------------------------- /src/binned/cmcadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmcadd.c -------------------------------------------------------------------------------- /src/binned/cmcconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmcconv.c -------------------------------------------------------------------------------- /src/binned/cmcdeposit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmcdeposit.c -------------------------------------------------------------------------------- /src/binned/cmcmadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmcmadd.c -------------------------------------------------------------------------------- /src/binned/cmcmset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmcmset.c -------------------------------------------------------------------------------- /src/binned/cmcupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmcupdate.c -------------------------------------------------------------------------------- /src/binned/cmdenorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmdenorm.c -------------------------------------------------------------------------------- /src/binned/cmnegate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmnegate.c -------------------------------------------------------------------------------- /src/binned/cmprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmprint.c -------------------------------------------------------------------------------- /src/binned/cmrenorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmrenorm.c -------------------------------------------------------------------------------- /src/binned/cmsetzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmsetzero.c -------------------------------------------------------------------------------- /src/binned/cmsmset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmsmset.c -------------------------------------------------------------------------------- /src/binned/cmsrescale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmsrescale.c -------------------------------------------------------------------------------- /src/binned/cmsupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/cmsupdate.c -------------------------------------------------------------------------------- /src/binned/dballoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dballoc.c -------------------------------------------------------------------------------- /src/binned/dbbound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbbound.c -------------------------------------------------------------------------------- /src/binned/dbdadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbdadd.c -------------------------------------------------------------------------------- /src/binned/dbdbadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbdbadd.c -------------------------------------------------------------------------------- /src/binned/dbdbaddsq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbdbaddsq.c -------------------------------------------------------------------------------- /src/binned/dbdbaddv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbdbaddv.c -------------------------------------------------------------------------------- /src/binned/dbdbset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbdbset.c -------------------------------------------------------------------------------- /src/binned/dbdconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbdconv.c -------------------------------------------------------------------------------- /src/binned/dbddeposit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbddeposit.c -------------------------------------------------------------------------------- /src/binned/dbdupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbdupdate.c -------------------------------------------------------------------------------- /src/binned/dbnegate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbnegate.c -------------------------------------------------------------------------------- /src/binned/dbnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbnum.c -------------------------------------------------------------------------------- /src/binned/dbprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbprint.c -------------------------------------------------------------------------------- /src/binned/dbrenorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbrenorm.c -------------------------------------------------------------------------------- /src/binned/dbsetzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbsetzero.c -------------------------------------------------------------------------------- /src/binned/dbsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dbsize.c -------------------------------------------------------------------------------- /src/binned/ddbconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/ddbconv.c -------------------------------------------------------------------------------- /src/binned/ddmconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/ddmconv.c -------------------------------------------------------------------------------- /src/binned/deposit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/deposit.py -------------------------------------------------------------------------------- /src/binned/dindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dindex.c -------------------------------------------------------------------------------- /src/binned/dmbins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmbins.c -------------------------------------------------------------------------------- /src/binned/dmdadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmdadd.c -------------------------------------------------------------------------------- /src/binned/dmdconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmdconv.c -------------------------------------------------------------------------------- /src/binned/dmddeposit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmddeposit.c -------------------------------------------------------------------------------- /src/binned/dmdenorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmdenorm.c -------------------------------------------------------------------------------- /src/binned/dmdmadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmdmadd.c -------------------------------------------------------------------------------- /src/binned/dmdmaddsq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmdmaddsq.c -------------------------------------------------------------------------------- /src/binned/dmdmset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmdmset.c -------------------------------------------------------------------------------- /src/binned/dmdrescale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmdrescale.c -------------------------------------------------------------------------------- /src/binned/dmdupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmdupdate.c -------------------------------------------------------------------------------- /src/binned/dmindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmindex.c -------------------------------------------------------------------------------- /src/binned/dmindex0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmindex0.c -------------------------------------------------------------------------------- /src/binned/dmnegate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmnegate.c -------------------------------------------------------------------------------- /src/binned/dmprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmprint.c -------------------------------------------------------------------------------- /src/binned/dmrenorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmrenorm.c -------------------------------------------------------------------------------- /src/binned/dmsetzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dmsetzero.c -------------------------------------------------------------------------------- /src/binned/dscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/dscale.c -------------------------------------------------------------------------------- /src/binned/sballoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sballoc.c -------------------------------------------------------------------------------- /src/binned/sbbound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbbound.c -------------------------------------------------------------------------------- /src/binned/sbnegate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbnegate.c -------------------------------------------------------------------------------- /src/binned/sbnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbnum.c -------------------------------------------------------------------------------- /src/binned/sbprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbprint.c -------------------------------------------------------------------------------- /src/binned/sbrenorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbrenorm.c -------------------------------------------------------------------------------- /src/binned/sbsadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbsadd.c -------------------------------------------------------------------------------- /src/binned/sbsbadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbsbadd.c -------------------------------------------------------------------------------- /src/binned/sbsbaddsq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbsbaddsq.c -------------------------------------------------------------------------------- /src/binned/sbsbaddv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbsbaddv.c -------------------------------------------------------------------------------- /src/binned/sbsbset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbsbset.c -------------------------------------------------------------------------------- /src/binned/sbsbze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbsbze.c -------------------------------------------------------------------------------- /src/binned/sbsconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbsconv.c -------------------------------------------------------------------------------- /src/binned/sbsdeposit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbsdeposit.c -------------------------------------------------------------------------------- /src/binned/sbsetzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbsetzero.c -------------------------------------------------------------------------------- /src/binned/sbsupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sbsupdate.c -------------------------------------------------------------------------------- /src/binned/sindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sindex.c -------------------------------------------------------------------------------- /src/binned/smbins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smbins.c -------------------------------------------------------------------------------- /src/binned/smdenorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smdenorm.c -------------------------------------------------------------------------------- /src/binned/smindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smindex.c -------------------------------------------------------------------------------- /src/binned/smindex0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smindex0.c -------------------------------------------------------------------------------- /src/binned/smnegate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smnegate.c -------------------------------------------------------------------------------- /src/binned/smprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smprint.c -------------------------------------------------------------------------------- /src/binned/smrenorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smrenorm.c -------------------------------------------------------------------------------- /src/binned/smsadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smsadd.c -------------------------------------------------------------------------------- /src/binned/smsconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smsconv.c -------------------------------------------------------------------------------- /src/binned/smsdeposit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smsdeposit.c -------------------------------------------------------------------------------- /src/binned/smsetzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smsetzero.c -------------------------------------------------------------------------------- /src/binned/smsmadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smsmadd.c -------------------------------------------------------------------------------- /src/binned/smsmaddsq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smsmaddsq.c -------------------------------------------------------------------------------- /src/binned/smsmset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smsmset.c -------------------------------------------------------------------------------- /src/binned/smsrescale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smsrescale.c -------------------------------------------------------------------------------- /src/binned/smsupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/smsupdate.c -------------------------------------------------------------------------------- /src/binned/ssbconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/ssbconv.c -------------------------------------------------------------------------------- /src/binned/sscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/sscale.c -------------------------------------------------------------------------------- /src/binned/ssmconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/ssmconv.c -------------------------------------------------------------------------------- /src/binned/ufp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/ufp.c -------------------------------------------------------------------------------- /src/binned/ufpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/ufpf.c -------------------------------------------------------------------------------- /src/binned/zballoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zballoc.c -------------------------------------------------------------------------------- /src/binned/zbdbset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbdbset.c -------------------------------------------------------------------------------- /src/binned/zbdupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbdupdate.c -------------------------------------------------------------------------------- /src/binned/zbnegate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbnegate.c -------------------------------------------------------------------------------- /src/binned/zbnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbnum.c -------------------------------------------------------------------------------- /src/binned/zbprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbprint.c -------------------------------------------------------------------------------- /src/binned/zbrenorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbrenorm.c -------------------------------------------------------------------------------- /src/binned/zbsetzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbsetzero.c -------------------------------------------------------------------------------- /src/binned/zbsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbsize.c -------------------------------------------------------------------------------- /src/binned/zbzadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbzadd.c -------------------------------------------------------------------------------- /src/binned/zbzbadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbzbadd.c -------------------------------------------------------------------------------- /src/binned/zbzbaddv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbzbaddv.c -------------------------------------------------------------------------------- /src/binned/zbzbset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbzbset.c -------------------------------------------------------------------------------- /src/binned/zbzconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbzconv.c -------------------------------------------------------------------------------- /src/binned/zbzdeposit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbzdeposit.c -------------------------------------------------------------------------------- /src/binned/zbzupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zbzupdate.c -------------------------------------------------------------------------------- /src/binned/zmdenorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmdenorm.c -------------------------------------------------------------------------------- /src/binned/zmdmset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmdmset.c -------------------------------------------------------------------------------- /src/binned/zmdrescale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmdrescale.c -------------------------------------------------------------------------------- /src/binned/zmdupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmdupdate.c -------------------------------------------------------------------------------- /src/binned/zmnegate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmnegate.c -------------------------------------------------------------------------------- /src/binned/zmprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmprint.c -------------------------------------------------------------------------------- /src/binned/zmrenorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmrenorm.c -------------------------------------------------------------------------------- /src/binned/zmsetzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmsetzero.c -------------------------------------------------------------------------------- /src/binned/zmzadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmzadd.c -------------------------------------------------------------------------------- /src/binned/zmzconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmzconv.c -------------------------------------------------------------------------------- /src/binned/zmzdeposit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmzdeposit.c -------------------------------------------------------------------------------- /src/binned/zmzmadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmzmadd.c -------------------------------------------------------------------------------- /src/binned/zmzmset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmzmset.c -------------------------------------------------------------------------------- /src/binned/zmzupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zmzupdate.c -------------------------------------------------------------------------------- /src/binned/zzbconv_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zzbconv_sub.c -------------------------------------------------------------------------------- /src/binned/zzmconv_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binned/zzmconv_sub.c -------------------------------------------------------------------------------- /src/binnedBLAS/Makefile: -------------------------------------------------------------------------------- 1 | ../../mk/Makefile -------------------------------------------------------------------------------- /src/binnedBLAS/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/Rules.mk -------------------------------------------------------------------------------- /src/binnedBLAS/amax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/amax.py -------------------------------------------------------------------------------- /src/binnedBLAS/amaxm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/amaxm.py -------------------------------------------------------------------------------- /src/binnedBLAS/camax_sub.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/camax_sub.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/camaxm_sub.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/camaxm_sub.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/cbcdotc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/cbcdotc.c -------------------------------------------------------------------------------- /src/binnedBLAS/cbcdotu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/cbcdotu.c -------------------------------------------------------------------------------- /src/binnedBLAS/cbcgemm.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/cbcgemm.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/cbcgemv.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/cbcgemv.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/cbcsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/cbcsum.c -------------------------------------------------------------------------------- /src/binnedBLAS/cmcdotc.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/cmcdotc.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/cmcdotu.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/cmcdotu.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/cmcsum.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/cmcsum.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/damax.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/damax.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/damaxm.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/damaxm.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/dbdasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dbdasum.c -------------------------------------------------------------------------------- /src/binnedBLAS/dbddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dbddot.c -------------------------------------------------------------------------------- /src/binnedBLAS/dbdgemm.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dbdgemm.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/dbdgemv.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dbdgemv.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/dbdssq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dbdssq.c -------------------------------------------------------------------------------- /src/binnedBLAS/dbdsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dbdsum.c -------------------------------------------------------------------------------- /src/binnedBLAS/dbzasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dbzasum.c -------------------------------------------------------------------------------- /src/binnedBLAS/dbzssq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dbzssq.c -------------------------------------------------------------------------------- /src/binnedBLAS/depositASum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/depositASum.py -------------------------------------------------------------------------------- /src/binnedBLAS/depositDot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/depositDot.py -------------------------------------------------------------------------------- /src/binnedBLAS/depositDotC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/depositDotC.py -------------------------------------------------------------------------------- /src/binnedBLAS/depositDotU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/depositDotU.py -------------------------------------------------------------------------------- /src/binnedBLAS/depositM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/depositM.py -------------------------------------------------------------------------------- /src/binnedBLAS/depositSSq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/depositSSq.py -------------------------------------------------------------------------------- /src/binnedBLAS/depositSum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/depositSum.py -------------------------------------------------------------------------------- /src/binnedBLAS/dmdasum.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dmdasum.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/dmddot.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dmddot.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/dmdssq.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dmdssq.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/dmdsum.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dmdsum.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/dmzasum.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dmzasum.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/dmzssq.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/dmzssq.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/samax.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/samax.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/samaxm.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/samaxm.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/sbcasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/sbcasum.c -------------------------------------------------------------------------------- /src/binnedBLAS/sbcssq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/sbcssq.c -------------------------------------------------------------------------------- /src/binnedBLAS/sbsasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/sbsasum.c -------------------------------------------------------------------------------- /src/binnedBLAS/sbsdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/sbsdot.c -------------------------------------------------------------------------------- /src/binnedBLAS/sbsgemm.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/sbsgemm.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/sbsgemv.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/sbsgemv.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/sbsssq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/sbsssq.c -------------------------------------------------------------------------------- /src/binnedBLAS/sbssum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/sbssum.c -------------------------------------------------------------------------------- /src/binnedBLAS/smcasum.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/smcasum.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/smcssq.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/smcssq.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/smsasum.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/smsasum.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/smsdot.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/smsdot.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/smsssq.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/smsssq.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/smssum.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/smssum.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/zamax_sub.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/zamax_sub.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/zamaxm_sub.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/zamaxm_sub.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/zbzdotc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/zbzdotc.c -------------------------------------------------------------------------------- /src/binnedBLAS/zbzdotu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/zbzdotu.c -------------------------------------------------------------------------------- /src/binnedBLAS/zbzgemm.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/zbzgemm.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/zbzgemv.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/zbzgemv.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/zbzsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/zbzsum.c -------------------------------------------------------------------------------- /src/binnedBLAS/zmzdotc.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/zmzdotc.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/zmzdotu.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/zmzdotu.ccog -------------------------------------------------------------------------------- /src/binnedBLAS/zmzsum.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedBLAS/zmzsum.ccog -------------------------------------------------------------------------------- /src/binnedMPI/CBCBADD.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/CBCBADD.ccog -------------------------------------------------------------------------------- /src/binnedMPI/DBDBADD.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/DBDBADD.ccog -------------------------------------------------------------------------------- /src/binnedMPI/DBDBADDSQ.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/DBDBADDSQ.ccog -------------------------------------------------------------------------------- /src/binnedMPI/DOUBLE_BINNED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/DOUBLE_BINNED.c -------------------------------------------------------------------------------- /src/binnedMPI/DOUBLE_BINNED_SCALED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/DOUBLE_BINNED_SCALED.c -------------------------------------------------------------------------------- /src/binnedMPI/DOUBLE_COMPLEX_BINNED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/DOUBLE_COMPLEX_BINNED.c -------------------------------------------------------------------------------- /src/binnedMPI/FLOAT_BINNED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/FLOAT_BINNED.c -------------------------------------------------------------------------------- /src/binnedMPI/FLOAT_BINNED_SCALED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/FLOAT_BINNED_SCALED.c -------------------------------------------------------------------------------- /src/binnedMPI/FLOAT_COMPLEX_BINNED.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/FLOAT_COMPLEX_BINNED.c -------------------------------------------------------------------------------- /src/binnedMPI/Makefile: -------------------------------------------------------------------------------- 1 | ../../mk/Makefile -------------------------------------------------------------------------------- /src/binnedMPI/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/Rules.mk -------------------------------------------------------------------------------- /src/binnedMPI/SBSBADD.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/SBSBADD.ccog -------------------------------------------------------------------------------- /src/binnedMPI/SBSBADDSQ.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/SBSBADDSQ.ccog -------------------------------------------------------------------------------- /src/binnedMPI/ZBZBADD.ccog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/binnedMPI/ZBZBADD.ccog -------------------------------------------------------------------------------- /src/common/Makefile: -------------------------------------------------------------------------------- 1 | ../../mk/Makefile -------------------------------------------------------------------------------- /src/common/Rules.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/blockSize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/common/blockSize.py -------------------------------------------------------------------------------- /src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/common/common.h -------------------------------------------------------------------------------- /src/default_args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/default_args.json -------------------------------------------------------------------------------- /src/gen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gen/dataTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/gen/dataTypes.py -------------------------------------------------------------------------------- /src/gen/default_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/gen/default_args.py -------------------------------------------------------------------------------- /src/gen/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/gen/generate.py -------------------------------------------------------------------------------- /src/gen/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/gen/utils.py -------------------------------------------------------------------------------- /src/gen/vectorizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/gen/vectorizations.py -------------------------------------------------------------------------------- /src/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/params.json -------------------------------------------------------------------------------- /src/reproBLAS/Makefile: -------------------------------------------------------------------------------- 1 | ../../mk/Makefile -------------------------------------------------------------------------------- /src/reproBLAS/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/Rules.mk -------------------------------------------------------------------------------- /src/reproBLAS/cdotc_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/cdotc_sub.c -------------------------------------------------------------------------------- /src/reproBLAS/cdotu_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/cdotu_sub.c -------------------------------------------------------------------------------- /src/reproBLAS/cgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/cgemm.c -------------------------------------------------------------------------------- /src/reproBLAS/cgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/cgemv.c -------------------------------------------------------------------------------- /src/reproBLAS/csum_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/csum_sub.c -------------------------------------------------------------------------------- /src/reproBLAS/dasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/dasum.c -------------------------------------------------------------------------------- /src/reproBLAS/ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/ddot.c -------------------------------------------------------------------------------- /src/reproBLAS/dgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/dgemm.c -------------------------------------------------------------------------------- /src/reproBLAS/dgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/dgemv.c -------------------------------------------------------------------------------- /src/reproBLAS/dnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/dnrm2.c -------------------------------------------------------------------------------- /src/reproBLAS/dsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/dsum.c -------------------------------------------------------------------------------- /src/reproBLAS/dzasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/dzasum.c -------------------------------------------------------------------------------- /src/reproBLAS/dznrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/dznrm2.c -------------------------------------------------------------------------------- /src/reproBLAS/rcdotc_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rcdotc_sub.c -------------------------------------------------------------------------------- /src/reproBLAS/rcdotu_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rcdotu_sub.c -------------------------------------------------------------------------------- /src/reproBLAS/rcgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rcgemm.c -------------------------------------------------------------------------------- /src/reproBLAS/rcgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rcgemv.c -------------------------------------------------------------------------------- /src/reproBLAS/rcsum_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rcsum_sub.c -------------------------------------------------------------------------------- /src/reproBLAS/rdasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rdasum.c -------------------------------------------------------------------------------- /src/reproBLAS/rddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rddot.c -------------------------------------------------------------------------------- /src/reproBLAS/rdgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rdgemm.c -------------------------------------------------------------------------------- /src/reproBLAS/rdgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rdgemv.c -------------------------------------------------------------------------------- /src/reproBLAS/rdnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rdnrm2.c -------------------------------------------------------------------------------- /src/reproBLAS/rdsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rdsum.c -------------------------------------------------------------------------------- /src/reproBLAS/rdzasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rdzasum.c -------------------------------------------------------------------------------- /src/reproBLAS/rdznrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rdznrm2.c -------------------------------------------------------------------------------- /src/reproBLAS/rsasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rsasum.c -------------------------------------------------------------------------------- /src/reproBLAS/rscasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rscasum.c -------------------------------------------------------------------------------- /src/reproBLAS/rscnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rscnrm2.c -------------------------------------------------------------------------------- /src/reproBLAS/rsdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rsdot.c -------------------------------------------------------------------------------- /src/reproBLAS/rsgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rsgemm.c -------------------------------------------------------------------------------- /src/reproBLAS/rsgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rsgemv.c -------------------------------------------------------------------------------- /src/reproBLAS/rsnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rsnrm2.c -------------------------------------------------------------------------------- /src/reproBLAS/rssum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rssum.c -------------------------------------------------------------------------------- /src/reproBLAS/rzdotc_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rzdotc_sub.c -------------------------------------------------------------------------------- /src/reproBLAS/rzdotu_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rzdotu_sub.c -------------------------------------------------------------------------------- /src/reproBLAS/rzgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rzgemm.c -------------------------------------------------------------------------------- /src/reproBLAS/rzgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rzgemv.c -------------------------------------------------------------------------------- /src/reproBLAS/rzsum_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/rzsum_sub.c -------------------------------------------------------------------------------- /src/reproBLAS/sasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/sasum.c -------------------------------------------------------------------------------- /src/reproBLAS/scasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/scasum.c -------------------------------------------------------------------------------- /src/reproBLAS/scnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/scnrm2.c -------------------------------------------------------------------------------- /src/reproBLAS/sdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/sdot.c -------------------------------------------------------------------------------- /src/reproBLAS/sgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/sgemm.c -------------------------------------------------------------------------------- /src/reproBLAS/sgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/sgemv.c -------------------------------------------------------------------------------- /src/reproBLAS/snrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/snrm2.c -------------------------------------------------------------------------------- /src/reproBLAS/ssum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/ssum.c -------------------------------------------------------------------------------- /src/reproBLAS/zdotc_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/zdotc_sub.c -------------------------------------------------------------------------------- /src/reproBLAS/zdotu_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/zdotu_sub.c -------------------------------------------------------------------------------- /src/reproBLAS/zgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/zgemm.c -------------------------------------------------------------------------------- /src/reproBLAS/zgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/zgemv.c -------------------------------------------------------------------------------- /src/reproBLAS/zsum_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/reproBLAS/zsum_sub.c -------------------------------------------------------------------------------- /src/tuned_args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/tuned_args.json -------------------------------------------------------------------------------- /src/tuned_args_peters_mac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/src/tuned_args_peters_mac.json -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- 1 | ../mk/Makefile -------------------------------------------------------------------------------- /tests/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/Rules.mk -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/accs/Makefile: -------------------------------------------------------------------------------- 1 | ../../mk/Makefile -------------------------------------------------------------------------------- /tests/accs/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/accs/Rules.mk -------------------------------------------------------------------------------- /tests/accs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/accs/acc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/accs/acc.py -------------------------------------------------------------------------------- /tests/accs/acc_csum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/accs/acc_csum.c -------------------------------------------------------------------------------- /tests/accs/acc_dsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/accs/acc_dsum.c -------------------------------------------------------------------------------- /tests/accs/acc_rcsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/accs/acc_rcsum.c -------------------------------------------------------------------------------- /tests/accs/acc_rdsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/accs/acc_rdsum.c -------------------------------------------------------------------------------- /tests/accs/acc_rssum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/accs/acc_rssum.c -------------------------------------------------------------------------------- /tests/accs/acc_rzsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/accs/acc_rzsum.c -------------------------------------------------------------------------------- /tests/accs/acc_ssum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/accs/acc_ssum.c -------------------------------------------------------------------------------- /tests/accs/acc_vecvec_fill_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/accs/acc_vecvec_fill_header.h -------------------------------------------------------------------------------- /tests/accs/acc_zsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/accs/acc_zsum.c -------------------------------------------------------------------------------- /tests/accs/accs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/accs/accs.py -------------------------------------------------------------------------------- /tests/benchs/Makefile: -------------------------------------------------------------------------------- 1 | ../../mk/Makefile -------------------------------------------------------------------------------- /tests/benchs/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/Rules.mk -------------------------------------------------------------------------------- /tests/benchs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/benchs/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench.py -------------------------------------------------------------------------------- /tests/benchs/bench_camax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_camax.c -------------------------------------------------------------------------------- /tests/benchs/bench_camaxm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_camaxm.c -------------------------------------------------------------------------------- /tests/benchs/bench_cbcbadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_cbcbadd.c -------------------------------------------------------------------------------- /tests/benchs/bench_cciconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_cciconv.c -------------------------------------------------------------------------------- /tests/benchs/bench_cdotc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_cdotc.c -------------------------------------------------------------------------------- /tests/benchs/bench_cdotu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_cdotu.c -------------------------------------------------------------------------------- /tests/benchs/bench_cgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_cgemm.c -------------------------------------------------------------------------------- /tests/benchs/bench_cgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_cgemv.c -------------------------------------------------------------------------------- /tests/benchs/bench_csum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_csum.c -------------------------------------------------------------------------------- /tests/benchs/bench_damax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_damax.c -------------------------------------------------------------------------------- /tests/benchs/bench_damaxm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_damaxm.c -------------------------------------------------------------------------------- /tests/benchs/bench_dasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_dasum.c -------------------------------------------------------------------------------- /tests/benchs/bench_dbdbadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_dbdbadd.c -------------------------------------------------------------------------------- /tests/benchs/bench_ddbconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_ddbconv.c -------------------------------------------------------------------------------- /tests/benchs/bench_ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_ddot.c -------------------------------------------------------------------------------- /tests/benchs/bench_dgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_dgemm.c -------------------------------------------------------------------------------- /tests/benchs/bench_dgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_dgemv.c -------------------------------------------------------------------------------- /tests/benchs/bench_dnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_dnrm2.c -------------------------------------------------------------------------------- /tests/benchs/bench_dsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_dsum.c -------------------------------------------------------------------------------- /tests/benchs/bench_dzasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_dzasum.c -------------------------------------------------------------------------------- /tests/benchs/bench_dznrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_dznrm2.c -------------------------------------------------------------------------------- /tests/benchs/bench_icamax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_icamax.c -------------------------------------------------------------------------------- /tests/benchs/bench_idamax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_idamax.c -------------------------------------------------------------------------------- /tests/benchs/bench_ireduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_ireduce.c -------------------------------------------------------------------------------- /tests/benchs/bench_isamax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_isamax.c -------------------------------------------------------------------------------- /tests/benchs/bench_izamax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_izamax.c -------------------------------------------------------------------------------- /tests/benchs/bench_matmat_fill_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_matmat_fill_header.h -------------------------------------------------------------------------------- /tests/benchs/bench_matvec_fill_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_matvec_fill_header.h -------------------------------------------------------------------------------- /tests/benchs/bench_rcdotc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rcdotc.c -------------------------------------------------------------------------------- /tests/benchs/bench_rcdotu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rcdotu.c -------------------------------------------------------------------------------- /tests/benchs/bench_rcgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rcgemm.c -------------------------------------------------------------------------------- /tests/benchs/bench_rcgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rcgemv.c -------------------------------------------------------------------------------- /tests/benchs/bench_rcsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rcsum.c -------------------------------------------------------------------------------- /tests/benchs/bench_rdasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rdasum.c -------------------------------------------------------------------------------- /tests/benchs/bench_rddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rddot.c -------------------------------------------------------------------------------- /tests/benchs/bench_rdgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rdgemm.c -------------------------------------------------------------------------------- /tests/benchs/bench_rdgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rdgemv.c -------------------------------------------------------------------------------- /tests/benchs/bench_rdnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rdnrm2.c -------------------------------------------------------------------------------- /tests/benchs/bench_rdsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rdsum.c -------------------------------------------------------------------------------- /tests/benchs/bench_rdzasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rdzasum.c -------------------------------------------------------------------------------- /tests/benchs/bench_rdznrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rdznrm2.c -------------------------------------------------------------------------------- /tests/benchs/bench_reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_reduce.c -------------------------------------------------------------------------------- /tests/benchs/bench_rsasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rsasum.c -------------------------------------------------------------------------------- /tests/benchs/bench_rscasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rscasum.c -------------------------------------------------------------------------------- /tests/benchs/bench_rscnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rscnrm2.c -------------------------------------------------------------------------------- /tests/benchs/bench_rsdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rsdot.c -------------------------------------------------------------------------------- /tests/benchs/bench_rsgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rsgemm.c -------------------------------------------------------------------------------- /tests/benchs/bench_rsgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rsgemv.c -------------------------------------------------------------------------------- /tests/benchs/bench_rsnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rsnrm2.c -------------------------------------------------------------------------------- /tests/benchs/bench_rssum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rssum.c -------------------------------------------------------------------------------- /tests/benchs/bench_rzdotc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rzdotc.c -------------------------------------------------------------------------------- /tests/benchs/bench_rzdotu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rzdotu.c -------------------------------------------------------------------------------- /tests/benchs/bench_rzgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rzgemm.c -------------------------------------------------------------------------------- /tests/benchs/bench_rzgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rzgemv.c -------------------------------------------------------------------------------- /tests/benchs/bench_rzsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_rzsum.c -------------------------------------------------------------------------------- /tests/benchs/bench_samax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_samax.c -------------------------------------------------------------------------------- /tests/benchs/bench_samaxm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_samaxm.c -------------------------------------------------------------------------------- /tests/benchs/bench_sasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_sasum.c -------------------------------------------------------------------------------- /tests/benchs/bench_sbsbadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_sbsbadd.c -------------------------------------------------------------------------------- /tests/benchs/bench_scasum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_scasum.c -------------------------------------------------------------------------------- /tests/benchs/bench_scnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_scnrm2.c -------------------------------------------------------------------------------- /tests/benchs/bench_sdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_sdot.c -------------------------------------------------------------------------------- /tests/benchs/bench_sgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_sgemm.c -------------------------------------------------------------------------------- /tests/benchs/bench_sgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_sgemv.c -------------------------------------------------------------------------------- /tests/benchs/bench_snrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_snrm2.c -------------------------------------------------------------------------------- /tests/benchs/bench_ssbconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_ssbconv.c -------------------------------------------------------------------------------- /tests/benchs/bench_ssum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_ssum.c -------------------------------------------------------------------------------- /tests/benchs/bench_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_utils.c -------------------------------------------------------------------------------- /tests/benchs/bench_vecvec_fill_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_vecvec_fill_header.h -------------------------------------------------------------------------------- /tests/benchs/bench_zamax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_zamax.c -------------------------------------------------------------------------------- /tests/benchs/bench_zamaxm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_zamaxm.c -------------------------------------------------------------------------------- /tests/benchs/bench_zbzbadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_zbzbadd.c -------------------------------------------------------------------------------- /tests/benchs/bench_zdotc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_zdotc.c -------------------------------------------------------------------------------- /tests/benchs/bench_zdotu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_zdotu.c -------------------------------------------------------------------------------- /tests/benchs/bench_zgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_zgemm.c -------------------------------------------------------------------------------- /tests/benchs/bench_zgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_zgemv.c -------------------------------------------------------------------------------- /tests/benchs/bench_zsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_zsum.c -------------------------------------------------------------------------------- /tests/benchs/bench_zziconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/bench_zziconv.c -------------------------------------------------------------------------------- /tests/benchs/benchs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/benchs/benchs.py -------------------------------------------------------------------------------- /tests/checks/Makefile: -------------------------------------------------------------------------------- 1 | ../../mk/Makefile -------------------------------------------------------------------------------- /tests/checks/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/README.txt -------------------------------------------------------------------------------- /tests/checks/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/Rules.mk -------------------------------------------------------------------------------- /tests/checks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/checks/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/check.py -------------------------------------------------------------------------------- /tests/checks/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/checks.py -------------------------------------------------------------------------------- /tests/checks/corroborate_rcgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/corroborate_rcgemm.c -------------------------------------------------------------------------------- /tests/checks/corroborate_rcgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/corroborate_rcgemv.c -------------------------------------------------------------------------------- /tests/checks/corroborate_rdgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/corroborate_rdgemm.c -------------------------------------------------------------------------------- /tests/checks/corroborate_rdgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/corroborate_rdgemv.c -------------------------------------------------------------------------------- /tests/checks/corroborate_rsgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/corroborate_rsgemm.c -------------------------------------------------------------------------------- /tests/checks/corroborate_rsgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/corroborate_rsgemv.c -------------------------------------------------------------------------------- /tests/checks/corroborate_rzgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/corroborate_rzgemm.c -------------------------------------------------------------------------------- /tests/checks/corroborate_rzgemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/corroborate_rzgemv.c -------------------------------------------------------------------------------- /tests/checks/data/c_2_rand-1_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_2_rand-1_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/c_2_rand-1_N4095__Brcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_2_rand-1_N4095__Brcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_2_rand-1_N4095__Brcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_2_rand-1_N4095__Brcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_2_rand-1_N4095__Brcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_2_rand-1_N4095__Brcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_2_rand-1_N4095__Brscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_2_rand-1_N4095__Brscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_2_rand-1_N4095__Brscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_2_rand-1_N4095__Brscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_2_rand-1_N4095__rcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_2_rand-1_N4095__rcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_2_rand-1_N4095__rcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_2_rand-1_N4095__rcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_2_rand-1_N4095__rcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_2_rand-1_N4095__rcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_2_rand-1_N4095__rscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_2_rand-1_N4095__rscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_2_rand-1_N4095__rscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_2_rand-1_N4095__rscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_normal_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_normal_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/c_normal_N4095__Brcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_normal_N4095__Brcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_normal_N4095__Brcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_normal_N4095__Brcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_normal_N4095__Brcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_normal_N4095__Brcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_normal_N4095__Brscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_normal_N4095__Brscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_normal_N4095__Brscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_normal_N4095__Brscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_normal_N4095__rcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_normal_N4095__rcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_normal_N4095__rcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_normal_N4095__rcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_normal_N4095__rcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_normal_N4095__rcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_normal_N4095__rscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_normal_N4095__rscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_normal_N4095__rscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_normal_N4095__rscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand+(rand-1)_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand+(rand-1)_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand+(rand-1)_N4095__Brcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand+(rand-1)_N4095__Brcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand+(rand-1)_N4095__Brcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand+(rand-1)_N4095__Brcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand+(rand-1)_N4095__Brcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand+(rand-1)_N4095__Brcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand+(rand-1)_N4095__Brscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand+(rand-1)_N4095__Brscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand+(rand-1)_N4095__Brscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand+(rand-1)_N4095__Brscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand+(rand-1)_N4095__rcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand+(rand-1)_N4095__rcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand+(rand-1)_N4095__rcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand+(rand-1)_N4095__rcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand+(rand-1)_N4095__rcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand+(rand-1)_N4095__rcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand+(rand-1)_N4095__rscasum.dat: -------------------------------------------------------------------------------- 1 | IK*E -------------------------------------------------------------------------------- /tests/checks/data/c_rand+(rand-1)_N4095__rscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand+(rand-1)_N4095__rscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_N4095__Brcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_N4095__Brcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_N4095__Brcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_N4095__Brcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_N4095__Brcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_N4095__Brcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_N4095__Brscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_N4095__Brscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_N4095__Brscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_N4095__Brscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_N4095__rcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_N4095__rcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_N4095__rcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_N4095__rcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_N4095__rcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_N4095__rcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_N4095__rscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_N4095__rscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_N4095__rscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_N4095__rscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_cond_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_cond_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_cond_N4095__Brcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_cond_N4095__Brcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_cond_N4095__Brcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_cond_N4095__Brcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_cond_N4095__Brcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_cond_N4095__Brcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_cond_N4095__Brscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_cond_N4095__Brscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_cond_N4095__Brscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_cond_N4095__Brscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_cond_N4095__rcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_cond_N4095__rcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_cond_N4095__rcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_cond_N4095__rcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_cond_N4095__rcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_cond_N4095__rcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_cond_N4095__rscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_cond_N4095__rscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_rand_cond_N4095__rscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_rand_cond_N4095__rscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_sine_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_sine_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/c_sine_N4095__Brcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_sine_N4095__Brcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_sine_N4095__Brcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_sine_N4095__Brcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_sine_N4095__Brcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_sine_N4095__Brcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_sine_N4095__Brscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_sine_N4095__Brscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_sine_N4095__Brscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_sine_N4095__Brscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_sine_N4095__rcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_sine_N4095__rcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_sine_N4095__rcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_sine_N4095__rcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_sine_N4095__rcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_sine_N4095__rcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_sine_N4095__rscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_sine_N4095__rscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_sine_N4095__rscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_sine_N4095__rscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+grow_big_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+grow_big_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+grow_big_N4095__Brcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+grow_big_N4095__Brcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+grow_big_N4095__Brcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+grow_big_N4095__Brcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+grow_big_N4095__Brcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+grow_big_N4095__Brcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+grow_big_N4095__Brscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+grow_big_N4095__Brscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+grow_big_N4095__Brscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+grow_big_N4095__Brscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+grow_big_N4095__rcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+grow_big_N4095__rcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+grow_big_N4095__rcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+grow_big_N4095__rcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+grow_big_N4095__rcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+grow_big_N4095__rcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+grow_big_N4095__rscasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+grow_big_N4095__rscasum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+grow_big_N4095__rscnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+grow_big_N4095__rscnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+rand_big_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+rand_big_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+rand_big_N4095__Brcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+rand_big_N4095__Brcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+rand_big_N4095__Brcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+rand_big_N4095__Brcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+rand_big_N4095__Brcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+rand_big_N4095__Brcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+rand_big_N4095__rcdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+rand_big_N4095__rcdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+rand_big_N4095__rcdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+rand_big_N4095__rcdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/c_small+rand_big_N4095__rcsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/c_small+rand_big_N4095__rcsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_2_rand-1_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_2_rand-1_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/d_2_rand-1_N4095__Brdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_2_rand-1_N4095__Brdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_2_rand-1_N4095__Brddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_2_rand-1_N4095__Brddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_2_rand-1_N4095__Brdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_2_rand-1_N4095__Brdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_2_rand-1_N4095__Brdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_2_rand-1_N4095__Brdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_2_rand-1_N4095__rdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_2_rand-1_N4095__rdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_2_rand-1_N4095__rddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_2_rand-1_N4095__rddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_2_rand-1_N4095__rdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_2_rand-1_N4095__rdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_2_rand-1_N4095__rdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_2_rand-1_N4095__rdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_normal_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_normal_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/d_normal_N4095__Brdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_normal_N4095__Brdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_normal_N4095__Brddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_normal_N4095__Brddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_normal_N4095__Brdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_normal_N4095__Brdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_normal_N4095__Brdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_normal_N4095__Brdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_normal_N4095__rdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_normal_N4095__rdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_normal_N4095__rddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_normal_N4095__rddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_normal_N4095__rdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_normal_N4095__rdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_normal_N4095__rdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_normal_N4095__rdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand+(rand-1)_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand+(rand-1)_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand+(rand-1)_N4095__Brdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand+(rand-1)_N4095__Brdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand+(rand-1)_N4095__Brddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand+(rand-1)_N4095__Brddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand+(rand-1)_N4095__Brdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand+(rand-1)_N4095__Brdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand+(rand-1)_N4095__Brdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand+(rand-1)_N4095__Brdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand+(rand-1)_N4095__rdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand+(rand-1)_N4095__rdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand+(rand-1)_N4095__rddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand+(rand-1)_N4095__rddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand+(rand-1)_N4095__rdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand+(rand-1)_N4095__rdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand+(rand-1)_N4095__rdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand+(rand-1)_N4095__rdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_N4095__Brdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_N4095__Brdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_N4095__Brddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_N4095__Brddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_N4095__Brdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_N4095__Brdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_N4095__Brdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_N4095__Brdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_N4095__rdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_N4095__rdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_N4095__rddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_N4095__rddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_N4095__rdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_N4095__rdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_N4095__rdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_N4095__rdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_cond_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_cond_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_cond_N4095__Brdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_cond_N4095__Brdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_cond_N4095__Brddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_cond_N4095__Brddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_cond_N4095__Brdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_cond_N4095__Brdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_cond_N4095__Brdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_cond_N4095__Brdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_cond_N4095__rdasum.dat: -------------------------------------------------------------------------------- 1 | ?y u45p@ -------------------------------------------------------------------------------- /tests/checks/data/d_rand_cond_N4095__rddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_cond_N4095__rddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_cond_N4095__rdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_cond_N4095__rdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_rand_cond_N4095__rdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_rand_cond_N4095__rdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_sine_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_sine_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/d_sine_N4095__Brdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_sine_N4095__Brdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_sine_N4095__Brddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_sine_N4095__Brddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_sine_N4095__Brdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_sine_N4095__Brdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_sine_N4095__Brdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_sine_N4095__Brdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_sine_N4095__rdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_sine_N4095__rdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_sine_N4095__rddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_sine_N4095__rddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_sine_N4095__rdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_sine_N4095__rdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_sine_N4095__rdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_sine_N4095__rdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+grow_big_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+grow_big_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+grow_big_N4095__Brddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+grow_big_N4095__Brddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+grow_big_N4095__Brdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+grow_big_N4095__Brdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+grow_big_N4095__rdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+grow_big_N4095__rdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+grow_big_N4095__rddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+grow_big_N4095__rddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+grow_big_N4095__rdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+grow_big_N4095__rdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+grow_big_N4095__rdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+grow_big_N4095__rdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+rand_big_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+rand_big_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+rand_big_N4095__Brddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+rand_big_N4095__Brddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+rand_big_N4095__Brdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+rand_big_N4095__Brdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+rand_big_N4095__rdasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+rand_big_N4095__rdasum.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+rand_big_N4095__rddot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+rand_big_N4095__rddot.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+rand_big_N4095__rdnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+rand_big_N4095__rdnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/d_small+rand_big_N4095__rdsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/d_small+rand_big_N4095__rdsum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_2_rand-1_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_2_rand-1_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/s_2_rand-1_N4095__Brsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_2_rand-1_N4095__Brsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_2_rand-1_N4095__Brsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_2_rand-1_N4095__Brsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_2_rand-1_N4095__Brsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_2_rand-1_N4095__Brsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_2_rand-1_N4095__Brssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_2_rand-1_N4095__Brssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_2_rand-1_N4095__rsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_2_rand-1_N4095__rsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_2_rand-1_N4095__rsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_2_rand-1_N4095__rsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_2_rand-1_N4095__rsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_2_rand-1_N4095__rsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_2_rand-1_N4095__rssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_2_rand-1_N4095__rssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_normal_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_normal_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/s_normal_N4095__Brsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_normal_N4095__Brsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_normal_N4095__Brsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_normal_N4095__Brsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_normal_N4095__Brsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_normal_N4095__Brsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_normal_N4095__Brssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_normal_N4095__Brssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_normal_N4095__rsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_normal_N4095__rsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_normal_N4095__rsdot.dat: -------------------------------------------------------------------------------- 1 | Ro@ -------------------------------------------------------------------------------- /tests/checks/data/s_normal_N4095__rsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_normal_N4095__rsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_normal_N4095__rssum.dat: -------------------------------------------------------------------------------- 1 | Ro@ -------------------------------------------------------------------------------- /tests/checks/data/s_rand+(rand-1)_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand+(rand-1)_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand+(rand-1)_N4095__Brsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand+(rand-1)_N4095__Brsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand+(rand-1)_N4095__Brsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand+(rand-1)_N4095__Brsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand+(rand-1)_N4095__Brsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand+(rand-1)_N4095__Brsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand+(rand-1)_N4095__Brssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand+(rand-1)_N4095__Brssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand+(rand-1)_N4095__rsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand+(rand-1)_N4095__rsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand+(rand-1)_N4095__rsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand+(rand-1)_N4095__rsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand+(rand-1)_N4095__rsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand+(rand-1)_N4095__rsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand+(rand-1)_N4095__rssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand+(rand-1)_N4095__rssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_N4095__Brsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_N4095__Brsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_N4095__Brsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_N4095__Brsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_N4095__Brsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_N4095__Brsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_N4095__Brssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_N4095__Brssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_N4095__rsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_N4095__rsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_N4095__rsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_N4095__rsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_N4095__rsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_N4095__rsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_N4095__rssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_N4095__rssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_cond_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_cond_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_cond_N4095__Brsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_cond_N4095__Brsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_cond_N4095__Brsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_cond_N4095__Brsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_cond_N4095__Brsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_cond_N4095__Brsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_cond_N4095__Brssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_cond_N4095__Brssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_cond_N4095__rsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_cond_N4095__rsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_cond_N4095__rsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_cond_N4095__rsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_rand_cond_N4095__rsnrm2.dat: -------------------------------------------------------------------------------- 1 | #1RA -------------------------------------------------------------------------------- /tests/checks/data/s_rand_cond_N4095__rssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_rand_cond_N4095__rssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_sine_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_sine_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/s_sine_N4095__Brsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_sine_N4095__Brsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_sine_N4095__Brsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_sine_N4095__Brsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_sine_N4095__Brsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_sine_N4095__Brsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_sine_N4095__Brssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_sine_N4095__Brssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_sine_N4095__rsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_sine_N4095__rsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_sine_N4095__rsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_sine_N4095__rsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_sine_N4095__rsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_sine_N4095__rsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_sine_N4095__rssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_sine_N4095__rssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+grow_big_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+grow_big_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+grow_big_N4095__Brsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+grow_big_N4095__Brsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+grow_big_N4095__Brssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+grow_big_N4095__Brssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+grow_big_N4095__rsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+grow_big_N4095__rsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+grow_big_N4095__rsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+grow_big_N4095__rsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+grow_big_N4095__rsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+grow_big_N4095__rsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+grow_big_N4095__rssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+grow_big_N4095__rssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+rand_big_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+rand_big_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+rand_big_N4095__Brsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+rand_big_N4095__Brsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+rand_big_N4095__Brssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+rand_big_N4095__Brssum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+rand_big_N4095__rsasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+rand_big_N4095__rsasum.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+rand_big_N4095__rsdot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+rand_big_N4095__rsdot.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+rand_big_N4095__rsnrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+rand_big_N4095__rsnrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/s_small+rand_big_N4095__rssum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/s_small+rand_big_N4095__rssum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_2_rand-1_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_2_rand-1_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/z_2_rand-1_N4095__Brdzasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_2_rand-1_N4095__Brdzasum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_2_rand-1_N4095__Brdznrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_2_rand-1_N4095__Brdznrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/z_2_rand-1_N4095__Brzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_2_rand-1_N4095__Brzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_2_rand-1_N4095__Brzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_2_rand-1_N4095__Brzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_2_rand-1_N4095__Brzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_2_rand-1_N4095__Brzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_2_rand-1_N4095__rdzasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_2_rand-1_N4095__rdzasum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_2_rand-1_N4095__rdznrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_2_rand-1_N4095__rdznrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/z_2_rand-1_N4095__rzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_2_rand-1_N4095__rzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_2_rand-1_N4095__rzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_2_rand-1_N4095__rzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_2_rand-1_N4095__rzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_2_rand-1_N4095__rzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_normal_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_normal_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/z_normal_N4095__Brdzasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_normal_N4095__Brdzasum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_normal_N4095__Brdznrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_normal_N4095__Brdznrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/z_normal_N4095__Brzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_normal_N4095__Brzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_normal_N4095__Brzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_normal_N4095__Brzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_normal_N4095__Brzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_normal_N4095__Brzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_normal_N4095__rdzasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_normal_N4095__rdzasum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_normal_N4095__rdznrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_normal_N4095__rdznrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/z_normal_N4095__rzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_normal_N4095__rzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_normal_N4095__rzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_normal_N4095__rzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_normal_N4095__rzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_normal_N4095__rzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand+(rand-1)_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand+(rand-1)_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand+(rand-1)_N4095__Brzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand+(rand-1)_N4095__Brzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand+(rand-1)_N4095__Brzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand+(rand-1)_N4095__Brzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand+(rand-1)_N4095__Brzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand+(rand-1)_N4095__Brzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand+(rand-1)_N4095__rdzasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand+(rand-1)_N4095__rdzasum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand+(rand-1)_N4095__rdznrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand+(rand-1)_N4095__rdznrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand+(rand-1)_N4095__rzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand+(rand-1)_N4095__rzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand+(rand-1)_N4095__rzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand+(rand-1)_N4095__rzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand+(rand-1)_N4095__rzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand+(rand-1)_N4095__rzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_N4095__Brdzasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_N4095__Brdzasum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_N4095__Brdznrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_N4095__Brdznrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_N4095__Brzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_N4095__Brzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_N4095__Brzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_N4095__Brzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_N4095__Brzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_N4095__Brzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_N4095__rdzasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_N4095__rdzasum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_N4095__rdznrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_N4095__rdznrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_N4095__rzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_N4095__rzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_N4095__rzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_N4095__rzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_N4095__rzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_N4095__rzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_cond_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_cond_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_cond_N4095__Brdzasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_cond_N4095__Brdzasum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_cond_N4095__Brdznrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_cond_N4095__Brdznrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_cond_N4095__Brzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_cond_N4095__Brzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_cond_N4095__Brzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_cond_N4095__Brzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_cond_N4095__Brzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_cond_N4095__Brzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_cond_N4095__rdzasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_cond_N4095__rdzasum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_cond_N4095__rdznrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_cond_N4095__rdznrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_cond_N4095__rzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_cond_N4095__rzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_cond_N4095__rzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_cond_N4095__rzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_rand_cond_N4095__rzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_rand_cond_N4095__rzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_sine_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_sine_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/z_sine_N4095__Brdzasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_sine_N4095__Brdzasum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_sine_N4095__Brdznrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_sine_N4095__Brdznrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/z_sine_N4095__Brzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_sine_N4095__Brzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_sine_N4095__Brzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_sine_N4095__Brzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_sine_N4095__Brzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_sine_N4095__Brzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_sine_N4095__rdzasum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_sine_N4095__rdzasum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_sine_N4095__rdznrm2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_sine_N4095__rdznrm2.dat -------------------------------------------------------------------------------- /tests/checks/data/z_sine_N4095__rzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_sine_N4095__rzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_sine_N4095__rzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_sine_N4095__rzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_sine_N4095__rzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_sine_N4095__rzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_small+grow_big_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_small+grow_big_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/z_small+grow_big_N4095__Brzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_small+grow_big_N4095__Brzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_small+grow_big_N4095__rzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_small+grow_big_N4095__rzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_small+grow_big_N4095__rzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_small+grow_big_N4095__rzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_small+grow_big_N4095__rzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_small+grow_big_N4095__rzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_small+rand_big_N4095.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_small+rand_big_N4095.dat -------------------------------------------------------------------------------- /tests/checks/data/z_small+rand_big_N4095__Brzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_small+rand_big_N4095__Brzsum.dat -------------------------------------------------------------------------------- /tests/checks/data/z_small+rand_big_N4095__rzdotc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_small+rand_big_N4095__rzdotc.dat -------------------------------------------------------------------------------- /tests/checks/data/z_small+rand_big_N4095__rzdotu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_small+rand_big_N4095__rzdotu.dat -------------------------------------------------------------------------------- /tests/checks/data/z_small+rand_big_N4095__rzsum.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/data/z_small+rand_big_N4095__rzsum.dat -------------------------------------------------------------------------------- /tests/checks/rcblas1_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/rcblas1_wrapper.h -------------------------------------------------------------------------------- /tests/checks/rdblas1_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/rdblas1_wrapper.h -------------------------------------------------------------------------------- /tests/checks/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/reference.py -------------------------------------------------------------------------------- /tests/checks/reference.suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/reference.suite -------------------------------------------------------------------------------- /tests/checks/rsblas1_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/rsblas1_wrapper.h -------------------------------------------------------------------------------- /tests/checks/rzblas1_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/rzblas1_wrapper.h -------------------------------------------------------------------------------- /tests/checks/validate_external_rcblas1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_external_rcblas1.c -------------------------------------------------------------------------------- /tests/checks/validate_external_rdblas1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_external_rdblas1.c -------------------------------------------------------------------------------- /tests/checks/validate_external_rsblas1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_external_rsblas1.c -------------------------------------------------------------------------------- /tests/checks/validate_external_rzblas1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_external_rzblas1.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_camax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_camax.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_caugsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_caugsum.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_damax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_damax.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_daugsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_daugsum.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_digranularity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_digranularity.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_dindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_dindex.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_dmindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_dmindex.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_dscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_dscale.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_samax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_samax.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_saugsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_saugsum.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_sindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_sindex.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_smindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_smindex.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_sscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_sscale.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_ufp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_ufp.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_ufpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_ufpf.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_zamax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_zamax.c -------------------------------------------------------------------------------- /tests/checks/validate_internal_zaugsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_internal_zaugsum.c -------------------------------------------------------------------------------- /tests/checks/validate_xblas_cdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_xblas_cdot.c -------------------------------------------------------------------------------- /tests/checks/validate_xblas_ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_xblas_ddot.c -------------------------------------------------------------------------------- /tests/checks/validate_xblas_sdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_xblas_sdot.c -------------------------------------------------------------------------------- /tests/checks/validate_xblas_zdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/validate_xblas_zdot.c -------------------------------------------------------------------------------- /tests/checks/verify_caugsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/verify_caugsum.c -------------------------------------------------------------------------------- /tests/checks/verify_daugsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/verify_daugsum.c -------------------------------------------------------------------------------- /tests/checks/verify_dbdssq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/verify_dbdssq.c -------------------------------------------------------------------------------- /tests/checks/verify_dbzssq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/verify_dbzssq.c -------------------------------------------------------------------------------- /tests/checks/verify_rcblas1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/verify_rcblas1.c -------------------------------------------------------------------------------- /tests/checks/verify_rdblas1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/verify_rdblas1.c -------------------------------------------------------------------------------- /tests/checks/verify_rsblas1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/verify_rsblas1.c -------------------------------------------------------------------------------- /tests/checks/verify_rzblas1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/verify_rzblas1.c -------------------------------------------------------------------------------- /tests/checks/verify_saugsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/verify_saugsum.c -------------------------------------------------------------------------------- /tests/checks/verify_sbcssq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/verify_sbcssq.c -------------------------------------------------------------------------------- /tests/checks/verify_sbsssq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/verify_sbsssq.c -------------------------------------------------------------------------------- /tests/checks/verify_zaugsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/verify_zaugsum.c -------------------------------------------------------------------------------- /tests/checks/wrap_caugsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/wrap_caugsum.h -------------------------------------------------------------------------------- /tests/checks/wrap_daugsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/wrap_daugsum.h -------------------------------------------------------------------------------- /tests/checks/wrap_rcgemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/wrap_rcgemm.h -------------------------------------------------------------------------------- /tests/checks/wrap_rcgemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/wrap_rcgemv.h -------------------------------------------------------------------------------- /tests/checks/wrap_rdgemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/wrap_rdgemm.h -------------------------------------------------------------------------------- /tests/checks/wrap_rdgemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/wrap_rdgemv.h -------------------------------------------------------------------------------- /tests/checks/wrap_rsgemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/wrap_rsgemm.h -------------------------------------------------------------------------------- /tests/checks/wrap_rsgemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/wrap_rsgemv.h -------------------------------------------------------------------------------- /tests/checks/wrap_rzgemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/wrap_rzgemm.h -------------------------------------------------------------------------------- /tests/checks/wrap_rzgemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/wrap_rzgemv.h -------------------------------------------------------------------------------- /tests/checks/wrap_saugsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/wrap_saugsum.h -------------------------------------------------------------------------------- /tests/checks/wrap_zaugsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/checks/wrap_zaugsum.h -------------------------------------------------------------------------------- /tests/common/Makefile: -------------------------------------------------------------------------------- 1 | ../../mk/Makefile -------------------------------------------------------------------------------- /tests/common/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/Rules.mk -------------------------------------------------------------------------------- /tests/common/test_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_BLAS.h -------------------------------------------------------------------------------- /tests/common/test_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_data.c -------------------------------------------------------------------------------- /tests/common/test_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_file.c -------------------------------------------------------------------------------- /tests/common/test_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_file.h -------------------------------------------------------------------------------- /tests/common/test_file_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_file_header.h -------------------------------------------------------------------------------- /tests/common/test_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_header.h -------------------------------------------------------------------------------- /tests/common/test_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_limits.h -------------------------------------------------------------------------------- /tests/common/test_mat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_mat.c -------------------------------------------------------------------------------- /tests/common/test_matmat_fill_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_matmat_fill_header.h -------------------------------------------------------------------------------- /tests/common/test_matmat_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_matmat_header.h -------------------------------------------------------------------------------- /tests/common/test_matvec_fill_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_matvec_fill_header.h -------------------------------------------------------------------------------- /tests/common/test_matvec_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_matvec_header.h -------------------------------------------------------------------------------- /tests/common/test_metric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_metric.c -------------------------------------------------------------------------------- /tests/common/test_metric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_metric.h -------------------------------------------------------------------------------- /tests/common/test_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_opt.c -------------------------------------------------------------------------------- /tests/common/test_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_opt.h -------------------------------------------------------------------------------- /tests/common/test_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_time.c -------------------------------------------------------------------------------- /tests/common/test_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_time.h -------------------------------------------------------------------------------- /tests/common/test_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_util.c -------------------------------------------------------------------------------- /tests/common/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_util.h -------------------------------------------------------------------------------- /tests/common/test_util_xblas_cdot_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_util_xblas_cdot_fill.c -------------------------------------------------------------------------------- /tests/common/test_util_xblas_ddot_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_util_xblas_ddot_fill.c -------------------------------------------------------------------------------- /tests/common/test_util_xblas_sdot_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_util_xblas_sdot_fill.c -------------------------------------------------------------------------------- /tests/common/test_util_xblas_zdot_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_util_xblas_zdot_fill.c -------------------------------------------------------------------------------- /tests/common/test_vecvec_fill_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_vecvec_fill_header.h -------------------------------------------------------------------------------- /tests/common/test_vecvec_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/common/test_vecvec_header.h -------------------------------------------------------------------------------- /tests/harness/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/harness/harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tests/harness/harness.py -------------------------------------------------------------------------------- /tune/Makefile: -------------------------------------------------------------------------------- 1 | ../mk/Makefile -------------------------------------------------------------------------------- /tune/ReproBLASOpenTuner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willow-ahrens/ReproBLAS/HEAD/tune/ReproBLASOpenTuner.py -------------------------------------------------------------------------------- /tune/Rules.mk: -------------------------------------------------------------------------------- 1 | TARGETS= 2 | SUBDIRS= 3 | --------------------------------------------------------------------------------