├── .gitignore ├── LICENSE.md ├── Makefile ├── Makefile.mak ├── README.md ├── benchmarks ├── consumer_v2 │ └── cjpeg │ │ ├── Makefile │ │ ├── algo.h │ │ ├── alloc.h │ │ ├── bm_lib.c │ │ ├── bm_lib.h │ │ ├── bmark_lite.c │ │ ├── cderror.h │ │ ├── cdjpeg.c │ │ ├── cdjpeg.h │ │ ├── cjpeg.c │ │ ├── data │ │ ├── DavidAndDogs_bmp.c │ │ ├── DavidAndDogs_bmp.h │ │ ├── DragonFly_bmp.c │ │ ├── DragonFly_bmp.h │ │ ├── EEMBCGroupShotMiami_bmp.c │ │ ├── EEMBCGroupShotMiami_bmp.h │ │ ├── Galileo_bmp.c │ │ ├── Galileo_bmp.h │ │ ├── Mandrake_bmp.c │ │ ├── Mandrake_bmp.h │ │ ├── MarsFormerLakes_bmp.c │ │ ├── MarsFormerLakes_bmp.h │ │ ├── Rose256_bmp.c │ │ ├── Rose256_bmp.h │ │ ├── door_bmp.c │ │ ├── door_bmp.h │ │ ├── eye_bmp.c │ │ ├── eye_bmp.h │ │ ├── goose_bmp.c │ │ ├── goose_bmp.h │ │ ├── hall_bmp.c │ │ ├── hall_bmp.h │ │ ├── regen.sh │ │ ├── window_bmp.c │ │ └── window_bmp.h │ │ ├── datasheet.txt │ │ ├── filedata.c │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jchuff.h │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.h │ │ ├── jcparam.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jdatadst.c │ │ ├── jdct.h │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctint.c │ │ ├── jinclude.h │ │ ├── jmemansi.c │ │ ├── jmemmgr.c │ │ ├── jmemsys.h │ │ ├── jmorecfg.h │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jutils.c │ │ ├── jversion.h │ │ ├── preset.mak │ │ ├── rdbmp.c │ │ └── validate.h ├── core │ ├── Makefile │ ├── core_list_join.c │ ├── core_matrix.c │ ├── core_mith.c │ ├── core_mith.h │ ├── core_portme.c │ ├── core_portme.h │ ├── core_state.c │ ├── core_util.c │ ├── coremark.h │ └── datasheet.txt ├── darkmark │ ├── parser │ │ ├── Makefile │ │ ├── datasheet.txt │ │ ├── ezxml.c │ │ ├── ezxml.h │ │ └── parser.c │ ├── sha │ │ ├── Makefile │ │ ├── datasheet.txt │ │ ├── sha256.c │ │ ├── shabench.c │ │ └── shabench.h │ └── zip │ │ ├── Makefile │ │ ├── datasheet.txt │ │ ├── zip_darkmark.c │ │ └── zlib-1.2.8 │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── FAQ │ │ ├── INDEX │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── configure │ │ ├── configure.log │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── doc │ │ ├── algorithm.txt │ │ ├── rfc1950.txt │ │ ├── rfc1951.txt │ │ ├── rfc1952.txt │ │ └── txtvsbin.txt │ │ ├── example.exe │ │ ├── examples │ │ ├── README.examples │ │ ├── enough.c │ │ ├── fitblk.c │ │ ├── gun.c │ │ ├── gzappend.c │ │ ├── gzjoin.c │ │ ├── gzlog.c │ │ ├── gzlog.h │ │ ├── zlib_how.html │ │ ├── zpipe.c │ │ └── zran.c │ │ ├── gzclose.c │ │ ├── gzguts.h │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── make_vms.com │ │ ├── test │ │ ├── example.c │ │ ├── infcover.c │ │ └── minigzip.c │ │ ├── treebuild.xml │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zconf.h.cmakein │ │ ├── zconf.h.in │ │ ├── zlib.3 │ │ ├── zlib.3.pdf │ │ ├── zlib.h │ │ ├── zlib.map │ │ ├── zlib.pc │ │ ├── zlib.pc.cmakein │ │ ├── zlib.pc.in │ │ ├── zutil.c │ │ └── zutil.h ├── fp │ ├── fft_radix2 │ │ ├── Makefile │ │ ├── SP │ │ │ └── .gitignore │ │ ├── datasheet.txt │ │ ├── fft_radix2.c │ │ ├── fft_radix2.h │ │ ├── preset.mak │ │ ├── ref-sp │ │ │ ├── 2K.c │ │ │ ├── 32K.c │ │ │ ├── 4K.c │ │ │ ├── data3_big.c │ │ │ ├── data4_mid.c │ │ │ ├── data5_small.c │ │ │ └── regen.sh │ │ └── ref │ │ │ ├── 2K.c │ │ │ ├── 32K.c │ │ │ ├── 4K.c │ │ │ ├── data3_big.c │ │ │ ├── data4_mid.c │ │ │ ├── data5_small.c │ │ │ └── regen.sh │ ├── linpack │ │ ├── Makefile │ │ ├── SP │ │ │ └── .gitignore │ │ ├── datasheet.txt │ │ ├── linpack.c │ │ ├── linpack.h │ │ └── ref │ │ │ ├── data_big.c │ │ │ ├── data_mid.c │ │ │ ├── data_sml.c │ │ │ ├── inputs_f32.c │ │ │ ├── inputs_f64.c │ │ │ ├── regen.sh │ │ │ └── single_to_multiple.pl │ ├── loops │ │ ├── Makefile │ │ ├── SP │ │ │ └── .gitignore │ │ ├── datasheet.txt │ │ ├── loops.c │ │ ├── loops.h │ │ ├── ref-sp │ │ │ ├── 100.c │ │ │ ├── 100k.c │ │ │ ├── 100kdot.c │ │ │ ├── 10k.c │ │ │ ├── 10kdot.c │ │ │ ├── 1k.c │ │ │ ├── 1kdot.c │ │ │ ├── 32.c │ │ │ └── regen.sh │ │ └── ref │ │ │ ├── 100.c │ │ │ ├── 100k.c │ │ │ ├── 100kdot.c │ │ │ ├── 10k.c │ │ │ ├── 10kdot.c │ │ │ ├── 1k.c │ │ │ ├── 1kdot.c │ │ │ ├── 32.c │ │ │ └── regen.sh │ ├── nnet │ │ ├── Makefile │ │ ├── SP │ │ │ └── .gitignore │ │ ├── datasheet.txt │ │ ├── nnet.c │ │ ├── nnet.h │ │ ├── ref-sp │ │ │ ├── 1letter.c │ │ │ └── letters.c │ │ └── ref │ │ │ ├── 1letter.c │ │ │ └── letters.c │ └── preset │ │ ├── Makefile │ │ ├── SP │ │ └── .gitignore │ │ ├── fake_0.c │ │ ├── fake_1.c │ │ ├── fake_2.c │ │ ├── fake_3.c │ │ ├── fake_4.c │ │ ├── fake_5.c │ │ └── fake_6.c ├── libbmp │ └── Rose256.bmp └── libjpeg │ └── Rose256.jpg ├── coremarkpro.md5 ├── docs ├── Application Note CMP01-Porting CoreMark-PRO to Bare-Metal.pdf └── EEMBC Symmetric Multicore Benchmark User Guide 2.1.4.pdf ├── mith ├── Makefile ├── al │ ├── fdlibm │ │ ├── Makefile.in │ │ ├── Makefile.in.original │ │ ├── Makefile.original │ │ ├── README │ │ ├── configure │ │ ├── configure.in │ │ ├── e_acos.c │ │ ├── e_acosh.c │ │ ├── e_asin.c │ │ ├── e_atan2.c │ │ ├── e_atanh.c │ │ ├── e_cosh.c │ │ ├── e_exp.c │ │ ├── e_fmod.c │ │ ├── e_gamma.c │ │ ├── e_gamma_r.c │ │ ├── e_hypot.c │ │ ├── e_j0.c │ │ ├── e_j1.c │ │ ├── e_jn.c │ │ ├── e_lgamma.c │ │ ├── e_lgamma_r.c │ │ ├── e_log.c │ │ ├── e_log10.c │ │ ├── e_pow.c │ │ ├── e_rem_pio2.c │ │ ├── e_remainder.c │ │ ├── e_scalb.c │ │ ├── e_sinh.c │ │ ├── e_sqrt.c │ │ ├── fdlibm.h │ │ ├── fdlibm.h.original │ │ ├── k_cos.c │ │ ├── k_rem_pio2.c │ │ ├── k_sin.c │ │ ├── k_standard.c │ │ ├── k_tan.c │ │ ├── s_asinh.c │ │ ├── s_atan.c │ │ ├── s_cbrt.c │ │ ├── s_ceil.c │ │ ├── s_copysign.c │ │ ├── s_cos.c │ │ ├── s_erf.c │ │ ├── s_expm1.c │ │ ├── s_fabs.c │ │ ├── s_finite.c │ │ ├── s_floor.c │ │ ├── s_frexp.c │ │ ├── s_ilogb.c │ │ ├── s_isnan.c │ │ ├── s_ldexp.c │ │ ├── s_lib_version.c │ │ ├── s_log1p.c │ │ ├── s_logb.c │ │ ├── s_matherr.c │ │ ├── s_modf.c │ │ ├── s_nextafter.c │ │ ├── s_rint.c │ │ ├── s_scalbn.c │ │ ├── s_signgam.c │ │ ├── s_significand.c │ │ ├── s_sin.c │ │ ├── s_tan.c │ │ ├── s_tanh.c │ │ ├── w_acos.c │ │ ├── w_acosh.c │ │ ├── w_asin.c │ │ ├── w_atan2.c │ │ ├── w_atanh.c │ │ ├── w_cosh.c │ │ ├── w_exp.c │ │ ├── w_fmod.c │ │ ├── w_gamma.c │ │ ├── w_gamma_r.c │ │ ├── w_hypot.c │ │ ├── w_j0.c │ │ ├── w_j1.c │ │ ├── w_jn.c │ │ ├── w_lgamma.c │ │ ├── w_lgamma_r.c │ │ ├── w_log.c │ │ ├── w_log10.c │ │ ├── w_pow.c │ │ ├── w_remainder.c │ │ ├── w_scalb.c │ │ ├── w_sinh.c │ │ └── w_sqrt.c │ ├── include │ │ ├── al_file.h │ │ ├── al_smp.h │ │ ├── fp_shape.h │ │ ├── th_al.h │ │ ├── th_cfg.h │ │ └── th_types.h │ ├── prism │ │ └── stubs.c │ ├── soft │ │ ├── 386-GCC.h │ │ ├── milieu.h │ │ ├── softfloat-for-gcc.c │ │ ├── softfloat-for-gcc.h │ │ ├── softfloat-macros │ │ ├── softfloat-specialize │ │ ├── softfloat.c │ │ └── softfloat.h │ ├── src │ │ ├── al_file.c │ │ ├── al_single.c │ │ ├── al_smp.c │ │ └── th_al.c │ ├── stub │ │ ├── pthread.h │ │ └── pthread_stub.c │ └── win32 │ │ ├── pthread.h │ │ ├── pthreadVC2.dll │ │ ├── pthreadVC2.lib │ │ ├── pthreadVSE2.dll │ │ ├── pthreadVSE2.lib │ │ ├── sched.h │ │ └── semaphore.h ├── include │ ├── md5.h │ ├── mith_sync.h │ ├── mith_workload.h │ ├── th_encode.h │ ├── th_file.h │ ├── th_getopt.h │ ├── th_lib.h │ ├── th_math.h │ ├── th_rand.h │ └── th_version.h ├── projects │ ├── vs8 │ │ └── mith │ │ │ ├── mith.sln │ │ │ └── mith.vcproj │ └── vs9 │ │ └── mith │ │ ├── mith.vcproj │ │ └── mith.vcxproj └── src │ ├── md5.c │ ├── mith_lib.c │ ├── mith_workload.c │ ├── th_bignum.c │ ├── th_encode.c │ ├── th_getopt.c │ ├── th_lib.c │ ├── th_math.c │ └── th_rand.c ├── util ├── make │ ├── armcs.mak │ ├── common.mak │ ├── fakeio.mak │ ├── fdlibm.mak │ ├── fdlibm64.mak │ ├── gcc-cross-linux.mak │ ├── gcc.mak │ ├── gcc32-x86.mak │ ├── gcc64.mak │ ├── icc.mak │ ├── linux.mak │ ├── linux32-x86.mak │ ├── linux64.mak │ ├── run_target.ttl │ └── suite.mak ├── misc │ ├── armcs.mak │ ├── nfs-cross │ │ ├── client.pl │ │ ├── linux.mak │ │ ├── readme.txt │ │ └── run_MITHserver.c │ └── prism.mak ├── perl │ ├── cert_mark.pl │ ├── cert_mark_old.pl │ ├── cert_median.pl │ ├── copy_dataset.pl │ ├── extract_dynamic_size.pl │ ├── generate_summary.pl │ ├── headings.txt │ ├── itemex.pl │ ├── my_defs.transform │ ├── plot_by_ctxt.pl │ ├── reorder.pl │ ├── results_parser.pl │ ├── template-wld.vcproj │ ├── template-wld9.vcproj │ ├── template.vcproj │ ├── template9.sln │ ├── template9.vcproj │ ├── template9.vcproj.ETQ.shay.user │ ├── th_transform.pl │ ├── tochain.pl │ ├── vc9proj.pl │ └── vcproj.pl └── shell │ ├── dorun.sh │ └── run_mini1_scan.sh └── workloads ├── cjpeg-rose7-preset ├── Makefile ├── cjpeg-rose7-preset.c └── cjpeg-rose7-preset.opt ├── core ├── Makefile ├── core.c └── core.opt ├── linear_alg-mid-100x100-sp ├── Makefile ├── jni │ └── linear_alg-mid-100x100-sp.c ├── linear_alg-mid-100x100-sp.c └── linear_alg-mid-100x100-sp.opt ├── loops-all-mid-10k-sp ├── Makefile ├── jni │ └── loops-all-mid-10k-sp.c ├── loops-all-mid-10k-sp.c └── loops-all-mid-10k-sp.opt ├── nnet_test ├── Makefile ├── jni │ └── nnet_test.c ├── nnet_test.c └── nnet_test.opt ├── parser-125k ├── Makefile ├── parser-125k.c ├── parser-125k.opt ├── parser-500k.c └── parser-500k.opt ├── radix2-big-64k ├── Makefile ├── jni │ └── radix2-big-64k.c ├── radix2-big-64k.c └── radix2-big-64k.opt ├── sets ├── workload-defs.ande ├── workload-defs.autobench ├── workload-defs.coremarkpro ├── workload-defs.darkmark ├── workload-defs.dp1 ├── workload-defs.multibench ├── workload-defs.multibench_ex ├── workload-defs.rc1 ├── workload-defs.sp1 ├── workload-defs.sync1 └── workload-joins.fpmark ├── sha-test ├── Makefile ├── jni │ └── sha-test.c ├── sha-test.c └── sha-test.opt └── zip-test ├── Makefile ├── jni └── zip-test.c ├── zip-test.c └── zip-test.opt /.gitignore: -------------------------------------------------------------------------------- 1 | builds/ 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/Makefile.mak -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/Makefile -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/algo.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/alloc.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/bm_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/bm_lib.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/bm_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/bm_lib.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/bmark_lite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/bmark_lite.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/cderror.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/cdjpeg.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/cdjpeg.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/cjpeg.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/DavidAndDogs_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/DavidAndDogs_bmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/DavidAndDogs_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/DavidAndDogs_bmp.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/DragonFly_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/DragonFly_bmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/DragonFly_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/DragonFly_bmp.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/EEMBCGroupShotMiami_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/EEMBCGroupShotMiami_bmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/EEMBCGroupShotMiami_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/EEMBCGroupShotMiami_bmp.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/Galileo_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/Galileo_bmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/Galileo_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/Galileo_bmp.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/Mandrake_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/Mandrake_bmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/Mandrake_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/Mandrake_bmp.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/MarsFormerLakes_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/MarsFormerLakes_bmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/MarsFormerLakes_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/MarsFormerLakes_bmp.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/Rose256_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/Rose256_bmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/Rose256_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/Rose256_bmp.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/door_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/door_bmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/door_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/door_bmp.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/eye_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/eye_bmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/eye_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/eye_bmp.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/goose_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/goose_bmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/goose_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/goose_bmp.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/hall_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/hall_bmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/hall_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/hall_bmp.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/regen.sh -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/window_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/window_bmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/data/window_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/data/window_bmp.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/datasheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/datasheet.txt -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/filedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/filedata.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jcapimin.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jcapistd.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jccoefct.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jccolor.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jcdctmgr.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jchuff.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jchuff.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jcinit.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jcmainct.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jcmarker.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jcmaster.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jcomapi.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jconfig.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jcparam.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jcprepct.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jcsample.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jdatadst.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jdct.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jerror.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jerror.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jfdctint.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jinclude.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jmemansi.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jmemmgr.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jmemsys.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jmorecfg.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jpegint.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jpeglib.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jutils.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/jversion.h -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/preset.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/preset.mak -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/rdbmp.c -------------------------------------------------------------------------------- /benchmarks/consumer_v2/cjpeg/validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/consumer_v2/cjpeg/validate.h -------------------------------------------------------------------------------- /benchmarks/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/core/Makefile -------------------------------------------------------------------------------- /benchmarks/core/core_list_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/core/core_list_join.c -------------------------------------------------------------------------------- /benchmarks/core/core_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/core/core_matrix.c -------------------------------------------------------------------------------- /benchmarks/core/core_mith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/core/core_mith.c -------------------------------------------------------------------------------- /benchmarks/core/core_mith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/core/core_mith.h -------------------------------------------------------------------------------- /benchmarks/core/core_portme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/core/core_portme.c -------------------------------------------------------------------------------- /benchmarks/core/core_portme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/core/core_portme.h -------------------------------------------------------------------------------- /benchmarks/core/core_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/core/core_state.c -------------------------------------------------------------------------------- /benchmarks/core/core_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/core/core_util.c -------------------------------------------------------------------------------- /benchmarks/core/coremark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/core/coremark.h -------------------------------------------------------------------------------- /benchmarks/core/datasheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/core/datasheet.txt -------------------------------------------------------------------------------- /benchmarks/darkmark/parser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/parser/Makefile -------------------------------------------------------------------------------- /benchmarks/darkmark/parser/datasheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/parser/datasheet.txt -------------------------------------------------------------------------------- /benchmarks/darkmark/parser/ezxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/parser/ezxml.c -------------------------------------------------------------------------------- /benchmarks/darkmark/parser/ezxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/parser/ezxml.h -------------------------------------------------------------------------------- /benchmarks/darkmark/parser/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/parser/parser.c -------------------------------------------------------------------------------- /benchmarks/darkmark/sha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/sha/Makefile -------------------------------------------------------------------------------- /benchmarks/darkmark/sha/datasheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/sha/datasheet.txt -------------------------------------------------------------------------------- /benchmarks/darkmark/sha/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/sha/sha256.c -------------------------------------------------------------------------------- /benchmarks/darkmark/sha/shabench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/sha/shabench.c -------------------------------------------------------------------------------- /benchmarks/darkmark/sha/shabench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/sha/shabench.h -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/Makefile -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/datasheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/datasheet.txt -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zip_darkmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zip_darkmark.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/CMakeLists.txt -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/ChangeLog -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/FAQ -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/INDEX -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/Makefile -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/Makefile.in -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/README -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/adler32.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/compress.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/configure -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/configure.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/configure.log -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/crc32.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/crc32.h -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/deflate.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/deflate.h -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/doc/algorithm.txt -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/doc/rfc1950.txt -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/doc/rfc1951.txt -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/doc/rfc1952.txt -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/doc/txtvsbin.txt -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/example.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/example.exe -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/examples/README.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/examples/README.examples -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/examples/enough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/examples/enough.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/examples/fitblk.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/examples/gun.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/examples/gzappend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/examples/gzappend.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/examples/gzjoin.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/examples/gzlog.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/examples/gzlog.h -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/examples/zlib_how.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/examples/zlib_how.html -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/examples/zpipe.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/examples/zran.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/gzclose.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/gzguts.h -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/gzlib.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/gzread.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/gzwrite.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/infback.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/inffast.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/inffast.h -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/inffixed.h -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/inflate.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/inflate.h -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/inftrees.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/inftrees.h -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/make_vms.com -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/test/example.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/test/infcover.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/test/minigzip.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/treebuild.xml -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/trees.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/trees.h -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/uncompr.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/zconf.h -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/zconf.h.cmakein -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/zconf.h.in -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/zlib.3 -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/zlib.3.pdf -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/zlib.h -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/zlib.map -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/zlib.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/zlib.pc -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/zlib.pc.cmakein -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/zlib.pc.in -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/zutil.c -------------------------------------------------------------------------------- /benchmarks/darkmark/zip/zlib-1.2.8/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/darkmark/zip/zlib-1.2.8/zutil.h -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/Makefile -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/SP/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/datasheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/datasheet.txt -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/fft_radix2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/fft_radix2.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/fft_radix2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/fft_radix2.h -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/preset.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/preset.mak -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref-sp/2K.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref-sp/2K.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref-sp/32K.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref-sp/32K.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref-sp/4K.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref-sp/4K.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref-sp/data3_big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref-sp/data3_big.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref-sp/data4_mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref-sp/data4_mid.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref-sp/data5_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref-sp/data5_small.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref-sp/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref-sp/regen.sh -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref/2K.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref/2K.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref/32K.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref/32K.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref/4K.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref/4K.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref/data3_big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref/data3_big.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref/data4_mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref/data4_mid.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref/data5_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref/data5_small.c -------------------------------------------------------------------------------- /benchmarks/fp/fft_radix2/ref/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/fft_radix2/ref/regen.sh -------------------------------------------------------------------------------- /benchmarks/fp/linpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/linpack/Makefile -------------------------------------------------------------------------------- /benchmarks/fp/linpack/SP/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/fp/linpack/datasheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/linpack/datasheet.txt -------------------------------------------------------------------------------- /benchmarks/fp/linpack/linpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/linpack/linpack.c -------------------------------------------------------------------------------- /benchmarks/fp/linpack/linpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/linpack/linpack.h -------------------------------------------------------------------------------- /benchmarks/fp/linpack/ref/data_big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/linpack/ref/data_big.c -------------------------------------------------------------------------------- /benchmarks/fp/linpack/ref/data_mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/linpack/ref/data_mid.c -------------------------------------------------------------------------------- /benchmarks/fp/linpack/ref/data_sml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/linpack/ref/data_sml.c -------------------------------------------------------------------------------- /benchmarks/fp/linpack/ref/inputs_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/linpack/ref/inputs_f32.c -------------------------------------------------------------------------------- /benchmarks/fp/linpack/ref/inputs_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/linpack/ref/inputs_f64.c -------------------------------------------------------------------------------- /benchmarks/fp/linpack/ref/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/linpack/ref/regen.sh -------------------------------------------------------------------------------- /benchmarks/fp/linpack/ref/single_to_multiple.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/linpack/ref/single_to_multiple.pl -------------------------------------------------------------------------------- /benchmarks/fp/loops/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/Makefile -------------------------------------------------------------------------------- /benchmarks/fp/loops/SP/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/fp/loops/datasheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/datasheet.txt -------------------------------------------------------------------------------- /benchmarks/fp/loops/loops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/loops.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/loops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/loops.h -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref-sp/100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref-sp/100.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref-sp/100k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref-sp/100k.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref-sp/100kdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref-sp/100kdot.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref-sp/10k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref-sp/10k.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref-sp/10kdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref-sp/10kdot.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref-sp/1k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref-sp/1k.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref-sp/1kdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref-sp/1kdot.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref-sp/32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref-sp/32.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref-sp/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref-sp/regen.sh -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref/100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref/100.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref/100k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref/100k.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref/100kdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref/100kdot.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref/10k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref/10k.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref/10kdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref/10kdot.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref/1k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref/1k.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref/1kdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref/1kdot.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref/32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref/32.c -------------------------------------------------------------------------------- /benchmarks/fp/loops/ref/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/loops/ref/regen.sh -------------------------------------------------------------------------------- /benchmarks/fp/nnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/nnet/Makefile -------------------------------------------------------------------------------- /benchmarks/fp/nnet/SP/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/fp/nnet/datasheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/nnet/datasheet.txt -------------------------------------------------------------------------------- /benchmarks/fp/nnet/nnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/nnet/nnet.c -------------------------------------------------------------------------------- /benchmarks/fp/nnet/nnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/nnet/nnet.h -------------------------------------------------------------------------------- /benchmarks/fp/nnet/ref-sp/1letter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/nnet/ref-sp/1letter.c -------------------------------------------------------------------------------- /benchmarks/fp/nnet/ref-sp/letters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/nnet/ref-sp/letters.c -------------------------------------------------------------------------------- /benchmarks/fp/nnet/ref/1letter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/nnet/ref/1letter.c -------------------------------------------------------------------------------- /benchmarks/fp/nnet/ref/letters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/nnet/ref/letters.c -------------------------------------------------------------------------------- /benchmarks/fp/preset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/preset/Makefile -------------------------------------------------------------------------------- /benchmarks/fp/preset/SP/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/fp/preset/fake_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/preset/fake_0.c -------------------------------------------------------------------------------- /benchmarks/fp/preset/fake_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/preset/fake_1.c -------------------------------------------------------------------------------- /benchmarks/fp/preset/fake_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/preset/fake_2.c -------------------------------------------------------------------------------- /benchmarks/fp/preset/fake_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/preset/fake_3.c -------------------------------------------------------------------------------- /benchmarks/fp/preset/fake_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/preset/fake_4.c -------------------------------------------------------------------------------- /benchmarks/fp/preset/fake_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/preset/fake_5.c -------------------------------------------------------------------------------- /benchmarks/fp/preset/fake_6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/fp/preset/fake_6.c -------------------------------------------------------------------------------- /benchmarks/libbmp/Rose256.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/libbmp/Rose256.bmp -------------------------------------------------------------------------------- /benchmarks/libjpeg/Rose256.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/benchmarks/libjpeg/Rose256.jpg -------------------------------------------------------------------------------- /coremarkpro.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/coremarkpro.md5 -------------------------------------------------------------------------------- /docs/Application Note CMP01-Porting CoreMark-PRO to Bare-Metal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/docs/Application Note CMP01-Porting CoreMark-PRO to Bare-Metal.pdf -------------------------------------------------------------------------------- /docs/EEMBC Symmetric Multicore Benchmark User Guide 2.1.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/docs/EEMBC Symmetric Multicore Benchmark User Guide 2.1.4.pdf -------------------------------------------------------------------------------- /mith/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/Makefile -------------------------------------------------------------------------------- /mith/al/fdlibm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/Makefile.in -------------------------------------------------------------------------------- /mith/al/fdlibm/Makefile.in.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/Makefile.in.original -------------------------------------------------------------------------------- /mith/al/fdlibm/Makefile.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/Makefile.original -------------------------------------------------------------------------------- /mith/al/fdlibm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/README -------------------------------------------------------------------------------- /mith/al/fdlibm/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/configure -------------------------------------------------------------------------------- /mith/al/fdlibm/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/configure.in -------------------------------------------------------------------------------- /mith/al/fdlibm/e_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_acos.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_acosh.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_asin.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_atan2.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_atanh.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_cosh.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_exp.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_fmod.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_gamma.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_gamma_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_gamma_r.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_hypot.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_j0.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_j1.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_jn.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_lgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_lgamma.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_lgamma_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_lgamma_r.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_log.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_log10.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_pow.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_rem_pio2.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_remainder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_remainder.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_scalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_scalb.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_sinh.c -------------------------------------------------------------------------------- /mith/al/fdlibm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/e_sqrt.c -------------------------------------------------------------------------------- /mith/al/fdlibm/fdlibm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/fdlibm.h -------------------------------------------------------------------------------- /mith/al/fdlibm/fdlibm.h.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/fdlibm.h.original -------------------------------------------------------------------------------- /mith/al/fdlibm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/k_cos.c -------------------------------------------------------------------------------- /mith/al/fdlibm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/k_rem_pio2.c -------------------------------------------------------------------------------- /mith/al/fdlibm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/k_sin.c -------------------------------------------------------------------------------- /mith/al/fdlibm/k_standard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/k_standard.c -------------------------------------------------------------------------------- /mith/al/fdlibm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/k_tan.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_asinh.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_atan.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_cbrt.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_ceil.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_copysign.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_cos.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_erf.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_expm1.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_fabs.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_finite.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_floor.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_frexp.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_ilogb.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_isnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_isnan.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_ldexp.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_lib_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_lib_version.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_log1p.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_logb.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_matherr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_matherr.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_modf.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_nextafter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_nextafter.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_rint.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_scalbn.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_signgam.c: -------------------------------------------------------------------------------- 1 | #include "fdlibm.h" 2 | int signgam = 0; 3 | -------------------------------------------------------------------------------- /mith/al/fdlibm/s_significand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_significand.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_sin.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_tan.c -------------------------------------------------------------------------------- /mith/al/fdlibm/s_tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/s_tanh.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_acos.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_acosh.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_asin.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_atan2.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_atanh.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_cosh.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_exp.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_fmod.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_gamma.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_gamma_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_gamma_r.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_hypot.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_j0.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_j1.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_jn.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_lgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_lgamma.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_lgamma_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_lgamma_r.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_log.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_log10.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_pow.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_remainder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_remainder.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_scalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_scalb.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_sinh.c -------------------------------------------------------------------------------- /mith/al/fdlibm/w_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/fdlibm/w_sqrt.c -------------------------------------------------------------------------------- /mith/al/include/al_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/include/al_file.h -------------------------------------------------------------------------------- /mith/al/include/al_smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/include/al_smp.h -------------------------------------------------------------------------------- /mith/al/include/fp_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/include/fp_shape.h -------------------------------------------------------------------------------- /mith/al/include/th_al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/include/th_al.h -------------------------------------------------------------------------------- /mith/al/include/th_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/include/th_cfg.h -------------------------------------------------------------------------------- /mith/al/include/th_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/include/th_types.h -------------------------------------------------------------------------------- /mith/al/prism/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/prism/stubs.c -------------------------------------------------------------------------------- /mith/al/soft/386-GCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/soft/386-GCC.h -------------------------------------------------------------------------------- /mith/al/soft/milieu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/soft/milieu.h -------------------------------------------------------------------------------- /mith/al/soft/softfloat-for-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/soft/softfloat-for-gcc.c -------------------------------------------------------------------------------- /mith/al/soft/softfloat-for-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/soft/softfloat-for-gcc.h -------------------------------------------------------------------------------- /mith/al/soft/softfloat-macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/soft/softfloat-macros -------------------------------------------------------------------------------- /mith/al/soft/softfloat-specialize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/soft/softfloat-specialize -------------------------------------------------------------------------------- /mith/al/soft/softfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/soft/softfloat.c -------------------------------------------------------------------------------- /mith/al/soft/softfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/soft/softfloat.h -------------------------------------------------------------------------------- /mith/al/src/al_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/src/al_file.c -------------------------------------------------------------------------------- /mith/al/src/al_single.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/src/al_single.c -------------------------------------------------------------------------------- /mith/al/src/al_smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/src/al_smp.c -------------------------------------------------------------------------------- /mith/al/src/th_al.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/src/th_al.c -------------------------------------------------------------------------------- /mith/al/stub/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/stub/pthread.h -------------------------------------------------------------------------------- /mith/al/stub/pthread_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/stub/pthread_stub.c -------------------------------------------------------------------------------- /mith/al/win32/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/win32/pthread.h -------------------------------------------------------------------------------- /mith/al/win32/pthreadVC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/win32/pthreadVC2.dll -------------------------------------------------------------------------------- /mith/al/win32/pthreadVC2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/win32/pthreadVC2.lib -------------------------------------------------------------------------------- /mith/al/win32/pthreadVSE2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/win32/pthreadVSE2.dll -------------------------------------------------------------------------------- /mith/al/win32/pthreadVSE2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/win32/pthreadVSE2.lib -------------------------------------------------------------------------------- /mith/al/win32/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/win32/sched.h -------------------------------------------------------------------------------- /mith/al/win32/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/al/win32/semaphore.h -------------------------------------------------------------------------------- /mith/include/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/include/md5.h -------------------------------------------------------------------------------- /mith/include/mith_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/include/mith_sync.h -------------------------------------------------------------------------------- /mith/include/mith_workload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/include/mith_workload.h -------------------------------------------------------------------------------- /mith/include/th_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/include/th_encode.h -------------------------------------------------------------------------------- /mith/include/th_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/include/th_file.h -------------------------------------------------------------------------------- /mith/include/th_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/include/th_getopt.h -------------------------------------------------------------------------------- /mith/include/th_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/include/th_lib.h -------------------------------------------------------------------------------- /mith/include/th_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/include/th_math.h -------------------------------------------------------------------------------- /mith/include/th_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/include/th_rand.h -------------------------------------------------------------------------------- /mith/include/th_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/include/th_version.h -------------------------------------------------------------------------------- /mith/projects/vs8/mith/mith.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/projects/vs8/mith/mith.sln -------------------------------------------------------------------------------- /mith/projects/vs8/mith/mith.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/projects/vs8/mith/mith.vcproj -------------------------------------------------------------------------------- /mith/projects/vs9/mith/mith.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/projects/vs9/mith/mith.vcproj -------------------------------------------------------------------------------- /mith/projects/vs9/mith/mith.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/projects/vs9/mith/mith.vcxproj -------------------------------------------------------------------------------- /mith/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/src/md5.c -------------------------------------------------------------------------------- /mith/src/mith_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/src/mith_lib.c -------------------------------------------------------------------------------- /mith/src/mith_workload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/src/mith_workload.c -------------------------------------------------------------------------------- /mith/src/th_bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/src/th_bignum.c -------------------------------------------------------------------------------- /mith/src/th_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/src/th_encode.c -------------------------------------------------------------------------------- /mith/src/th_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/src/th_getopt.c -------------------------------------------------------------------------------- /mith/src/th_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/src/th_lib.c -------------------------------------------------------------------------------- /mith/src/th_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/src/th_math.c -------------------------------------------------------------------------------- /mith/src/th_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/mith/src/th_rand.c -------------------------------------------------------------------------------- /util/make/armcs.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/armcs.mak -------------------------------------------------------------------------------- /util/make/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/common.mak -------------------------------------------------------------------------------- /util/make/fakeio.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/fakeio.mak -------------------------------------------------------------------------------- /util/make/fdlibm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/fdlibm.mak -------------------------------------------------------------------------------- /util/make/fdlibm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/fdlibm64.mak -------------------------------------------------------------------------------- /util/make/gcc-cross-linux.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/gcc-cross-linux.mak -------------------------------------------------------------------------------- /util/make/gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/gcc.mak -------------------------------------------------------------------------------- /util/make/gcc32-x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/gcc32-x86.mak -------------------------------------------------------------------------------- /util/make/gcc64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/gcc64.mak -------------------------------------------------------------------------------- /util/make/icc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/icc.mak -------------------------------------------------------------------------------- /util/make/linux.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/linux.mak -------------------------------------------------------------------------------- /util/make/linux32-x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/linux32-x86.mak -------------------------------------------------------------------------------- /util/make/linux64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/linux64.mak -------------------------------------------------------------------------------- /util/make/run_target.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/make/run_target.ttl -------------------------------------------------------------------------------- /util/make/suite.mak: -------------------------------------------------------------------------------- 1 | MULTIBENCH_SUITE=coremarkpro 2 | -------------------------------------------------------------------------------- /util/misc/armcs.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/misc/armcs.mak -------------------------------------------------------------------------------- /util/misc/nfs-cross/client.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/misc/nfs-cross/client.pl -------------------------------------------------------------------------------- /util/misc/nfs-cross/linux.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/misc/nfs-cross/linux.mak -------------------------------------------------------------------------------- /util/misc/nfs-cross/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/misc/nfs-cross/readme.txt -------------------------------------------------------------------------------- /util/misc/nfs-cross/run_MITHserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/misc/nfs-cross/run_MITHserver.c -------------------------------------------------------------------------------- /util/misc/prism.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/misc/prism.mak -------------------------------------------------------------------------------- /util/perl/cert_mark.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/cert_mark.pl -------------------------------------------------------------------------------- /util/perl/cert_mark_old.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/cert_mark_old.pl -------------------------------------------------------------------------------- /util/perl/cert_median.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/cert_median.pl -------------------------------------------------------------------------------- /util/perl/copy_dataset.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/copy_dataset.pl -------------------------------------------------------------------------------- /util/perl/extract_dynamic_size.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/extract_dynamic_size.pl -------------------------------------------------------------------------------- /util/perl/generate_summary.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/generate_summary.pl -------------------------------------------------------------------------------- /util/perl/headings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/headings.txt -------------------------------------------------------------------------------- /util/perl/itemex.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/itemex.pl -------------------------------------------------------------------------------- /util/perl/my_defs.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/my_defs.transform -------------------------------------------------------------------------------- /util/perl/plot_by_ctxt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/plot_by_ctxt.pl -------------------------------------------------------------------------------- /util/perl/reorder.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/reorder.pl -------------------------------------------------------------------------------- /util/perl/results_parser.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/results_parser.pl -------------------------------------------------------------------------------- /util/perl/template-wld.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/template-wld.vcproj -------------------------------------------------------------------------------- /util/perl/template-wld9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/template-wld9.vcproj -------------------------------------------------------------------------------- /util/perl/template.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/template.vcproj -------------------------------------------------------------------------------- /util/perl/template9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/template9.sln -------------------------------------------------------------------------------- /util/perl/template9.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/template9.vcproj -------------------------------------------------------------------------------- /util/perl/template9.vcproj.ETQ.shay.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/template9.vcproj.ETQ.shay.user -------------------------------------------------------------------------------- /util/perl/th_transform.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/th_transform.pl -------------------------------------------------------------------------------- /util/perl/tochain.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/tochain.pl -------------------------------------------------------------------------------- /util/perl/vc9proj.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/vc9proj.pl -------------------------------------------------------------------------------- /util/perl/vcproj.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/perl/vcproj.pl -------------------------------------------------------------------------------- /util/shell/dorun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/shell/dorun.sh -------------------------------------------------------------------------------- /util/shell/run_mini1_scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/util/shell/run_mini1_scan.sh -------------------------------------------------------------------------------- /workloads/cjpeg-rose7-preset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/cjpeg-rose7-preset/Makefile -------------------------------------------------------------------------------- /workloads/cjpeg-rose7-preset/cjpeg-rose7-preset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/cjpeg-rose7-preset/cjpeg-rose7-preset.c -------------------------------------------------------------------------------- /workloads/cjpeg-rose7-preset/cjpeg-rose7-preset.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/cjpeg-rose7-preset/cjpeg-rose7-preset.opt -------------------------------------------------------------------------------- /workloads/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/core/Makefile -------------------------------------------------------------------------------- /workloads/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/core/core.c -------------------------------------------------------------------------------- /workloads/core/core.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/core/core.opt -------------------------------------------------------------------------------- /workloads/linear_alg-mid-100x100-sp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/linear_alg-mid-100x100-sp/Makefile -------------------------------------------------------------------------------- /workloads/linear_alg-mid-100x100-sp/jni/linear_alg-mid-100x100-sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/linear_alg-mid-100x100-sp/jni/linear_alg-mid-100x100-sp.c -------------------------------------------------------------------------------- /workloads/linear_alg-mid-100x100-sp/linear_alg-mid-100x100-sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/linear_alg-mid-100x100-sp/linear_alg-mid-100x100-sp.c -------------------------------------------------------------------------------- /workloads/linear_alg-mid-100x100-sp/linear_alg-mid-100x100-sp.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/linear_alg-mid-100x100-sp/linear_alg-mid-100x100-sp.opt -------------------------------------------------------------------------------- /workloads/loops-all-mid-10k-sp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/loops-all-mid-10k-sp/Makefile -------------------------------------------------------------------------------- /workloads/loops-all-mid-10k-sp/jni/loops-all-mid-10k-sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/loops-all-mid-10k-sp/jni/loops-all-mid-10k-sp.c -------------------------------------------------------------------------------- /workloads/loops-all-mid-10k-sp/loops-all-mid-10k-sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/loops-all-mid-10k-sp/loops-all-mid-10k-sp.c -------------------------------------------------------------------------------- /workloads/loops-all-mid-10k-sp/loops-all-mid-10k-sp.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/loops-all-mid-10k-sp/loops-all-mid-10k-sp.opt -------------------------------------------------------------------------------- /workloads/nnet_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/nnet_test/Makefile -------------------------------------------------------------------------------- /workloads/nnet_test/jni/nnet_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/nnet_test/jni/nnet_test.c -------------------------------------------------------------------------------- /workloads/nnet_test/nnet_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/nnet_test/nnet_test.c -------------------------------------------------------------------------------- /workloads/nnet_test/nnet_test.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/nnet_test/nnet_test.opt -------------------------------------------------------------------------------- /workloads/parser-125k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/parser-125k/Makefile -------------------------------------------------------------------------------- /workloads/parser-125k/parser-125k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/parser-125k/parser-125k.c -------------------------------------------------------------------------------- /workloads/parser-125k/parser-125k.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/parser-125k/parser-125k.opt -------------------------------------------------------------------------------- /workloads/parser-125k/parser-500k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/parser-125k/parser-500k.c -------------------------------------------------------------------------------- /workloads/parser-125k/parser-500k.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/parser-125k/parser-500k.opt -------------------------------------------------------------------------------- /workloads/radix2-big-64k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/radix2-big-64k/Makefile -------------------------------------------------------------------------------- /workloads/radix2-big-64k/jni/radix2-big-64k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/radix2-big-64k/jni/radix2-big-64k.c -------------------------------------------------------------------------------- /workloads/radix2-big-64k/radix2-big-64k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/radix2-big-64k/radix2-big-64k.c -------------------------------------------------------------------------------- /workloads/radix2-big-64k/radix2-big-64k.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/radix2-big-64k/radix2-big-64k.opt -------------------------------------------------------------------------------- /workloads/sets/workload-defs.ande: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sets/workload-defs.ande -------------------------------------------------------------------------------- /workloads/sets/workload-defs.autobench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sets/workload-defs.autobench -------------------------------------------------------------------------------- /workloads/sets/workload-defs.coremarkpro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sets/workload-defs.coremarkpro -------------------------------------------------------------------------------- /workloads/sets/workload-defs.darkmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sets/workload-defs.darkmark -------------------------------------------------------------------------------- /workloads/sets/workload-defs.dp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sets/workload-defs.dp1 -------------------------------------------------------------------------------- /workloads/sets/workload-defs.multibench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sets/workload-defs.multibench -------------------------------------------------------------------------------- /workloads/sets/workload-defs.multibench_ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sets/workload-defs.multibench_ex -------------------------------------------------------------------------------- /workloads/sets/workload-defs.rc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sets/workload-defs.rc1 -------------------------------------------------------------------------------- /workloads/sets/workload-defs.sp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sets/workload-defs.sp1 -------------------------------------------------------------------------------- /workloads/sets/workload-defs.sync1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sets/workload-defs.sync1 -------------------------------------------------------------------------------- /workloads/sets/workload-joins.fpmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sets/workload-joins.fpmark -------------------------------------------------------------------------------- /workloads/sha-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sha-test/Makefile -------------------------------------------------------------------------------- /workloads/sha-test/jni/sha-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sha-test/jni/sha-test.c -------------------------------------------------------------------------------- /workloads/sha-test/sha-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sha-test/sha-test.c -------------------------------------------------------------------------------- /workloads/sha-test/sha-test.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/sha-test/sha-test.opt -------------------------------------------------------------------------------- /workloads/zip-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/zip-test/Makefile -------------------------------------------------------------------------------- /workloads/zip-test/jni/zip-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/zip-test/jni/zip-test.c -------------------------------------------------------------------------------- /workloads/zip-test/zip-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/zip-test/zip-test.c -------------------------------------------------------------------------------- /workloads/zip-test/zip-test.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eembc/coremark-pro/HEAD/workloads/zip-test/zip-test.opt --------------------------------------------------------------------------------