├── .clang-format ├── .gitignore ├── .mailmap ├── .travis.yml ├── AUTHORS ├── CHANGELOG.md ├── CODING-STYLE.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile.am ├── Makemodule.host.am.in ├── QUESTIONS.md ├── README.md ├── benchmark ├── Makemodule.am ├── bench-all.sh.in ├── bench_tmpl.h ├── benchmark.c ├── benchmark.h ├── example.c ├── image │ ├── Makemodule.am │ ├── all.c │ └── one.c ├── math │ ├── Makemodule.am │ ├── all.c │ ├── one.c │ ├── p_ftoi.c │ ├── p_itof.c │ ├── p_max_f32.c │ ├── p_min_f32.c │ ├── p_popcount_u32.c │ ├── p_popcount_u64.c │ ├── p_rand.c │ └── p_sincos_f32.c ├── runbench.default.c ├── runbench.epiphany.c └── runbench.noimpl.c ├── bootstrap ├── config └── m4 │ ├── .gitkeep │ ├── ax_append_flag.m4 │ ├── ax_append_link_flags.m4 │ ├── ax_check_compile_flag.m4 │ ├── ax_check_link_flag.m4 │ ├── ax_config_dir.m4 │ ├── ax_prog_cc_for_build.m4 │ ├── ax_require_defined.m4 │ └── pal_config_device.m4 ├── configure.ac ├── devices └── epiphany │ └── placeholder.txt ├── doc ├── Doxyfile.in └── Makemodule.am ├── examples ├── Makemodule.am ├── base │ ├── Makemodule.am │ ├── hello_task.c │ ├── median_task.c │ ├── memory_example.c │ ├── mode_task.c │ ├── simple_example.c │ ├── sine_example.c │ ├── sine_task.c │ └── sort_task.c ├── image │ ├── Makemodule.am │ ├── dataset │ │ ├── lena-small.tga │ │ ├── lena.tga │ │ ├── lena_box.tga │ │ ├── lena_gaussian.tga │ │ ├── lena_harris.tga │ │ ├── lena_median.tga │ │ └── lena_sobel.tga │ ├── filters.c │ ├── filters2-dev.c │ ├── filters2-host.c │ ├── harris.c │ ├── stb_image.h │ └── stb_image_write.h └── math │ ├── Makemodule.am │ └── matmul │ ├── Makemodule.am │ ├── README.md │ ├── common-buffers.h │ ├── matlib.c │ ├── matlib.h │ ├── matmul-dev-epiphany.c │ ├── matmul-host.c │ ├── matmul-internal.ldf │ ├── matmul.h │ ├── static-buffers.c │ └── static-buffers.h ├── host └── placeholder.txt ├── include ├── Makemodule.am ├── common.h ├── pal.h ├── pal_base.h ├── pal_dsp.h ├── pal_fft.h ├── pal_image.h └── pal_math.h ├── scripts ├── report-code-size.sh └── report-stack-usage.sh ├── src ├── Makemodule.am ├── base │ ├── Makemodule.am │ ├── _p_map_raw.c │ ├── boilerplate.c │ ├── devices │ │ ├── Makemodule.am │ │ ├── devices.h │ │ ├── epiphany │ │ │ ├── Makemodule.am │ │ │ └── epiphany │ │ │ │ ├── Makemodule.am │ │ │ │ ├── dev_epiphany.h │ │ │ │ └── device.c │ │ └── posix │ │ │ ├── Makemodule.am │ │ │ └── epiphany │ │ │ ├── Makemodule.am │ │ │ ├── ctrl.h │ │ │ ├── dev_epiphany.h │ │ │ ├── device.c │ │ │ ├── epiphany-abi.h │ │ │ ├── epiphany-kernel-abi.h │ │ │ ├── generic.c │ │ │ ├── generic.h │ │ │ ├── loader.c │ │ │ ├── loader.h │ │ │ └── simulator.c │ ├── p_append.c │ ├── p_atomic_add.c │ ├── p_atomic_and.c │ ├── p_atomic_compswap.c │ ├── p_atomic_or.c │ ├── p_atomic_sub.c │ ├── p_atomic_swap.c │ ├── p_atomic_xor.c │ ├── p_barrier.c │ ├── p_broadcast.c │ ├── p_close.c │ ├── p_coords_to_rank.c │ ├── p_fence.c │ ├── p_finalize.c │ ├── p_free.c │ ├── p_gather.c │ ├── p_getaddr.c │ ├── p_getsymbol.c │ ├── p_init.c │ ├── p_kill.c │ ├── p_load.c │ ├── p_malloc.c │ ├── p_map.c │ ├── p_map_member.c │ ├── p_memcpy.c │ ├── p_mutex_init.c │ ├── p_mutex_lock.c │ ├── p_mutex_trylock.c │ ├── p_mutex_unlock.c │ ├── p_open.c │ ├── p_query.c │ ├── p_rank_to_coords.c │ ├── p_read.c │ ├── p_rel_coords_to_rank.c │ ├── p_remove.c │ ├── p_rmalloc.c │ ├── p_run.c │ ├── p_scatter.c │ ├── p_team_rank.c │ ├── p_team_size.c │ ├── p_unmap.c │ ├── p_wait.c │ ├── p_write.c │ └── pal_base_private.h ├── blas │ ├── README.md │ └── asm │ │ └── matmul_4x4.S ├── dsp │ ├── Makemodule.am │ ├── asm │ │ └── epiphany │ │ │ └── p_acorrs_32f.s │ ├── p_acorr.c │ ├── p_conv.c │ ├── p_fir.c │ ├── p_firdec.c │ ├── p_firint.c │ ├── p_firsym.c │ ├── p_iir.c │ └── p_xcorr.c ├── dummy.c ├── fft │ ├── Makemodule.am │ └── p_cfft.c ├── image │ ├── Makemodule.am │ ├── p_box3x3.c │ ├── p_conv2d.c │ ├── p_gauss3x3.c │ ├── p_grayscale.c │ ├── p_harris3x3.c │ ├── p_laplace3x3.c │ ├── p_median3x3.c │ ├── p_prewitt3x3.c │ ├── p_sad16x16.c │ ├── p_sad8x8.c │ ├── p_scharr3x3.c │ └── p_sobel3x3.c ├── math │ ├── Makemodule.am │ ├── asm │ │ └── epiphany │ │ │ ├── epiphany_macros.inc │ │ │ ├── main.c │ │ │ ├── p_add_f32.S │ │ │ └── run.sh │ ├── examples │ │ └── main_p_sin_f32.c │ ├── msun │ │ ├── bsdsrc │ │ │ ├── b_exp.c │ │ │ ├── b_log.c │ │ │ ├── b_tgamma.c │ │ │ └── mathimpl.h │ │ ├── ld128 │ │ │ ├── e_lgammal_r.c │ │ │ ├── e_rem_pio2l.h │ │ │ ├── invtrig.c │ │ │ ├── invtrig.h │ │ │ ├── k_cosl.c │ │ │ ├── k_expl.h │ │ │ ├── k_sinl.c │ │ │ ├── k_tanl.c │ │ │ ├── s_erfl.c │ │ │ ├── s_exp2l.c │ │ │ ├── s_expl.c │ │ │ ├── s_logl.c │ │ │ └── s_nanl.c │ │ └── src │ │ │ ├── catrig.c │ │ │ ├── catrigf.c │ │ │ ├── e_acos.c │ │ │ ├── e_acosf.c │ │ │ ├── e_acosh.c │ │ │ ├── e_acoshf.c │ │ │ ├── e_acoshl.c │ │ │ ├── e_acosl.c │ │ │ ├── e_asin.c │ │ │ ├── e_asinf.c │ │ │ ├── e_asinl.c │ │ │ ├── e_atan2.c │ │ │ ├── e_atan2f.c │ │ │ ├── e_atan2l.c │ │ │ ├── e_atanh.c │ │ │ ├── e_atanhf.c │ │ │ ├── e_atanhl.c │ │ │ ├── e_cosh.c │ │ │ ├── e_coshf.c │ │ │ ├── e_coshl.c │ │ │ ├── e_exp.c │ │ │ ├── e_expf.c │ │ │ ├── e_fmod.c │ │ │ ├── e_fmodf.c │ │ │ ├── e_fmodl.c │ │ │ ├── e_gamma.c │ │ │ ├── e_gamma_r.c │ │ │ ├── e_gammaf.c │ │ │ ├── e_gammaf_r.c │ │ │ ├── e_hypot.c │ │ │ ├── e_hypotf.c │ │ │ ├── e_hypotl.c │ │ │ ├── e_j0.c │ │ │ ├── e_j0f.c │ │ │ ├── e_j1.c │ │ │ ├── e_j1f.c │ │ │ ├── e_jn.c │ │ │ ├── e_jnf.c │ │ │ ├── e_lgamma.c │ │ │ ├── e_lgamma_r.c │ │ │ ├── e_lgammaf.c │ │ │ ├── e_lgammaf_r.c │ │ │ ├── e_lgammal.c │ │ │ ├── e_log.c │ │ │ ├── e_log10.c │ │ │ ├── e_log10f.c │ │ │ ├── e_log2.c │ │ │ ├── e_log2f.c │ │ │ ├── e_logf.c │ │ │ ├── e_pow.c │ │ │ ├── e_powf.c │ │ │ ├── e_rem_pio2.c │ │ │ ├── e_rem_pio2f.c │ │ │ ├── e_remainder.c │ │ │ ├── e_remainderf.c │ │ │ ├── e_remainderl.c │ │ │ ├── e_scalb.c │ │ │ ├── e_scalbf.c │ │ │ ├── e_sinh.c │ │ │ ├── e_sinhf.c │ │ │ ├── e_sinhl.c │ │ │ ├── e_sqrt.c │ │ │ ├── e_sqrtf.c │ │ │ ├── e_sqrtl.c │ │ │ ├── imprecise.c │ │ │ ├── k_cos.c │ │ │ ├── k_cosf.c │ │ │ ├── k_exp.c │ │ │ ├── k_expf.c │ │ │ ├── k_log.h │ │ │ ├── k_logf.h │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_sin.c │ │ │ ├── k_sinf.c │ │ │ ├── k_tan.c │ │ │ ├── k_tanf.c │ │ │ ├── math_private.h │ │ │ ├── s_asinh.c │ │ │ ├── s_asinhf.c │ │ │ ├── s_asinhl.c │ │ │ ├── s_atan.c │ │ │ ├── s_atanf.c │ │ │ ├── s_atanl.c │ │ │ ├── s_carg.c │ │ │ ├── s_cargf.c │ │ │ ├── s_cargl.c │ │ │ ├── s_cbrt.c │ │ │ ├── s_cbrtf.c │ │ │ ├── s_cbrtl.c │ │ │ ├── s_ccosh.c │ │ │ ├── s_ccoshf.c │ │ │ ├── s_ceil.c │ │ │ ├── s_ceilf.c │ │ │ ├── s_ceill.c │ │ │ ├── s_cexp.c │ │ │ ├── s_cexpf.c │ │ │ ├── s_cimag.c │ │ │ ├── s_cimagf.c │ │ │ ├── s_cimagl.c │ │ │ ├── s_conj.c │ │ │ ├── s_conjf.c │ │ │ ├── s_conjl.c │ │ │ ├── s_copysign.c │ │ │ ├── s_copysignf.c │ │ │ ├── s_copysignl.c │ │ │ ├── s_cos.c │ │ │ ├── s_cosf.c │ │ │ ├── s_cosl.c │ │ │ ├── s_cproj.c │ │ │ ├── s_cprojf.c │ │ │ ├── s_cprojl.c │ │ │ ├── s_creal.c │ │ │ ├── s_crealf.c │ │ │ ├── s_creall.c │ │ │ ├── s_csinh.c │ │ │ ├── s_csinhf.c │ │ │ ├── s_csqrt.c │ │ │ ├── s_csqrtf.c │ │ │ ├── s_csqrtl.c │ │ │ ├── s_ctanh.c │ │ │ ├── s_ctanhf.c │ │ │ ├── s_erf.c │ │ │ ├── s_erff.c │ │ │ ├── s_exp2.c │ │ │ ├── s_exp2f.c │ │ │ ├── s_expm1.c │ │ │ ├── s_expm1f.c │ │ │ ├── s_fabs.c │ │ │ ├── s_fabsf.c │ │ │ ├── s_fabsl.c │ │ │ ├── s_fdim.c │ │ │ ├── s_finite.c │ │ │ ├── s_finitef.c │ │ │ ├── s_floor.c │ │ │ ├── s_floorf.c │ │ │ ├── s_floorl.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmaf.c │ │ │ ├── s_fmal.c │ │ │ ├── s_fmax.c │ │ │ ├── s_fmaxf.c │ │ │ ├── s_fmaxl.c │ │ │ ├── s_fmin.c │ │ │ ├── s_fminf.c │ │ │ ├── s_fminl.c │ │ │ ├── s_frexp.c │ │ │ ├── s_frexpf.c │ │ │ ├── s_frexpl.c │ │ │ ├── s_ilogb.c │ │ │ ├── s_ilogbf.c │ │ │ ├── s_ilogbl.c │ │ │ ├── s_llrint.c │ │ │ ├── s_llrintf.c │ │ │ ├── s_llrintl.c │ │ │ ├── s_llround.c │ │ │ ├── s_llroundf.c │ │ │ ├── s_llroundl.c │ │ │ ├── s_log1p.c │ │ │ ├── s_log1pf.c │ │ │ ├── s_logb.c │ │ │ ├── s_logbf.c │ │ │ ├── s_logbl.c │ │ │ ├── s_lrint.c │ │ │ ├── s_lrintf.c │ │ │ ├── s_lrintl.c │ │ │ ├── s_lround.c │ │ │ ├── s_lroundf.c │ │ │ ├── s_lroundl.c │ │ │ ├── s_modf.c │ │ │ ├── s_modff.c │ │ │ ├── s_modfl.c │ │ │ ├── s_nan.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_nextafter.c │ │ │ ├── s_nextafterf.c │ │ │ ├── s_nextafterl.c │ │ │ ├── s_nexttoward.c │ │ │ ├── s_nexttowardf.c │ │ │ ├── s_remquo.c │ │ │ ├── s_remquof.c │ │ │ ├── s_remquol.c │ │ │ ├── s_rint.c │ │ │ ├── s_rintf.c │ │ │ ├── s_rintl.c │ │ │ ├── s_round.c │ │ │ ├── s_roundf.c │ │ │ ├── s_roundl.c │ │ │ ├── s_scalbln.c │ │ │ ├── s_scalbn.c │ │ │ ├── s_scalbnf.c │ │ │ ├── s_scalbnl.c │ │ │ ├── s_signgam.c │ │ │ ├── s_significand.c │ │ │ ├── s_significandf.c │ │ │ ├── s_sin.c │ │ │ ├── s_sinf.c │ │ │ ├── s_sinl.c │ │ │ ├── s_tan.c │ │ │ ├── s_tanf.c │ │ │ ├── s_tanh.c │ │ │ ├── s_tanhf.c │ │ │ ├── s_tanhl.c │ │ │ ├── s_tanl.c │ │ │ ├── s_tgammaf.c │ │ │ ├── s_trunc.c │ │ │ ├── s_truncf.c │ │ │ ├── s_truncl.c │ │ │ ├── w_cabs.c │ │ │ ├── w_cabsf.c │ │ │ ├── w_cabsl.c │ │ │ ├── w_drem.c │ │ │ └── w_dremf.c │ ├── p_a_inv.c │ ├── p_abs.c │ ├── p_absdiff.c │ ├── p_acos.c │ ├── p_acosh.c │ ├── p_add.c │ ├── p_asin.c │ ├── p_asin.h │ ├── p_asinh.c │ ├── p_atan.c │ ├── p_atan2.c │ ├── p_atanh.c │ ├── p_cbrt_f32.c │ ├── p_cos.c │ ├── p_cosh.c │ ├── p_div.c │ ├── p_dot.c │ ├── p_dtoi.c │ ├── p_exp.c │ ├── p_exp.h │ ├── p_ftoi.c │ ├── p_inv.c │ ├── p_invcbrt_f32.c │ ├── p_invsqrt.c │ ├── p_itod.c │ ├── p_itof.c │ ├── p_ln_f32.c │ ├── p_ln_f64.c │ ├── p_log10.c │ ├── p_mac.c │ ├── p_max.c │ ├── p_mean.c │ ├── p_median.c │ ├── p_min.c │ ├── p_mode.c │ ├── p_mul.c │ ├── p_popcount.c │ ├── p_pow_f32.c │ ├── p_rand.c │ ├── p_sin.c │ ├── p_sincos.c │ ├── p_sinh.c │ ├── p_sort.c │ ├── p_sqrt.c │ ├── p_sqrt.h │ ├── p_stddev.c │ ├── p_sub.c │ ├── p_sum.c │ ├── p_sumsq.c │ ├── p_tan.c │ ├── p_tanh.c │ └── tinymt │ │ ├── CHANGE-LOG.txt │ │ ├── LICENSE.txt │ │ ├── tinymt32.c │ │ ├── tinymt32.h │ │ ├── tinymt64.c │ │ └── tinymt64.h └── wrappers │ ├── c++ │ └── README.md │ ├── erlang │ ├── README.md │ └── erlpiphany │ │ ├── Makefile │ │ ├── README.md │ │ ├── c_src │ │ └── ehal.c │ │ ├── doc │ │ ├── Module ehal.pdf │ │ ├── The Erlpiphany Application.pdf │ │ ├── edoc-info │ │ ├── ehal.html │ │ ├── erlang.png │ │ ├── erlpiphany_app.html │ │ ├── index.html │ │ ├── modules-frame.html │ │ ├── overview-summary.html │ │ ├── overview.edoc │ │ ├── packages-frame.html │ │ └── stylesheet.css │ │ ├── ebin │ │ └── ehal.beam │ │ ├── examples │ │ ├── dotproduct │ │ │ ├── bin │ │ │ │ ├── .runerl.escript.swp │ │ │ │ ├── dotproduct.beam │ │ │ │ ├── e_task.srec │ │ │ │ ├── main.beam │ │ │ │ └── runerl.escript │ │ │ ├── build.sh │ │ │ ├── run.sh │ │ │ ├── runerl.sh │ │ │ └── src │ │ │ │ ├── common.h │ │ │ │ ├── dotproduct.beam │ │ │ │ ├── dotproduct.erl │ │ │ │ ├── dotproduct2.erl │ │ │ │ ├── dotproduct3.erl │ │ │ │ ├── dotproduct4.erl │ │ │ │ ├── e_task.c │ │ │ │ ├── main.c │ │ │ │ └── main.erl │ │ ├── ehal_test.erl │ │ ├── hello-world │ │ │ ├── .cproject │ │ │ ├── .project │ │ │ ├── Debug │ │ │ │ ├── e_hello_world.srec │ │ │ │ ├── hello_world.beam │ │ │ │ ├── makefile │ │ │ │ ├── objects.mk │ │ │ │ ├── runerl.escript │ │ │ │ ├── sources.mk │ │ │ │ └── src │ │ │ │ │ └── subdir.mk │ │ │ ├── build.sh │ │ │ ├── run.sh │ │ │ ├── runerl.sh │ │ │ └── src │ │ │ │ ├── e_hello_world.c │ │ │ │ ├── e_hello_world.srec │ │ │ │ ├── ehal.beam │ │ │ │ ├── hello_world.beam │ │ │ │ ├── hello_world.c │ │ │ │ ├── hello_world.erl │ │ │ │ └── runerl.escript │ │ └── scripts │ │ │ ├── escript.sh │ │ │ ├── info.escript │ │ │ └── rooterl.sh │ │ ├── include │ │ └── ehal.hrl │ │ ├── makedocs.escript │ │ ├── priv │ │ └── README.md │ │ ├── src │ │ ├── ehal.erl │ │ ├── erlpiphany.app.src │ │ ├── erlpiphany.appup.src │ │ └── erlpiphany_app.erl │ │ ├── subdirs.mk │ │ ├── test │ │ ├── Makefile │ │ ├── ehal_test.beam │ │ └── ehal_test.erl │ │ └── vsn.mk │ ├── go │ └── README.md │ ├── java │ └── README.md │ └── python │ └── README.md ├── tests ├── Makemodule.am ├── dsp │ ├── Makemodule.am │ ├── acorr_test_data.h │ ├── check_p_acorr_f32.c │ ├── check_p_fir_f32.c │ ├── check_p_firsym_f32.c │ ├── check_p_xcorr_f32.c │ ├── fir_test_data.h │ ├── firsym_test_data.h │ ├── xcorr_test_data_1.h │ ├── xcorr_test_data_2.h │ └── xcorr_test_data_3.h ├── image │ ├── Makemodule.am │ ├── check_p_box3x3_f32.c │ ├── check_p_median3x3_f32.c │ ├── check_p_rgb2greyscale_f32.c │ ├── make_p_median3x3_data.py │ └── rgb2greyscale_test_data.h ├── math │ ├── Makemodule.am │ ├── README │ ├── check_p_sincos.c │ ├── check_scalar_and_index.c │ ├── check_scalar_and_index.h │ ├── gold │ │ ├── p_abs_f32.dat │ │ ├── p_abs_f64.dat │ │ ├── p_absdiff_f32.dat │ │ ├── p_absdiff_f64.dat │ │ ├── p_acos_f32.dat │ │ ├── p_acos_f64.dat │ │ ├── p_acosh_f32.dat │ │ ├── p_acosh_f64.dat │ │ ├── p_add_f32.dat │ │ ├── p_add_f64.dat │ │ ├── p_asin_f32.dat │ │ ├── p_asin_f64.dat │ │ ├── p_asinh_f32.dat │ │ ├── p_asinh_f64.dat │ │ ├── p_atan2_f32.dat │ │ ├── p_atan2_f64.dat │ │ ├── p_atan_f32.dat │ │ ├── p_atan_f64.dat │ │ ├── p_atanh_f32.dat │ │ ├── p_atanh_f64.dat │ │ ├── p_cbrt_f32.dat │ │ ├── p_cbrt_f64.dat │ │ ├── p_cos_f32.dat │ │ ├── p_cos_f64.dat │ │ ├── p_cosh_f32.dat │ │ ├── p_cosh_f64.dat │ │ ├── p_div_f32.dat │ │ ├── p_div_f64.dat │ │ ├── p_dot_f32.dat │ │ ├── p_dot_f64.dat │ │ ├── p_exp_f32.dat │ │ ├── p_exp_f64.dat │ │ ├── p_inv_f32.dat │ │ ├── p_inv_f64.dat │ │ ├── p_invcbrt_f32.dat │ │ ├── p_invcbrt_f64.dat │ │ ├── p_invsqrt_f32.dat │ │ ├── p_invsqrt_f64.dat │ │ ├── p_ln_f32.dat │ │ ├── p_ln_f64.dat │ │ ├── p_log10_f32.dat │ │ ├── p_log10_f64.dat │ │ ├── p_mac_f32.dat │ │ ├── p_mac_f64.dat │ │ ├── p_max_f32.dat │ │ ├── p_max_f64.dat │ │ ├── p_mean_f32.dat │ │ ├── p_mean_f64.dat │ │ ├── p_median_f32.dat │ │ ├── p_median_f64.dat │ │ ├── p_min_f32.dat │ │ ├── p_min_f64.dat │ │ ├── p_mode_f32.dat │ │ ├── p_mode_f64.dat │ │ ├── p_mul_f32.dat │ │ ├── p_mul_f64.dat │ │ ├── p_popcount_u32.dat │ │ ├── p_popcount_u64.dat │ │ ├── p_pow_f32.dat │ │ ├── p_pow_f64.dat │ │ ├── p_sin_f32.dat │ │ ├── p_sin_f64.dat │ │ ├── p_sincos_f32.dat │ │ ├── p_sincos_f64.dat │ │ ├── p_sinh_f32.dat │ │ ├── p_sinh_f64.dat │ │ ├── p_sort_f32.dat │ │ ├── p_sort_f64.dat │ │ ├── p_sqrt_f32.dat │ │ ├── p_sqrt_f64.dat │ │ ├── p_sub_f32.dat │ │ ├── p_sub_f64.dat │ │ ├── p_sum_f32.dat │ │ ├── p_sum_f64.dat │ │ ├── p_sumsq_f32.dat │ │ ├── p_sumsq_f64.dat │ │ ├── p_tan_f32.dat │ │ ├── p_tan_f64.dat │ │ ├── p_tanh_f32.dat │ │ └── p_tanh_f64.dat │ ├── make_max_min_gold_data.py │ ├── p_abs.c │ ├── p_acos.c │ ├── p_acosh.c │ ├── p_asin.c │ ├── p_asinh.c │ ├── p_atan.c │ ├── p_atan2.c │ ├── p_atanh.c │ ├── p_cbrt.c │ ├── p_cos.c │ ├── p_cosh.c │ ├── p_exp.c │ ├── p_ftoi.c │ ├── p_invsqrt.c │ ├── p_ln.c │ ├── p_log10.c │ ├── p_max.c │ ├── p_min.c │ ├── p_pow.c │ ├── p_sin.c │ ├── p_sinh.c │ ├── p_sort.c │ ├── p_sqrt.c │ ├── p_tan.c │ ├── p_tanh.c │ └── rangen.c ├── notest.c ├── notest.epiphany.c ├── runtest.epiphany.c ├── runtest.noimpl.c ├── runtest.simple.c ├── simple.c ├── simple.h ├── utest-report.c ├── utest.c └── utest.h └── tools └── regression ├── all.sh ├── benchmark.sh ├── create-db.sh ├── create-directory-index.sh ├── extract.sh ├── log-code-size.sh ├── mkallbranches.sh ├── mkallreports.sh └── summary.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/.mailmap -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODING-STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/CODING-STYLE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makemodule.host.am.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/Makemodule.host.am.in -------------------------------------------------------------------------------- /QUESTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/QUESTIONS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/Makemodule.am -------------------------------------------------------------------------------- /benchmark/bench-all.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/bench-all.sh.in -------------------------------------------------------------------------------- /benchmark/bench_tmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/bench_tmpl.h -------------------------------------------------------------------------------- /benchmark/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/benchmark.c -------------------------------------------------------------------------------- /benchmark/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/benchmark.h -------------------------------------------------------------------------------- /benchmark/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/example.c -------------------------------------------------------------------------------- /benchmark/image/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/image/Makemodule.am -------------------------------------------------------------------------------- /benchmark/image/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/image/all.c -------------------------------------------------------------------------------- /benchmark/image/one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/image/one.c -------------------------------------------------------------------------------- /benchmark/math/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/math/Makemodule.am -------------------------------------------------------------------------------- /benchmark/math/all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/math/all.c -------------------------------------------------------------------------------- /benchmark/math/one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/math/one.c -------------------------------------------------------------------------------- /benchmark/math/p_ftoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/math/p_ftoi.c -------------------------------------------------------------------------------- /benchmark/math/p_itof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/math/p_itof.c -------------------------------------------------------------------------------- /benchmark/math/p_max_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/math/p_max_f32.c -------------------------------------------------------------------------------- /benchmark/math/p_min_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/math/p_min_f32.c -------------------------------------------------------------------------------- /benchmark/math/p_popcount_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/math/p_popcount_u32.c -------------------------------------------------------------------------------- /benchmark/math/p_popcount_u64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/math/p_popcount_u64.c -------------------------------------------------------------------------------- /benchmark/math/p_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/math/p_rand.c -------------------------------------------------------------------------------- /benchmark/math/p_sincos_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/math/p_sincos_f32.c -------------------------------------------------------------------------------- /benchmark/runbench.default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/runbench.default.c -------------------------------------------------------------------------------- /benchmark/runbench.epiphany.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/runbench.epiphany.c -------------------------------------------------------------------------------- /benchmark/runbench.noimpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/benchmark/runbench.noimpl.c -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf -i --force 4 | -------------------------------------------------------------------------------- /config/m4/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/m4/ax_append_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/config/m4/ax_append_flag.m4 -------------------------------------------------------------------------------- /config/m4/ax_append_link_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/config/m4/ax_append_link_flags.m4 -------------------------------------------------------------------------------- /config/m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/config/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /config/m4/ax_check_link_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/config/m4/ax_check_link_flag.m4 -------------------------------------------------------------------------------- /config/m4/ax_config_dir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/config/m4/ax_config_dir.m4 -------------------------------------------------------------------------------- /config/m4/ax_prog_cc_for_build.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/config/m4/ax_prog_cc_for_build.m4 -------------------------------------------------------------------------------- /config/m4/ax_require_defined.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/config/m4/ax_require_defined.m4 -------------------------------------------------------------------------------- /config/m4/pal_config_device.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/config/m4/pal_config_device.m4 -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/configure.ac -------------------------------------------------------------------------------- /devices/epiphany/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/devices/epiphany/placeholder.txt -------------------------------------------------------------------------------- /doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/doc/Doxyfile.in -------------------------------------------------------------------------------- /doc/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/doc/Makemodule.am -------------------------------------------------------------------------------- /examples/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/Makemodule.am -------------------------------------------------------------------------------- /examples/base/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/base/Makemodule.am -------------------------------------------------------------------------------- /examples/base/hello_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/base/hello_task.c -------------------------------------------------------------------------------- /examples/base/median_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/base/median_task.c -------------------------------------------------------------------------------- /examples/base/memory_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/base/memory_example.c -------------------------------------------------------------------------------- /examples/base/mode_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/base/mode_task.c -------------------------------------------------------------------------------- /examples/base/simple_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/base/simple_example.c -------------------------------------------------------------------------------- /examples/base/sine_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/base/sine_example.c -------------------------------------------------------------------------------- /examples/base/sine_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/base/sine_task.c -------------------------------------------------------------------------------- /examples/base/sort_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/base/sort_task.c -------------------------------------------------------------------------------- /examples/image/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/Makemodule.am -------------------------------------------------------------------------------- /examples/image/dataset/lena-small.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/dataset/lena-small.tga -------------------------------------------------------------------------------- /examples/image/dataset/lena.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/dataset/lena.tga -------------------------------------------------------------------------------- /examples/image/dataset/lena_box.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/dataset/lena_box.tga -------------------------------------------------------------------------------- /examples/image/dataset/lena_gaussian.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/dataset/lena_gaussian.tga -------------------------------------------------------------------------------- /examples/image/dataset/lena_harris.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/dataset/lena_harris.tga -------------------------------------------------------------------------------- /examples/image/dataset/lena_median.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/dataset/lena_median.tga -------------------------------------------------------------------------------- /examples/image/dataset/lena_sobel.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/dataset/lena_sobel.tga -------------------------------------------------------------------------------- /examples/image/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/filters.c -------------------------------------------------------------------------------- /examples/image/filters2-dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/filters2-dev.c -------------------------------------------------------------------------------- /examples/image/filters2-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/filters2-host.c -------------------------------------------------------------------------------- /examples/image/harris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/harris.c -------------------------------------------------------------------------------- /examples/image/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/stb_image.h -------------------------------------------------------------------------------- /examples/image/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/image/stb_image_write.h -------------------------------------------------------------------------------- /examples/math/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/math/Makemodule.am -------------------------------------------------------------------------------- /examples/math/matmul/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/math/matmul/Makemodule.am -------------------------------------------------------------------------------- /examples/math/matmul/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/math/matmul/README.md -------------------------------------------------------------------------------- /examples/math/matmul/common-buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/math/matmul/common-buffers.h -------------------------------------------------------------------------------- /examples/math/matmul/matlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/math/matmul/matlib.c -------------------------------------------------------------------------------- /examples/math/matmul/matlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/math/matmul/matlib.h -------------------------------------------------------------------------------- /examples/math/matmul/matmul-dev-epiphany.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/math/matmul/matmul-dev-epiphany.c -------------------------------------------------------------------------------- /examples/math/matmul/matmul-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/math/matmul/matmul-host.c -------------------------------------------------------------------------------- /examples/math/matmul/matmul-internal.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/math/matmul/matmul-internal.ldf -------------------------------------------------------------------------------- /examples/math/matmul/matmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/math/matmul/matmul.h -------------------------------------------------------------------------------- /examples/math/matmul/static-buffers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/math/matmul/static-buffers.c -------------------------------------------------------------------------------- /examples/math/matmul/static-buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/examples/math/matmul/static-buffers.h -------------------------------------------------------------------------------- /host/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/host/placeholder.txt -------------------------------------------------------------------------------- /include/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/include/Makemodule.am -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/include/common.h -------------------------------------------------------------------------------- /include/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/include/pal.h -------------------------------------------------------------------------------- /include/pal_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/include/pal_base.h -------------------------------------------------------------------------------- /include/pal_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/include/pal_dsp.h -------------------------------------------------------------------------------- /include/pal_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/include/pal_fft.h -------------------------------------------------------------------------------- /include/pal_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/include/pal_image.h -------------------------------------------------------------------------------- /include/pal_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/include/pal_math.h -------------------------------------------------------------------------------- /scripts/report-code-size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/scripts/report-code-size.sh -------------------------------------------------------------------------------- /scripts/report-stack-usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/scripts/report-stack-usage.sh -------------------------------------------------------------------------------- /src/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/Makemodule.am -------------------------------------------------------------------------------- /src/base/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/Makemodule.am -------------------------------------------------------------------------------- /src/base/_p_map_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/_p_map_raw.c -------------------------------------------------------------------------------- /src/base/boilerplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/boilerplate.c -------------------------------------------------------------------------------- /src/base/devices/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/Makemodule.am -------------------------------------------------------------------------------- /src/base/devices/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/devices.h -------------------------------------------------------------------------------- /src/base/devices/epiphany/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/epiphany/Makemodule.am -------------------------------------------------------------------------------- /src/base/devices/epiphany/epiphany/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/epiphany/epiphany/Makemodule.am -------------------------------------------------------------------------------- /src/base/devices/epiphany/epiphany/dev_epiphany.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/epiphany/epiphany/dev_epiphany.h -------------------------------------------------------------------------------- /src/base/devices/epiphany/epiphany/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/epiphany/epiphany/device.c -------------------------------------------------------------------------------- /src/base/devices/posix/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/posix/Makemodule.am -------------------------------------------------------------------------------- /src/base/devices/posix/epiphany/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/posix/epiphany/Makemodule.am -------------------------------------------------------------------------------- /src/base/devices/posix/epiphany/ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/posix/epiphany/ctrl.h -------------------------------------------------------------------------------- /src/base/devices/posix/epiphany/dev_epiphany.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/posix/epiphany/dev_epiphany.h -------------------------------------------------------------------------------- /src/base/devices/posix/epiphany/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/posix/epiphany/device.c -------------------------------------------------------------------------------- /src/base/devices/posix/epiphany/epiphany-abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/posix/epiphany/epiphany-abi.h -------------------------------------------------------------------------------- /src/base/devices/posix/epiphany/epiphany-kernel-abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/posix/epiphany/epiphany-kernel-abi.h -------------------------------------------------------------------------------- /src/base/devices/posix/epiphany/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/posix/epiphany/generic.c -------------------------------------------------------------------------------- /src/base/devices/posix/epiphany/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/posix/epiphany/generic.h -------------------------------------------------------------------------------- /src/base/devices/posix/epiphany/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/posix/epiphany/loader.c -------------------------------------------------------------------------------- /src/base/devices/posix/epiphany/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/posix/epiphany/loader.h -------------------------------------------------------------------------------- /src/base/devices/posix/epiphany/simulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/devices/posix/epiphany/simulator.c -------------------------------------------------------------------------------- /src/base/p_append.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_append.c -------------------------------------------------------------------------------- /src/base/p_atomic_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_atomic_add.c -------------------------------------------------------------------------------- /src/base/p_atomic_and.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_atomic_and.c -------------------------------------------------------------------------------- /src/base/p_atomic_compswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_atomic_compswap.c -------------------------------------------------------------------------------- /src/base/p_atomic_or.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_atomic_or.c -------------------------------------------------------------------------------- /src/base/p_atomic_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_atomic_sub.c -------------------------------------------------------------------------------- /src/base/p_atomic_swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_atomic_swap.c -------------------------------------------------------------------------------- /src/base/p_atomic_xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_atomic_xor.c -------------------------------------------------------------------------------- /src/base/p_barrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_barrier.c -------------------------------------------------------------------------------- /src/base/p_broadcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_broadcast.c -------------------------------------------------------------------------------- /src/base/p_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_close.c -------------------------------------------------------------------------------- /src/base/p_coords_to_rank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_coords_to_rank.c -------------------------------------------------------------------------------- /src/base/p_fence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_fence.c -------------------------------------------------------------------------------- /src/base/p_finalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_finalize.c -------------------------------------------------------------------------------- /src/base/p_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_free.c -------------------------------------------------------------------------------- /src/base/p_gather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_gather.c -------------------------------------------------------------------------------- /src/base/p_getaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_getaddr.c -------------------------------------------------------------------------------- /src/base/p_getsymbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_getsymbol.c -------------------------------------------------------------------------------- /src/base/p_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_init.c -------------------------------------------------------------------------------- /src/base/p_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_kill.c -------------------------------------------------------------------------------- /src/base/p_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_load.c -------------------------------------------------------------------------------- /src/base/p_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_malloc.c -------------------------------------------------------------------------------- /src/base/p_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_map.c -------------------------------------------------------------------------------- /src/base/p_map_member.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_map_member.c -------------------------------------------------------------------------------- /src/base/p_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_memcpy.c -------------------------------------------------------------------------------- /src/base/p_mutex_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_mutex_init.c -------------------------------------------------------------------------------- /src/base/p_mutex_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_mutex_lock.c -------------------------------------------------------------------------------- /src/base/p_mutex_trylock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_mutex_trylock.c -------------------------------------------------------------------------------- /src/base/p_mutex_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_mutex_unlock.c -------------------------------------------------------------------------------- /src/base/p_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_open.c -------------------------------------------------------------------------------- /src/base/p_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_query.c -------------------------------------------------------------------------------- /src/base/p_rank_to_coords.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_rank_to_coords.c -------------------------------------------------------------------------------- /src/base/p_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_read.c -------------------------------------------------------------------------------- /src/base/p_rel_coords_to_rank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_rel_coords_to_rank.c -------------------------------------------------------------------------------- /src/base/p_remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_remove.c -------------------------------------------------------------------------------- /src/base/p_rmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_rmalloc.c -------------------------------------------------------------------------------- /src/base/p_run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_run.c -------------------------------------------------------------------------------- /src/base/p_scatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_scatter.c -------------------------------------------------------------------------------- /src/base/p_team_rank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_team_rank.c -------------------------------------------------------------------------------- /src/base/p_team_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_team_size.c -------------------------------------------------------------------------------- /src/base/p_unmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_unmap.c -------------------------------------------------------------------------------- /src/base/p_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_wait.c -------------------------------------------------------------------------------- /src/base/p_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/p_write.c -------------------------------------------------------------------------------- /src/base/pal_base_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/base/pal_base_private.h -------------------------------------------------------------------------------- /src/blas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/blas/README.md -------------------------------------------------------------------------------- /src/blas/asm/matmul_4x4.S: -------------------------------------------------------------------------------- 1 | /*assembly macro for 4x4 multiplication*/ 2 | -------------------------------------------------------------------------------- /src/dsp/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/dsp/Makemodule.am -------------------------------------------------------------------------------- /src/dsp/asm/epiphany/p_acorrs_32f.s: -------------------------------------------------------------------------------- 1 | //assembly -------------------------------------------------------------------------------- /src/dsp/p_acorr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/dsp/p_acorr.c -------------------------------------------------------------------------------- /src/dsp/p_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/dsp/p_conv.c -------------------------------------------------------------------------------- /src/dsp/p_fir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/dsp/p_fir.c -------------------------------------------------------------------------------- /src/dsp/p_firdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/dsp/p_firdec.c -------------------------------------------------------------------------------- /src/dsp/p_firint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/dsp/p_firint.c -------------------------------------------------------------------------------- /src/dsp/p_firsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/dsp/p_firsym.c -------------------------------------------------------------------------------- /src/dsp/p_iir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/dsp/p_iir.c -------------------------------------------------------------------------------- /src/dsp/p_xcorr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/dsp/p_xcorr.c -------------------------------------------------------------------------------- /src/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/dummy.c -------------------------------------------------------------------------------- /src/fft/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/fft/Makemodule.am -------------------------------------------------------------------------------- /src/fft/p_cfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/fft/p_cfft.c -------------------------------------------------------------------------------- /src/image/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/Makemodule.am -------------------------------------------------------------------------------- /src/image/p_box3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/p_box3x3.c -------------------------------------------------------------------------------- /src/image/p_conv2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/p_conv2d.c -------------------------------------------------------------------------------- /src/image/p_gauss3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/p_gauss3x3.c -------------------------------------------------------------------------------- /src/image/p_grayscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/p_grayscale.c -------------------------------------------------------------------------------- /src/image/p_harris3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/p_harris3x3.c -------------------------------------------------------------------------------- /src/image/p_laplace3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/p_laplace3x3.c -------------------------------------------------------------------------------- /src/image/p_median3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/p_median3x3.c -------------------------------------------------------------------------------- /src/image/p_prewitt3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/p_prewitt3x3.c -------------------------------------------------------------------------------- /src/image/p_sad16x16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/p_sad16x16.c -------------------------------------------------------------------------------- /src/image/p_sad8x8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/p_sad8x8.c -------------------------------------------------------------------------------- /src/image/p_scharr3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/p_scharr3x3.c -------------------------------------------------------------------------------- /src/image/p_sobel3x3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/image/p_sobel3x3.c -------------------------------------------------------------------------------- /src/math/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/Makemodule.am -------------------------------------------------------------------------------- /src/math/asm/epiphany/epiphany_macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/asm/epiphany/epiphany_macros.inc -------------------------------------------------------------------------------- /src/math/asm/epiphany/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/asm/epiphany/main.c -------------------------------------------------------------------------------- /src/math/asm/epiphany/p_add_f32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/asm/epiphany/p_add_f32.S -------------------------------------------------------------------------------- /src/math/asm/epiphany/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/asm/epiphany/run.sh -------------------------------------------------------------------------------- /src/math/examples/main_p_sin_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/examples/main_p_sin_f32.c -------------------------------------------------------------------------------- /src/math/msun/bsdsrc/b_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/bsdsrc/b_exp.c -------------------------------------------------------------------------------- /src/math/msun/bsdsrc/b_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/bsdsrc/b_log.c -------------------------------------------------------------------------------- /src/math/msun/bsdsrc/b_tgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/bsdsrc/b_tgamma.c -------------------------------------------------------------------------------- /src/math/msun/bsdsrc/mathimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/bsdsrc/mathimpl.h -------------------------------------------------------------------------------- /src/math/msun/ld128/e_lgammal_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/e_lgammal_r.c -------------------------------------------------------------------------------- /src/math/msun/ld128/e_rem_pio2l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/e_rem_pio2l.h -------------------------------------------------------------------------------- /src/math/msun/ld128/invtrig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/invtrig.c -------------------------------------------------------------------------------- /src/math/msun/ld128/invtrig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/invtrig.h -------------------------------------------------------------------------------- /src/math/msun/ld128/k_cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/k_cosl.c -------------------------------------------------------------------------------- /src/math/msun/ld128/k_expl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/k_expl.h -------------------------------------------------------------------------------- /src/math/msun/ld128/k_sinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/k_sinl.c -------------------------------------------------------------------------------- /src/math/msun/ld128/k_tanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/k_tanl.c -------------------------------------------------------------------------------- /src/math/msun/ld128/s_erfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/s_erfl.c -------------------------------------------------------------------------------- /src/math/msun/ld128/s_exp2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/s_exp2l.c -------------------------------------------------------------------------------- /src/math/msun/ld128/s_expl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/s_expl.c -------------------------------------------------------------------------------- /src/math/msun/ld128/s_logl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/s_logl.c -------------------------------------------------------------------------------- /src/math/msun/ld128/s_nanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/ld128/s_nanl.c -------------------------------------------------------------------------------- /src/math/msun/src/catrig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/catrig.c -------------------------------------------------------------------------------- /src/math/msun/src/catrigf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/catrigf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_acos.c -------------------------------------------------------------------------------- /src/math/msun/src/e_acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_acosf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_acosh.c -------------------------------------------------------------------------------- /src/math/msun/src/e_acoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_acoshf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_acoshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_acoshl.c -------------------------------------------------------------------------------- /src/math/msun/src/e_acosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_acosl.c -------------------------------------------------------------------------------- /src/math/msun/src/e_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_asin.c -------------------------------------------------------------------------------- /src/math/msun/src/e_asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_asinf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_asinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_asinl.c -------------------------------------------------------------------------------- /src/math/msun/src/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_atan2.c -------------------------------------------------------------------------------- /src/math/msun/src/e_atan2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_atan2f.c -------------------------------------------------------------------------------- /src/math/msun/src/e_atan2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_atan2l.c -------------------------------------------------------------------------------- /src/math/msun/src/e_atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_atanh.c -------------------------------------------------------------------------------- /src/math/msun/src/e_atanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_atanhf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_atanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_atanhl.c -------------------------------------------------------------------------------- /src/math/msun/src/e_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_cosh.c -------------------------------------------------------------------------------- /src/math/msun/src/e_coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_coshf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_coshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_coshl.c -------------------------------------------------------------------------------- /src/math/msun/src/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_exp.c -------------------------------------------------------------------------------- /src/math/msun/src/e_expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_expf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_fmod.c -------------------------------------------------------------------------------- /src/math/msun/src/e_fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_fmodf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_fmodl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_fmodl.c -------------------------------------------------------------------------------- /src/math/msun/src/e_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_gamma.c -------------------------------------------------------------------------------- /src/math/msun/src/e_gamma_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_gamma_r.c -------------------------------------------------------------------------------- /src/math/msun/src/e_gammaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_gammaf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_gammaf_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_gammaf_r.c -------------------------------------------------------------------------------- /src/math/msun/src/e_hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_hypot.c -------------------------------------------------------------------------------- /src/math/msun/src/e_hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_hypotf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_hypotl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_hypotl.c -------------------------------------------------------------------------------- /src/math/msun/src/e_j0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_j0.c -------------------------------------------------------------------------------- /src/math/msun/src/e_j0f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_j0f.c -------------------------------------------------------------------------------- /src/math/msun/src/e_j1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_j1.c -------------------------------------------------------------------------------- /src/math/msun/src/e_j1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_j1f.c -------------------------------------------------------------------------------- /src/math/msun/src/e_jn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_jn.c -------------------------------------------------------------------------------- /src/math/msun/src/e_jnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_jnf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_lgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_lgamma.c -------------------------------------------------------------------------------- /src/math/msun/src/e_lgamma_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_lgamma_r.c -------------------------------------------------------------------------------- /src/math/msun/src/e_lgammaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_lgammaf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_lgammaf_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_lgammaf_r.c -------------------------------------------------------------------------------- /src/math/msun/src/e_lgammal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_lgammal.c -------------------------------------------------------------------------------- /src/math/msun/src/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_log.c -------------------------------------------------------------------------------- /src/math/msun/src/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_log10.c -------------------------------------------------------------------------------- /src/math/msun/src/e_log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_log10f.c -------------------------------------------------------------------------------- /src/math/msun/src/e_log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_log2.c -------------------------------------------------------------------------------- /src/math/msun/src/e_log2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_log2f.c -------------------------------------------------------------------------------- /src/math/msun/src/e_logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_logf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_pow.c -------------------------------------------------------------------------------- /src/math/msun/src/e_powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_powf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_rem_pio2.c -------------------------------------------------------------------------------- /src/math/msun/src/e_rem_pio2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_rem_pio2f.c -------------------------------------------------------------------------------- /src/math/msun/src/e_remainder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_remainder.c -------------------------------------------------------------------------------- /src/math/msun/src/e_remainderf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_remainderf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_remainderl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_remainderl.c -------------------------------------------------------------------------------- /src/math/msun/src/e_scalb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_scalb.c -------------------------------------------------------------------------------- /src/math/msun/src/e_scalbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_scalbf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_sinh.c -------------------------------------------------------------------------------- /src/math/msun/src/e_sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_sinhf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_sinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_sinhl.c -------------------------------------------------------------------------------- /src/math/msun/src/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_sqrt.c -------------------------------------------------------------------------------- /src/math/msun/src/e_sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_sqrtf.c -------------------------------------------------------------------------------- /src/math/msun/src/e_sqrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/e_sqrtl.c -------------------------------------------------------------------------------- /src/math/msun/src/imprecise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/imprecise.c -------------------------------------------------------------------------------- /src/math/msun/src/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/k_cos.c -------------------------------------------------------------------------------- /src/math/msun/src/k_cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/k_cosf.c -------------------------------------------------------------------------------- /src/math/msun/src/k_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/k_exp.c -------------------------------------------------------------------------------- /src/math/msun/src/k_expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/k_expf.c -------------------------------------------------------------------------------- /src/math/msun/src/k_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/k_log.h -------------------------------------------------------------------------------- /src/math/msun/src/k_logf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/k_logf.h -------------------------------------------------------------------------------- /src/math/msun/src/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/k_rem_pio2.c -------------------------------------------------------------------------------- /src/math/msun/src/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/k_sin.c -------------------------------------------------------------------------------- /src/math/msun/src/k_sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/k_sinf.c -------------------------------------------------------------------------------- /src/math/msun/src/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/k_tan.c -------------------------------------------------------------------------------- /src/math/msun/src/k_tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/k_tanf.c -------------------------------------------------------------------------------- /src/math/msun/src/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/math_private.h -------------------------------------------------------------------------------- /src/math/msun/src/s_asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_asinh.c -------------------------------------------------------------------------------- /src/math/msun/src/s_asinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_asinhf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_asinhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_asinhl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_atan.c -------------------------------------------------------------------------------- /src/math/msun/src/s_atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_atanf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_atanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_atanl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_carg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_carg.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cargf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cargf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cargl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cargl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cbrt.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cbrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cbrtf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cbrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cbrtl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_ccosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_ccosh.c -------------------------------------------------------------------------------- /src/math/msun/src/s_ccoshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_ccoshf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_ceil.c -------------------------------------------------------------------------------- /src/math/msun/src/s_ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_ceilf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_ceill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_ceill.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cexp.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cexpf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cimag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cimag.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cimagf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cimagf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cimagl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cimagl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_conj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_conj.c -------------------------------------------------------------------------------- /src/math/msun/src/s_conjf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_conjf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_conjl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_conjl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_copysign.c -------------------------------------------------------------------------------- /src/math/msun/src/s_copysignf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_copysignf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_copysignl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_copysignl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cos.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cosf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cosl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cosl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cproj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cproj.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cprojf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cprojf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_cprojl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_cprojl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_creal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_creal.c -------------------------------------------------------------------------------- /src/math/msun/src/s_crealf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_crealf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_creall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_creall.c -------------------------------------------------------------------------------- /src/math/msun/src/s_csinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_csinh.c -------------------------------------------------------------------------------- /src/math/msun/src/s_csinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_csinhf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_csqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_csqrt.c -------------------------------------------------------------------------------- /src/math/msun/src/s_csqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_csqrtf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_csqrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_csqrtl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_ctanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_ctanh.c -------------------------------------------------------------------------------- /src/math/msun/src/s_ctanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_ctanhf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_erf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_erf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_erff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_erff.c -------------------------------------------------------------------------------- /src/math/msun/src/s_exp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_exp2.c -------------------------------------------------------------------------------- /src/math/msun/src/s_exp2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_exp2f.c -------------------------------------------------------------------------------- /src/math/msun/src/s_expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_expm1.c -------------------------------------------------------------------------------- /src/math/msun/src/s_expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_expm1f.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fabs.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fabsf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fabsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fabsl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fdim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fdim.c -------------------------------------------------------------------------------- /src/math/msun/src/s_finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_finite.c -------------------------------------------------------------------------------- /src/math/msun/src/s_finitef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_finitef.c -------------------------------------------------------------------------------- /src/math/msun/src/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_floor.c -------------------------------------------------------------------------------- /src/math/msun/src/s_floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_floorf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_floorl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_floorl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fma.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fmaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fmaf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fmal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fmal.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fmax.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fmaxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fmaxf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fmaxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fmaxl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fmin.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fminf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fminf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_fminl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_fminl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_frexp.c -------------------------------------------------------------------------------- /src/math/msun/src/s_frexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_frexpf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_frexpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_frexpl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_ilogb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_ilogb.c -------------------------------------------------------------------------------- /src/math/msun/src/s_ilogbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_ilogbf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_ilogbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_ilogbl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_llrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_llrint.c -------------------------------------------------------------------------------- /src/math/msun/src/s_llrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_llrintf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_llrintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_llrintl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_llround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_llround.c -------------------------------------------------------------------------------- /src/math/msun/src/s_llroundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_llroundf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_llroundl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_llroundl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_log1p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_log1p.c -------------------------------------------------------------------------------- /src/math/msun/src/s_log1pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_log1pf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_logb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_logb.c -------------------------------------------------------------------------------- /src/math/msun/src/s_logbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_logbf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_logbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_logbl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_lrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_lrint.c -------------------------------------------------------------------------------- /src/math/msun/src/s_lrintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_lrintf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_lrintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_lrintl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_lround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_lround.c -------------------------------------------------------------------------------- /src/math/msun/src/s_lroundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_lroundf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_lroundl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_lroundl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_modf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_modff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_modff.c -------------------------------------------------------------------------------- /src/math/msun/src/s_modfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_modfl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_nan.c -------------------------------------------------------------------------------- /src/math/msun/src/s_nearbyint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_nearbyint.c -------------------------------------------------------------------------------- /src/math/msun/src/s_nextafter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_nextafter.c -------------------------------------------------------------------------------- /src/math/msun/src/s_nextafterf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_nextafterf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_nextafterl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_nextafterl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_nexttoward.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_nexttoward.c -------------------------------------------------------------------------------- /src/math/msun/src/s_nexttowardf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_nexttowardf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_remquo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_remquo.c -------------------------------------------------------------------------------- /src/math/msun/src/s_remquof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_remquof.c -------------------------------------------------------------------------------- /src/math/msun/src/s_remquol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_remquol.c -------------------------------------------------------------------------------- /src/math/msun/src/s_rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_rint.c -------------------------------------------------------------------------------- /src/math/msun/src/s_rintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_rintf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_rintl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_rintl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_round.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_round.c -------------------------------------------------------------------------------- /src/math/msun/src/s_roundf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_roundf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_roundl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_roundl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_scalbln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_scalbln.c -------------------------------------------------------------------------------- /src/math/msun/src/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_scalbn.c -------------------------------------------------------------------------------- /src/math/msun/src/s_scalbnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_scalbnf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_scalbnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_scalbnl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_signgam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_signgam.c -------------------------------------------------------------------------------- /src/math/msun/src/s_significand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_significand.c -------------------------------------------------------------------------------- /src/math/msun/src/s_significandf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_significandf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_sin.c -------------------------------------------------------------------------------- /src/math/msun/src/s_sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_sinf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_sinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_sinl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_tan.c -------------------------------------------------------------------------------- /src/math/msun/src/s_tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_tanf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_tanh.c -------------------------------------------------------------------------------- /src/math/msun/src/s_tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_tanhf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_tanhl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_tanhl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_tanl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_tanl.c -------------------------------------------------------------------------------- /src/math/msun/src/s_tgammaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_tgammaf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_trunc.c -------------------------------------------------------------------------------- /src/math/msun/src/s_truncf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_truncf.c -------------------------------------------------------------------------------- /src/math/msun/src/s_truncl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/s_truncl.c -------------------------------------------------------------------------------- /src/math/msun/src/w_cabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/w_cabs.c -------------------------------------------------------------------------------- /src/math/msun/src/w_cabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/w_cabsf.c -------------------------------------------------------------------------------- /src/math/msun/src/w_cabsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/w_cabsl.c -------------------------------------------------------------------------------- /src/math/msun/src/w_drem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/w_drem.c -------------------------------------------------------------------------------- /src/math/msun/src/w_dremf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/msun/src/w_dremf.c -------------------------------------------------------------------------------- /src/math/p_a_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_a_inv.c -------------------------------------------------------------------------------- /src/math/p_abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_abs.c -------------------------------------------------------------------------------- /src/math/p_absdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_absdiff.c -------------------------------------------------------------------------------- /src/math/p_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_acos.c -------------------------------------------------------------------------------- /src/math/p_acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_acosh.c -------------------------------------------------------------------------------- /src/math/p_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_add.c -------------------------------------------------------------------------------- /src/math/p_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_asin.c -------------------------------------------------------------------------------- /src/math/p_asin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_asin.h -------------------------------------------------------------------------------- /src/math/p_asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_asinh.c -------------------------------------------------------------------------------- /src/math/p_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_atan.c -------------------------------------------------------------------------------- /src/math/p_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_atan2.c -------------------------------------------------------------------------------- /src/math/p_atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_atanh.c -------------------------------------------------------------------------------- /src/math/p_cbrt_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_cbrt_f32.c -------------------------------------------------------------------------------- /src/math/p_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_cos.c -------------------------------------------------------------------------------- /src/math/p_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_cosh.c -------------------------------------------------------------------------------- /src/math/p_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_div.c -------------------------------------------------------------------------------- /src/math/p_dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_dot.c -------------------------------------------------------------------------------- /src/math/p_dtoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_dtoi.c -------------------------------------------------------------------------------- /src/math/p_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_exp.c -------------------------------------------------------------------------------- /src/math/p_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_exp.h -------------------------------------------------------------------------------- /src/math/p_ftoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_ftoi.c -------------------------------------------------------------------------------- /src/math/p_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_inv.c -------------------------------------------------------------------------------- /src/math/p_invcbrt_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_invcbrt_f32.c -------------------------------------------------------------------------------- /src/math/p_invsqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_invsqrt.c -------------------------------------------------------------------------------- /src/math/p_itod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_itod.c -------------------------------------------------------------------------------- /src/math/p_itof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_itof.c -------------------------------------------------------------------------------- /src/math/p_ln_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_ln_f32.c -------------------------------------------------------------------------------- /src/math/p_ln_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_ln_f64.c -------------------------------------------------------------------------------- /src/math/p_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_log10.c -------------------------------------------------------------------------------- /src/math/p_mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_mac.c -------------------------------------------------------------------------------- /src/math/p_max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_max.c -------------------------------------------------------------------------------- /src/math/p_mean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_mean.c -------------------------------------------------------------------------------- /src/math/p_median.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_median.c -------------------------------------------------------------------------------- /src/math/p_min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_min.c -------------------------------------------------------------------------------- /src/math/p_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_mode.c -------------------------------------------------------------------------------- /src/math/p_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_mul.c -------------------------------------------------------------------------------- /src/math/p_popcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_popcount.c -------------------------------------------------------------------------------- /src/math/p_pow_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_pow_f32.c -------------------------------------------------------------------------------- /src/math/p_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_rand.c -------------------------------------------------------------------------------- /src/math/p_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_sin.c -------------------------------------------------------------------------------- /src/math/p_sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_sincos.c -------------------------------------------------------------------------------- /src/math/p_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_sinh.c -------------------------------------------------------------------------------- /src/math/p_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_sort.c -------------------------------------------------------------------------------- /src/math/p_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_sqrt.c -------------------------------------------------------------------------------- /src/math/p_sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_sqrt.h -------------------------------------------------------------------------------- /src/math/p_stddev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_stddev.c -------------------------------------------------------------------------------- /src/math/p_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_sub.c -------------------------------------------------------------------------------- /src/math/p_sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_sum.c -------------------------------------------------------------------------------- /src/math/p_sumsq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_sumsq.c -------------------------------------------------------------------------------- /src/math/p_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_tan.c -------------------------------------------------------------------------------- /src/math/p_tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/p_tanh.c -------------------------------------------------------------------------------- /src/math/tinymt/CHANGE-LOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/tinymt/CHANGE-LOG.txt -------------------------------------------------------------------------------- /src/math/tinymt/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/tinymt/LICENSE.txt -------------------------------------------------------------------------------- /src/math/tinymt/tinymt32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/tinymt/tinymt32.c -------------------------------------------------------------------------------- /src/math/tinymt/tinymt32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/tinymt/tinymt32.h -------------------------------------------------------------------------------- /src/math/tinymt/tinymt64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/tinymt/tinymt64.c -------------------------------------------------------------------------------- /src/math/tinymt/tinymt64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/math/tinymt/tinymt64.h -------------------------------------------------------------------------------- /src/wrappers/c++/README.md: -------------------------------------------------------------------------------- 1 | A 'c++' wrapper for PAL. -------------------------------------------------------------------------------- /src/wrappers/erlang/README.md: -------------------------------------------------------------------------------- 1 | An erlang wrapper for PAL. -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/Makefile -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/README.md -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/c_src/ehal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/c_src/ehal.c -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/doc/Module ehal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/doc/Module ehal.pdf -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/doc/The Erlpiphany Application.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/doc/The Erlpiphany Application.pdf -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/doc/edoc-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/doc/edoc-info -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/doc/ehal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/doc/ehal.html -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/doc/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/doc/erlang.png -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/doc/erlpiphany_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/doc/erlpiphany_app.html -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/doc/index.html -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/doc/modules-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/doc/modules-frame.html -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/doc/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/doc/overview-summary.html -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/doc/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/doc/overview.edoc -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/doc/packages-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/doc/packages-frame.html -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/doc/stylesheet.css -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/ebin/ehal.beam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/ebin/ehal.beam -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/bin/.runerl.escript.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/bin/.runerl.escript.swp -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/bin/dotproduct.beam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/bin/dotproduct.beam -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/bin/e_task.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/bin/e_task.srec -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/bin/main.beam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/bin/main.beam -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/bin/runerl.escript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/bin/runerl.escript -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/build.sh -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/run.sh -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/runerl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/runerl.sh -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/src/common.h -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/src/dotproduct.beam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/src/dotproduct.beam -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/src/dotproduct.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/src/dotproduct.erl -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/src/dotproduct2.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/src/dotproduct2.erl -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/src/dotproduct3.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/src/dotproduct3.erl -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/src/dotproduct4.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/src/dotproduct4.erl -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/src/e_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/src/e_task.c -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/src/main.c -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/dotproduct/src/main.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/dotproduct/src/main.erl -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/ehal_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/ehal_test.erl -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/.cproject -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/.project -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/e_hello_world.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/e_hello_world.srec -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/hello_world.beam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/hello_world.beam -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/makefile -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/objects.mk -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/runerl.escript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/runerl.escript -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/sources.mk -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/Debug/src/subdir.mk -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/build.sh -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | 6 | cd Debug 7 | 8 | ./hello_world.elf 9 | 10 | -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/runerl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | 6 | cd Debug 7 | 8 | ./runerl.escript 9 | 10 | -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/src/e_hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/src/e_hello_world.c -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/src/e_hello_world.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/src/e_hello_world.srec -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/src/ehal.beam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/src/ehal.beam -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/src/hello_world.beam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/src/hello_world.beam -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/src/hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/src/hello_world.c -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/src/hello_world.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/src/hello_world.erl -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/hello-world/src/runerl.escript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/hello-world/src/runerl.escript -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/scripts/escript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/scripts/escript.sh -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/scripts/info.escript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/scripts/info.escript -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/examples/scripts/rooterl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/examples/scripts/rooterl.sh -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/include/ehal.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/include/ehal.hrl -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/makedocs.escript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/makedocs.escript -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/priv/README.md: -------------------------------------------------------------------------------- 1 | Directory for Erlpiphany loadable library. -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/src/ehal.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/src/ehal.erl -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/src/erlpiphany.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/src/erlpiphany.app.src -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/src/erlpiphany.appup.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/src/erlpiphany.appup.src -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/src/erlpiphany_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/src/erlpiphany_app.erl -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/subdirs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/subdirs.mk -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/test/Makefile -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/test/ehal_test.beam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/test/ehal_test.beam -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/test/ehal_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/test/ehal_test.erl -------------------------------------------------------------------------------- /src/wrappers/erlang/erlpiphany/vsn.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/src/wrappers/erlang/erlpiphany/vsn.mk -------------------------------------------------------------------------------- /src/wrappers/go/README.md: -------------------------------------------------------------------------------- 1 | A 'go' wrapper for PAL. -------------------------------------------------------------------------------- /src/wrappers/java/README.md: -------------------------------------------------------------------------------- 1 | A jni wrapper for PAL. -------------------------------------------------------------------------------- /src/wrappers/python/README.md: -------------------------------------------------------------------------------- 1 | A python wrapper for PAL. -------------------------------------------------------------------------------- /tests/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/Makemodule.am -------------------------------------------------------------------------------- /tests/dsp/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/dsp/Makemodule.am -------------------------------------------------------------------------------- /tests/dsp/acorr_test_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/dsp/acorr_test_data.h -------------------------------------------------------------------------------- /tests/dsp/check_p_acorr_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/dsp/check_p_acorr_f32.c -------------------------------------------------------------------------------- /tests/dsp/check_p_fir_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/dsp/check_p_fir_f32.c -------------------------------------------------------------------------------- /tests/dsp/check_p_firsym_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/dsp/check_p_firsym_f32.c -------------------------------------------------------------------------------- /tests/dsp/check_p_xcorr_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/dsp/check_p_xcorr_f32.c -------------------------------------------------------------------------------- /tests/dsp/fir_test_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/dsp/fir_test_data.h -------------------------------------------------------------------------------- /tests/dsp/firsym_test_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/dsp/firsym_test_data.h -------------------------------------------------------------------------------- /tests/dsp/xcorr_test_data_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/dsp/xcorr_test_data_1.h -------------------------------------------------------------------------------- /tests/dsp/xcorr_test_data_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/dsp/xcorr_test_data_2.h -------------------------------------------------------------------------------- /tests/dsp/xcorr_test_data_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/dsp/xcorr_test_data_3.h -------------------------------------------------------------------------------- /tests/image/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/image/Makemodule.am -------------------------------------------------------------------------------- /tests/image/check_p_box3x3_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/image/check_p_box3x3_f32.c -------------------------------------------------------------------------------- /tests/image/check_p_median3x3_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/image/check_p_median3x3_f32.c -------------------------------------------------------------------------------- /tests/image/check_p_rgb2greyscale_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/image/check_p_rgb2greyscale_f32.c -------------------------------------------------------------------------------- /tests/image/make_p_median3x3_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/image/make_p_median3x3_data.py -------------------------------------------------------------------------------- /tests/image/rgb2greyscale_test_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/image/rgb2greyscale_test_data.h -------------------------------------------------------------------------------- /tests/math/Makemodule.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/Makemodule.am -------------------------------------------------------------------------------- /tests/math/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/README -------------------------------------------------------------------------------- /tests/math/check_p_sincos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/check_p_sincos.c -------------------------------------------------------------------------------- /tests/math/check_scalar_and_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/check_scalar_and_index.c -------------------------------------------------------------------------------- /tests/math/check_scalar_and_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/check_scalar_and_index.h -------------------------------------------------------------------------------- /tests/math/gold/p_abs_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_abs_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_abs_f64.dat: -------------------------------------------------------------------------------- 1 | p_abs_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_absdiff_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_absdiff_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_absdiff_f64.dat: -------------------------------------------------------------------------------- 1 | p_absdiff_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_acos_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_acos_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_acos_f64.dat: -------------------------------------------------------------------------------- 1 | p_acos_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_acosh_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_acosh_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_acosh_f64.dat: -------------------------------------------------------------------------------- 1 | p_acosh_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_add_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_add_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_add_f64.dat: -------------------------------------------------------------------------------- 1 | p_add_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_asin_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_asin_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_asin_f64.dat: -------------------------------------------------------------------------------- 1 | p_asin_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_asinh_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_asinh_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_asinh_f64.dat: -------------------------------------------------------------------------------- 1 | p_asinh_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_atan2_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_atan2_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_atan2_f64.dat: -------------------------------------------------------------------------------- 1 | p_atan2_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_atan_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_atan_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_atan_f64.dat: -------------------------------------------------------------------------------- 1 | p_atan_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_atanh_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_atanh_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_atanh_f64.dat: -------------------------------------------------------------------------------- 1 | p_atanh_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_cbrt_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_cbrt_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_cbrt_f64.dat: -------------------------------------------------------------------------------- 1 | p_cbrt_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_cos_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_cos_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_cos_f64.dat: -------------------------------------------------------------------------------- 1 | p_cos_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_cosh_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_cosh_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_cosh_f64.dat: -------------------------------------------------------------------------------- 1 | p_cosh_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_div_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_div_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_div_f64.dat: -------------------------------------------------------------------------------- 1 | p_div_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_dot_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_dot_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_dot_f64.dat: -------------------------------------------------------------------------------- 1 | p_dot_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_exp_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_exp_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_exp_f64.dat: -------------------------------------------------------------------------------- 1 | p_exp_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_inv_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_inv_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_inv_f64.dat: -------------------------------------------------------------------------------- 1 | p_inv_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_invcbrt_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_invcbrt_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_invcbrt_f64.dat: -------------------------------------------------------------------------------- 1 | p_invcbrt_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_invsqrt_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_invsqrt_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_invsqrt_f64.dat: -------------------------------------------------------------------------------- 1 | p_invsqrt_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_ln_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_ln_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_ln_f64.dat: -------------------------------------------------------------------------------- 1 | p_ln_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_log10_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_log10_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_log10_f64.dat: -------------------------------------------------------------------------------- 1 | p_log10_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_mac_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_mac_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_mac_f64.dat: -------------------------------------------------------------------------------- 1 | p_mac_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_max_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_max_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_max_f64.dat: -------------------------------------------------------------------------------- 1 | p_max_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_mean_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_mean_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_mean_f64.dat: -------------------------------------------------------------------------------- 1 | p_mean_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_median_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_median_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_median_f64.dat: -------------------------------------------------------------------------------- 1 | p_median_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_min_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_min_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_min_f64.dat: -------------------------------------------------------------------------------- 1 | p_min_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_mode_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_mode_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_mode_f64.dat: -------------------------------------------------------------------------------- 1 | p_mode_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_mul_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_mul_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_mul_f64.dat: -------------------------------------------------------------------------------- 1 | p_mul_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_popcount_u32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_popcount_u32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_popcount_u64.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_popcount_u64.dat -------------------------------------------------------------------------------- /tests/math/gold/p_pow_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_pow_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_pow_f64.dat: -------------------------------------------------------------------------------- 1 | p_pow_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sin_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_sin_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sin_f64.dat: -------------------------------------------------------------------------------- 1 | p_sin_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sincos_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_sincos_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sincos_f64.dat: -------------------------------------------------------------------------------- 1 | p_sincos_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sinh_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_sinh_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sinh_f64.dat: -------------------------------------------------------------------------------- 1 | p_sinh_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sort_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_sort_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sort_f64.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_sort_f64.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sqrt_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_sqrt_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sqrt_f64.dat: -------------------------------------------------------------------------------- 1 | p_sqrt_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sub_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_sub_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sub_f64.dat: -------------------------------------------------------------------------------- 1 | p_sub_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sum_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_sum_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sum_f64.dat: -------------------------------------------------------------------------------- 1 | p_sum_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sumsq_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_sumsq_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_sumsq_f64.dat: -------------------------------------------------------------------------------- 1 | p_sumsq_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_tan_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_tan_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_tan_f64.dat: -------------------------------------------------------------------------------- 1 | p_tan_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_tanh_f32.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/gold/p_tanh_f32.dat -------------------------------------------------------------------------------- /tests/math/gold/p_tanh_f64.dat: -------------------------------------------------------------------------------- 1 | p_tanh_f32.dat -------------------------------------------------------------------------------- /tests/math/make_max_min_gold_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/make_max_min_gold_data.py -------------------------------------------------------------------------------- /tests/math/p_abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_abs.c -------------------------------------------------------------------------------- /tests/math/p_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_acos.c -------------------------------------------------------------------------------- /tests/math/p_acosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_acosh.c -------------------------------------------------------------------------------- /tests/math/p_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_asin.c -------------------------------------------------------------------------------- /tests/math/p_asinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_asinh.c -------------------------------------------------------------------------------- /tests/math/p_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_atan.c -------------------------------------------------------------------------------- /tests/math/p_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_atan2.c -------------------------------------------------------------------------------- /tests/math/p_atanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_atanh.c -------------------------------------------------------------------------------- /tests/math/p_cbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_cbrt.c -------------------------------------------------------------------------------- /tests/math/p_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_cos.c -------------------------------------------------------------------------------- /tests/math/p_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_cosh.c -------------------------------------------------------------------------------- /tests/math/p_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_exp.c -------------------------------------------------------------------------------- /tests/math/p_ftoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_ftoi.c -------------------------------------------------------------------------------- /tests/math/p_invsqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_invsqrt.c -------------------------------------------------------------------------------- /tests/math/p_ln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_ln.c -------------------------------------------------------------------------------- /tests/math/p_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_log10.c -------------------------------------------------------------------------------- /tests/math/p_max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_max.c -------------------------------------------------------------------------------- /tests/math/p_min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_min.c -------------------------------------------------------------------------------- /tests/math/p_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_pow.c -------------------------------------------------------------------------------- /tests/math/p_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_sin.c -------------------------------------------------------------------------------- /tests/math/p_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_sinh.c -------------------------------------------------------------------------------- /tests/math/p_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_sort.c -------------------------------------------------------------------------------- /tests/math/p_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_sqrt.c -------------------------------------------------------------------------------- /tests/math/p_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_tan.c -------------------------------------------------------------------------------- /tests/math/p_tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/p_tanh.c -------------------------------------------------------------------------------- /tests/math/rangen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/math/rangen.c -------------------------------------------------------------------------------- /tests/notest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/notest.c -------------------------------------------------------------------------------- /tests/notest.epiphany.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/notest.epiphany.c -------------------------------------------------------------------------------- /tests/runtest.epiphany.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/runtest.epiphany.c -------------------------------------------------------------------------------- /tests/runtest.noimpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/runtest.noimpl.c -------------------------------------------------------------------------------- /tests/runtest.simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/runtest.simple.c -------------------------------------------------------------------------------- /tests/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/simple.c -------------------------------------------------------------------------------- /tests/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/simple.h -------------------------------------------------------------------------------- /tests/utest-report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/utest-report.c -------------------------------------------------------------------------------- /tests/utest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/utest.c -------------------------------------------------------------------------------- /tests/utest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tests/utest.h -------------------------------------------------------------------------------- /tools/regression/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tools/regression/all.sh -------------------------------------------------------------------------------- /tools/regression/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tools/regression/benchmark.sh -------------------------------------------------------------------------------- /tools/regression/create-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tools/regression/create-db.sh -------------------------------------------------------------------------------- /tools/regression/create-directory-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tools/regression/create-directory-index.sh -------------------------------------------------------------------------------- /tools/regression/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tools/regression/extract.sh -------------------------------------------------------------------------------- /tools/regression/log-code-size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tools/regression/log-code-size.sh -------------------------------------------------------------------------------- /tools/regression/mkallbranches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tools/regression/mkallbranches.sh -------------------------------------------------------------------------------- /tools/regression/mkallreports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tools/regression/mkallreports.sh -------------------------------------------------------------------------------- /tools/regression/summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/pal/HEAD/tools/regression/summary.sh --------------------------------------------------------------------------------