├── .gitignore ├── ChangeLog.2015.1.txt ├── LICENSE ├── README.manual.md ├── README.md ├── bootfs-and-kernel.sh ├── chroot-to-rootfs.sh ├── deb-pkgs └── libelfg0_0.8.13-5_armhf.deb ├── fpga_bitfiles ├── README.md ├── parallella_e16_hdmi_gpiose_7010.bit.bin ├── parallella_e16_hdmi_gpiose_7020.bit.bin ├── parallella_e16_headless_gpiose_7010.bit.bin ├── parallella_e16_headless_gpiose_7020.bit.bin ├── parallella_e16_headless_noelink_gpiose_7010.bit.bin └── parallella_e16_headless_noelink_gpiose_7020.bit.bin ├── image.sh ├── kernel.config ├── md5sum.txt ├── mnt ├── boot │ └── .gitkeep └── rootfs │ └── .gitkeep ├── overlays ├── browndeer-coprthr-1.6.2 │ ├── etc │ │ ├── OpenCL │ │ │ └── vendors │ │ │ │ └── coprthr.icd │ │ └── ocl.conf │ ├── usr │ │ └── local │ │ │ └── browndeer │ │ │ ├── bin │ │ │ ├── clcc │ │ │ ├── clcc1 │ │ │ ├── cldebug │ │ │ ├── clld │ │ │ ├── clnm │ │ │ ├── clprocd │ │ │ ├── clrpcd │ │ │ ├── cltop │ │ │ └── xclnm │ │ │ ├── doc │ │ │ ├── COPRTHR_SDK_software_stack.png │ │ │ ├── app_note_epiphany_parallella_build.html │ │ │ ├── app_note_epiphany_parallella_build.pdf │ │ │ ├── app_note_epiphany_parallella_build.txt │ │ │ ├── app_note_mic_build.html │ │ │ ├── app_note_mic_build.pdf │ │ │ ├── app_note_mic_build.txt │ │ │ ├── app_note_programming_parallella_using_stdcl.html │ │ │ ├── app_note_programming_parallella_using_stdcl.pdf │ │ │ ├── app_note_programming_parallella_using_stdcl.txt │ │ │ ├── application_notes │ │ │ │ ├── epiphany_parallella_build │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── app_note_epiphany_parallella_build.md │ │ │ │ │ ├── bdt_logo.jpg │ │ │ │ │ ├── template-app-note.html │ │ │ │ │ └── template-app-note.tex │ │ │ │ ├── mic_build │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── app_note_mic_build.md │ │ │ │ │ ├── bdt_logo.jpg │ │ │ │ │ ├── template-app-note.html │ │ │ │ │ └── template-app-note.tex │ │ │ │ └── programming_parallella_using_stdcl │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── app_note_programming_parallella_using_stdcl.md │ │ │ │ │ ├── bdt_logo.jpg │ │ │ │ │ ├── template-app-note.html │ │ │ │ │ └── template-app-note.tex │ │ │ ├── bdt_logo.jpg │ │ │ ├── coprthr_api_ref.html │ │ │ ├── coprthr_api_ref.pdf │ │ │ ├── coprthr_api_ref.txt │ │ │ ├── coprthr_api_ref │ │ │ │ ├── Makefile │ │ │ │ ├── bdt_logo.jpg │ │ │ │ ├── coprthr_api_ref.md │ │ │ │ ├── template-app-note.html │ │ │ │ └── template-app-note.tex │ │ │ ├── coprthr_primer-1.6.0.epub │ │ │ ├── coprthr_primer-1.6.0.html │ │ │ ├── coprthr_primer-1.6.0.pdf │ │ │ ├── coprthr_primer-1.6.0.txt │ │ │ ├── coprthr_primer │ │ │ │ ├── COPRTHR_SDK_software_stack.png │ │ │ │ ├── Makefile │ │ │ │ ├── bdt_logo.jpg │ │ │ │ ├── coprthr_primer_clrpc.md │ │ │ │ ├── coprthr_primer_front.md │ │ │ │ ├── coprthr_primer_hello_stdcl.md │ │ │ │ ├── coprthr_primer_libocl.md │ │ │ │ ├── coprthr_primer_overview.md │ │ │ │ ├── coprthr_primer_stdcl_examples.md │ │ │ │ ├── coprthr_primer_tests.md │ │ │ │ ├── coprthr_primer_tools.md │ │ │ │ ├── template-book.html │ │ │ │ ├── template-book.tex │ │ │ │ └── template-book.tex.ref │ │ │ ├── coprthr_release_notes-1.6.0.html │ │ │ ├── coprthr_release_notes-1.6.0.pdf │ │ │ ├── coprthr_release_notes-1.6.0.txt │ │ │ ├── release_notes │ │ │ │ └── v1.6.0 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bdt_logo.jpg │ │ │ │ │ ├── coprthr_release_notes-1.6.0.md │ │ │ │ │ ├── template-release-notes.html │ │ │ │ │ └── template-release-notes.tex │ │ │ ├── stdcl_api_ref.html │ │ │ ├── stdcl_api_ref.pdf │ │ │ ├── stdcl_api_ref.txt │ │ │ └── stdcl_api_ref │ │ │ │ ├── Makefile │ │ │ │ ├── bdt_logo.jpg │ │ │ │ ├── stdcl_api_ref.md │ │ │ │ ├── template-app-note.html │ │ │ │ └── template-app-note.tex │ │ │ ├── examples │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── bdt_em3d │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── Timer.cpp │ │ │ │ ├── Timer.h │ │ │ │ ├── bdt.bmp │ │ │ │ ├── bdt_em3d.cpp │ │ │ │ ├── em3d.h │ │ │ │ ├── em3d_fdtd_gpu_cl_display.cpp │ │ │ │ └── em3d_fdtd_gpu_kern.cl │ │ │ ├── bdt_em3d_e32 │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile.in │ │ │ │ ├── Timer.cpp │ │ │ │ ├── Timer.h │ │ │ │ ├── bdt.bmp │ │ │ │ ├── bdt_em3d.cpp │ │ │ │ ├── em3d.h │ │ │ │ ├── em3d_fdtd_gpu_cl_display.cpp │ │ │ │ └── em3d_fdtd_gpu_kern.cl │ │ │ ├── bdt_nbody │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.txt │ │ │ │ ├── Timer.cpp │ │ │ │ ├── Timer.h │ │ │ │ ├── bdt.bmp │ │ │ │ ├── bdt_nbody.cpp │ │ │ │ ├── nbody.h │ │ │ │ ├── nbody_display.cpp │ │ │ │ ├── nbody_display.h │ │ │ │ ├── nbody_init.cpp │ │ │ │ ├── nbody_kern.cl │ │ │ │ ├── nbody_kern.cl.8 │ │ │ │ └── nbody_kern.clh │ │ │ ├── bdt_nbody_e32 │ │ │ │ ├── COPYING │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.txt │ │ │ │ ├── Timer.cpp │ │ │ │ ├── Timer.h │ │ │ │ ├── bdt.bmp │ │ │ │ ├── bdt_nbody.cpp │ │ │ │ ├── nbody.h │ │ │ │ ├── nbody_display.cpp │ │ │ │ ├── nbody_display.h │ │ │ │ ├── nbody_init.cpp │ │ │ │ ├── nbody_kern.cl │ │ │ │ ├── nbody_kern.cl.8 │ │ │ │ └── nbody_kern.clh │ │ │ ├── bdt_nbody_tutorial │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.txt │ │ │ │ ├── nbody.c │ │ │ │ ├── nbody_init.c │ │ │ │ ├── nbody_kern.cl │ │ │ │ └── nbody_output.c │ │ │ ├── bdt_nbody_tutorial_2 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.txt │ │ │ │ ├── nbody2.c │ │ │ │ ├── nbody2_kern.cl │ │ │ │ ├── nbody_init.c │ │ │ │ └── nbody_output.c │ │ │ ├── clete_clmulti_array_example │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── Timer.cpp │ │ │ │ ├── Timer.h │ │ │ │ └── clete_clmulti_array_example.cpp │ │ │ ├── clete_clvector_example │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── Timer.cpp │ │ │ │ ├── Timer.h │ │ │ │ └── clete_clvector_example.cpp │ │ │ ├── clinfo.c │ │ │ ├── clmulti_array_example │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── clmulti_array_example.cpp │ │ │ │ └── matvecmult.cl │ │ │ ├── clopen_example │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── clopen_example1.c │ │ │ │ ├── clopen_example2.c │ │ │ │ ├── clopen_example3.c │ │ │ │ ├── outerprod.cl │ │ │ │ └── outerprod_three.cl │ │ │ ├── clvector_example │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── clvector_example.cpp │ │ │ │ └── outerprod.cl │ │ │ ├── coprthr_api │ │ │ │ ├── Makefile │ │ │ │ ├── test.c │ │ │ │ ├── test.h │ │ │ │ ├── test_mtx.c │ │ │ │ ├── test_stream_1.c │ │ │ │ ├── test_stream_2.c │ │ │ │ ├── test_stream_3.c │ │ │ │ ├── test_stream_4.c │ │ │ │ ├── test_stream_7.c │ │ │ │ ├── test_thread.c │ │ │ │ └── test_thread_1.c │ │ │ ├── hello_opencl │ │ │ │ ├── README.txt │ │ │ │ ├── hello_opencl.c │ │ │ │ └── run │ │ │ ├── hello_stdcl │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── hello_stdcl.c │ │ │ │ ├── hello_stdcl.f90 │ │ │ │ └── matvecmult.cl │ │ │ ├── image2d_example │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── image2d_example.c │ │ │ │ └── matvecmult_special.cl │ │ │ ├── mpi_lock_example │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.txt │ │ │ │ ├── mpi_lock_example.c │ │ │ │ ├── outerprod.cl │ │ │ │ ├── run_one_gpu.sh │ │ │ │ ├── run_three_gpu.sh │ │ │ │ └── run_two_gpu.sh │ │ │ └── parallella │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── clmulti_array_example │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── clmulti_array_example.cpp │ │ │ │ └── matvecmult.cl │ │ │ │ ├── clopen_example │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── clopen_example1.c │ │ │ │ ├── clopen_example2.c │ │ │ │ ├── clopen_example3.c │ │ │ │ ├── outerprod.cl │ │ │ │ └── outerprod_three.cl │ │ │ │ ├── clvector_example │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── clvector_example.cpp │ │ │ │ └── outerprod.cl │ │ │ │ ├── hello_opencl │ │ │ │ ├── README.txt │ │ │ │ ├── hello_opencl.c │ │ │ │ └── run │ │ │ │ └── hello_stdcl │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── hello_stdcl.c │ │ │ │ ├── hello_stdcl.c.profiling │ │ │ │ ├── hello_stdcl_fortran.f90 │ │ │ │ ├── matvecmult.cl │ │ │ │ └── ocl.conf │ │ │ ├── icd │ │ │ └── coprthr.icd │ │ │ ├── include │ │ │ ├── CL │ │ │ │ ├── cl.h │ │ │ │ ├── cl_ext.h │ │ │ │ ├── cl_gl.h │ │ │ │ ├── cl_platform.h │ │ │ │ └── cl_platform_scalar.h │ │ │ ├── CLETE │ │ │ │ ├── Combiners.h │ │ │ │ ├── CreateLeaf.h │ │ │ │ ├── ForEach.h │ │ │ │ ├── Functors.h │ │ │ │ ├── OperatorTags.h │ │ │ │ ├── PETE.h │ │ │ │ ├── PrintF.h │ │ │ │ ├── PrintType.h │ │ │ │ ├── Scalar.h │ │ │ │ ├── TreeNodes.h │ │ │ │ ├── TypeComputations.h │ │ │ │ ├── clmulti_array_CLETE.h │ │ │ │ ├── clmulti_array_Operators.h │ │ │ │ ├── clvector_CLETE.h │ │ │ │ └── clvector_Operators.h │ │ │ ├── clarg.h │ │ │ ├── clcontext.h │ │ │ ├── clelf.h │ │ │ ├── clerror.h │ │ │ ├── clexec.h │ │ │ ├── clfcn.h │ │ │ ├── clforka.h │ │ │ ├── clinit.h │ │ │ ├── clmalloc.h │ │ │ ├── clmalloc_allocator.h │ │ │ ├── clmulti_array.h │ │ │ ├── clrpc.h │ │ │ ├── clrpc_common.h │ │ │ ├── clsched.h │ │ │ ├── clvector.h │ │ │ ├── coprthr.h │ │ │ ├── coprthr │ │ │ │ ├── cmdcall.h │ │ │ │ ├── coprthr_cc.h │ │ │ │ └── cpuset_type.h │ │ │ ├── coprthr_arch.h │ │ │ ├── coprthr_dev.h │ │ │ ├── coprthr_device.h │ │ │ ├── coprthr_mem.h │ │ │ ├── coprthr_program.h │ │ │ ├── coprthr_sched.h │ │ │ ├── coprthr_thread.h │ │ │ ├── coprthr_types.h │ │ │ ├── coprthr_xdevice.h │ │ │ ├── e32_config_needham.h │ │ │ ├── e32_opencl_ext.h │ │ │ ├── e32pth_if_needham.h │ │ │ ├── e32pth_mem_if_needham.h │ │ │ ├── esdk_missing.h │ │ │ ├── kcall.h │ │ │ ├── opencl_lift.h │ │ │ ├── opencl_lift_icc.h │ │ │ ├── opencl_lift_icc_mic.h │ │ │ ├── sl_engine.h │ │ │ ├── stdcl.h │ │ │ ├── stdcl_host.h │ │ │ ├── stdcl_kernel.h │ │ │ ├── stdcl_kernel_openclcompat.h │ │ │ └── workp.h │ │ │ ├── install-message.txt │ │ │ ├── lib │ │ │ ├── _e32pth_core_main_needham.o │ │ │ ├── _e32pth_core_needham.ldf │ │ │ ├── libclelf.a │ │ │ ├── libclelf.so │ │ │ ├── libclrpc.a │ │ │ ├── libclrpc.so │ │ │ ├── libcoprthr.a │ │ │ ├── libcoprthr.so │ │ │ ├── libcoprthr_arch_e32.so │ │ │ ├── libcoprthr_arch_x86_64.a │ │ │ ├── libcoprthr_arch_x86_64.so │ │ │ ├── libcoprthr_opencl.a │ │ │ ├── libcoprthr_opencl.so │ │ │ ├── libcoprthrcc-e.a │ │ │ ├── libcoprthrcc-e.so │ │ │ ├── libcoprthrcc.a │ │ │ ├── libcoprthrcc.so │ │ │ ├── libe_platform.so │ │ │ ├── libe_platform.so.needham │ │ │ ├── libocl.a │ │ │ ├── libocl.so │ │ │ ├── libstdcl.a │ │ │ └── libstdcl.so │ │ │ ├── share │ │ │ └── man │ │ │ │ └── man3 │ │ │ │ ├── claddr.3.gz │ │ │ │ ├── clarg_set.3.gz │ │ │ │ ├── clarg_set_global.3.gz │ │ │ │ ├── clarg_set_local.3.gz │ │ │ │ ├── clclose.3.gz │ │ │ │ ├── clerror.3.gz │ │ │ │ ├── clflush.3.gz │ │ │ │ ├── clfork.3.gz │ │ │ │ ├── clfree.3.gz │ │ │ │ ├── clmalloc.3.gz │ │ │ │ ├── clmattach.3.gz │ │ │ │ ├── clmdetach.3.gz │ │ │ │ ├── clmsync.3.gz │ │ │ │ ├── clndrange_init.3.gz │ │ │ │ ├── clndrange_init1d.3.gz │ │ │ │ ├── clndrange_init2d.3.gz │ │ │ │ ├── clndrange_init3d.3.gz │ │ │ │ ├── clndrange_set.3.gz │ │ │ │ ├── clndrange_set1d.3.gz │ │ │ │ ├── clndrange_set2d.3.gz │ │ │ │ ├── clndrange_set3d.3.gz │ │ │ │ ├── clopen.3.gz │ │ │ │ ├── clsizeofmem.3.gz │ │ │ │ ├── clsym.3.gz │ │ │ │ ├── clwait.3.gz │ │ │ │ └── stdcl.3.gz │ │ │ └── test │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── test_clrpc │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── clrpc_test_cli.c │ │ │ ├── clrpc_test_cli2.c │ │ │ └── ocl.conf │ │ │ ├── test_libcoprthr_opencl │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── clinfo.c │ │ │ ├── go │ │ │ ├── hammer.sh │ │ │ ├── new_tests │ │ │ │ ├── test_ncpu.c │ │ │ │ └── test_ncpu.cl │ │ │ ├── old │ │ │ │ ├── gen_c_test_fa_wb.pl │ │ │ │ ├── gen_c_test_faf_wb.pl │ │ │ │ ├── gen_cl_test_fa_wb.pl │ │ │ │ ├── gen_cl_test_faf_wb.pl │ │ │ │ ├── test_faf.c │ │ │ │ ├── test_faf.cl │ │ │ │ ├── test_faf.ll │ │ │ │ ├── test_faf_wb.c │ │ │ │ └── test_faf_wb.cl │ │ │ ├── opencl_math_builtins.txt │ │ │ ├── rep.sh │ │ │ ├── scripts │ │ │ │ ├── gen_c_test_arg_double.pl │ │ │ │ ├── gen_c_test_arg_double2.pl │ │ │ │ ├── gen_c_test_arg_float.pl │ │ │ │ ├── gen_c_test_arg_float2.pl │ │ │ │ ├── gen_c_test_arg_float4.pl │ │ │ │ ├── gen_c_test_arg_int.pl │ │ │ │ ├── gen_c_test_arg_int2.pl │ │ │ │ ├── gen_c_test_arg_int4.pl │ │ │ │ ├── gen_c_test_arg_uint.pl │ │ │ │ ├── gen_c_test_arg_uint2.pl │ │ │ │ ├── gen_c_test_arg_uint4.pl │ │ │ │ ├── gen_c_test_block2_int.pl │ │ │ │ ├── gen_c_test_block_float.pl │ │ │ │ ├── gen_c_test_block_int.pl │ │ │ │ ├── gen_c_test_math_float.pl │ │ │ │ ├── gen_c_test_special.pl │ │ │ │ ├── gen_cl_test_arg_double.pl │ │ │ │ ├── gen_cl_test_arg_double2.pl │ │ │ │ ├── gen_cl_test_arg_float.pl │ │ │ │ ├── gen_cl_test_arg_float2.pl │ │ │ │ ├── gen_cl_test_arg_float4.pl │ │ │ │ ├── gen_cl_test_arg_int.pl │ │ │ │ ├── gen_cl_test_arg_int2.pl │ │ │ │ ├── gen_cl_test_arg_int4.pl │ │ │ │ ├── gen_cl_test_arg_uint.pl │ │ │ │ ├── gen_cl_test_arg_uint2.pl │ │ │ │ ├── gen_cl_test_arg_uint4.pl │ │ │ │ ├── gen_cl_test_block2_int.pl │ │ │ │ ├── gen_cl_test_block_float.pl │ │ │ │ ├── gen_cl_test_block_int.pl │ │ │ │ ├── gen_cl_test_math_float.pl │ │ │ │ ├── gen_cl_test_special.pl │ │ │ │ ├── no │ │ │ │ ├── perlify.sh │ │ │ │ ├── run_quick_tests.sh │ │ │ │ ├── run_quick_tests.sh.in │ │ │ │ ├── run_tests.sh │ │ │ │ ├── run_tests.sh.in │ │ │ │ └── tmp.c │ │ │ ├── sum.c │ │ │ ├── test.c │ │ │ ├── test.cl │ │ │ ├── testncpu.c │ │ │ └── testncpu.cl │ │ │ └── test_stdcl │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── go │ │ │ ├── hammer.sh │ │ │ ├── new_tests │ │ │ ├── test_ncpu.c │ │ │ └── test_ncpu.cl │ │ │ ├── old │ │ │ ├── gen_c_test_fa_wb.pl │ │ │ ├── gen_c_test_faf_wb.pl │ │ │ ├── gen_cl_test_fa_wb.pl │ │ │ ├── gen_cl_test_faf_wb.pl │ │ │ ├── test_faf.c │ │ │ ├── test_faf.cl │ │ │ ├── test_faf.ll │ │ │ ├── test_faf_wb.c │ │ │ └── test_faf_wb.cl │ │ │ ├── rep.sh │ │ │ ├── scripts │ │ │ ├── gen_c_test_stdcl_arg_float.pl │ │ │ ├── gen_c_test_stdcl_arg_float4.pl │ │ │ ├── gen_c_test_stdcl_arg_int.pl │ │ │ ├── gen_c_test_stdcl_arg_int4.pl │ │ │ ├── gen_c_test_stdcl_block_float.pl │ │ │ ├── gen_c_test_stdcl_block_int.pl │ │ │ ├── gen_c_test_stdcl_ndev_float4.pl │ │ │ ├── gen_c_test_stdcl_special.pl │ │ │ ├── gen_cl_test_arg_float.pl │ │ │ ├── gen_cl_test_arg_float4.pl │ │ │ ├── gen_cl_test_arg_int.pl │ │ │ ├── gen_cl_test_arg_int4.pl │ │ │ ├── gen_cl_test_block_float.pl │ │ │ ├── gen_cl_test_block_int.pl │ │ │ ├── gen_cl_test_special.pl │ │ │ ├── no │ │ │ ├── old │ │ │ │ ├── gen_c_test_arg_float.pl │ │ │ │ ├── gen_c_test_arg_float4.pl │ │ │ │ ├── gen_c_test_arg_int.pl │ │ │ │ ├── gen_c_test_arg_int4.pl │ │ │ │ ├── gen_c_test_block_float.pl │ │ │ │ └── gen_c_test_block_int.pl │ │ │ ├── perlify.sh │ │ │ ├── run_loop_tests.sh.in │ │ │ ├── run_quick_tests.sh │ │ │ ├── run_quick_tests.sh.in │ │ │ ├── run_tests.sh │ │ │ ├── run_tests.sh.in │ │ │ └── tmp.c │ │ │ ├── src │ │ │ └── getndev.c │ │ │ ├── sum.c │ │ │ ├── test.c │ │ │ ├── test2krn.c │ │ │ ├── testncpu.c │ │ │ └── testndev.c │ └── var │ │ └── clproc │ │ └── .gitkeep ├── epython-fe01aaee9ed92.tar.gz ├── ompi-2.0.0.tar.gz ├── parallella │ ├── etc │ │ ├── X11 │ │ │ └── xorg.conf │ │ ├── apt │ │ │ └── sources.list.d │ │ │ │ └── parallella-ppa.list │ │ ├── dhcp │ │ │ └── dhclient.conf │ │ ├── hostname │ │ ├── hosts │ │ ├── init │ │ │ └── failsafe.conf │ │ ├── network │ │ │ └── interfaces.d │ │ │ │ ├── eth0 │ │ │ │ └── lo │ │ ├── rc.local │ │ ├── resolv.conf │ │ ├── sensors.d │ │ │ └── parallella.conf │ │ ├── skel │ │ │ ├── .bashrc │ │ │ └── .cshrc │ │ └── udev │ │ │ └── rules.d │ │ │ ├── 74-parallella-persistent-net.rules │ │ │ └── 90-epiphany-device.rules │ ├── home │ │ └── parallella │ │ │ ├── .asoundrc │ │ │ └── ztemp.sh │ ├── root │ │ ├── .bashrc │ │ └── .cshrc │ └── usr │ │ └── share │ │ └── wallpapers │ │ └── parallella.png ├── perf │ ├── bin │ │ ├── perf │ │ └── trace │ ├── etc │ │ └── bash_completion.d │ │ │ └── perf │ ├── lib │ │ └── traceevent │ │ │ └── plugins │ │ │ ├── plugin_cfg80211.so │ │ │ ├── plugin_function.so │ │ │ ├── plugin_hrtimer.so │ │ │ ├── plugin_jbd2.so │ │ │ ├── plugin_kmem.so │ │ │ ├── plugin_kvm.so │ │ │ ├── plugin_mac80211.so │ │ │ ├── plugin_sched_switch.so │ │ │ ├── plugin_scsi.so │ │ │ └── plugin_xen.so │ ├── libexec │ │ └── perf-core │ │ │ ├── perf-archive │ │ │ ├── perf-with-kcore │ │ │ └── tests │ │ │ ├── attr.py │ │ │ ├── attr │ │ │ ├── README │ │ │ ├── base-record │ │ │ ├── base-stat │ │ │ ├── test-record-C0 │ │ │ ├── test-record-basic │ │ │ ├── test-record-branch-any │ │ │ ├── test-record-branch-filter-any │ │ │ ├── test-record-branch-filter-any_call │ │ │ ├── test-record-branch-filter-any_ret │ │ │ ├── test-record-branch-filter-hv │ │ │ ├── test-record-branch-filter-ind_call │ │ │ ├── test-record-branch-filter-k │ │ │ ├── test-record-branch-filter-u │ │ │ ├── test-record-count │ │ │ ├── test-record-data │ │ │ ├── test-record-freq │ │ │ ├── test-record-graph-default │ │ │ ├── test-record-graph-dwarf │ │ │ ├── test-record-graph-fp │ │ │ ├── test-record-group │ │ │ ├── test-record-group-sampling │ │ │ ├── test-record-group1 │ │ │ ├── test-record-no-buffering │ │ │ ├── test-record-no-delay │ │ │ ├── test-record-no-inherit │ │ │ ├── test-record-no-samples │ │ │ ├── test-record-period │ │ │ ├── test-record-raw │ │ │ ├── test-stat-C0 │ │ │ ├── test-stat-basic │ │ │ ├── test-stat-default │ │ │ ├── test-stat-detailed-1 │ │ │ ├── test-stat-detailed-2 │ │ │ ├── test-stat-detailed-3 │ │ │ ├── test-stat-group │ │ │ ├── test-stat-group1 │ │ │ └── test-stat-no-inherit │ │ │ └── shell │ │ │ ├── lib │ │ │ ├── probe.sh │ │ │ └── probe_vfs_getname.sh │ │ │ ├── probe_vfs_getname.sh │ │ │ ├── record+script_probe_vfs_getname.sh │ │ │ ├── trace+probe_libc_inet_pton.sh │ │ │ └── trace+probe_vfs_getname.sh │ ├── share │ │ ├── doc │ │ │ └── perf-tip │ │ │ │ └── tips.txt │ │ └── man │ │ │ └── man1 │ │ │ ├── perf-annotate.1 │ │ │ ├── perf-archive.1 │ │ │ ├── perf-bench.1 │ │ │ ├── perf-buildid-cache.1 │ │ │ ├── perf-buildid-list.1 │ │ │ ├── perf-c2c.1 │ │ │ ├── perf-config.1 │ │ │ ├── perf-data.1 │ │ │ ├── perf-diff.1 │ │ │ ├── perf-evlist.1 │ │ │ ├── perf-ftrace.1 │ │ │ ├── perf-help.1 │ │ │ ├── perf-inject.1 │ │ │ ├── perf-kallsyms.1 │ │ │ ├── perf-kmem.1 │ │ │ ├── perf-kvm.1 │ │ │ ├── perf-list.1 │ │ │ ├── perf-lock.1 │ │ │ ├── perf-mem.1 │ │ │ ├── perf-probe.1 │ │ │ ├── perf-record.1 │ │ │ ├── perf-report.1 │ │ │ ├── perf-sched.1 │ │ │ ├── perf-script-perl.1 │ │ │ ├── perf-script-python.1 │ │ │ ├── perf-script.1 │ │ │ ├── perf-stat.1 │ │ │ ├── perf-test.1 │ │ │ ├── perf-timechart.1 │ │ │ ├── perf-top.1 │ │ │ ├── perf-trace.1 │ │ │ └── perf.1 │ └── usr │ │ └── bin │ │ └── perf └── thermald.tar.gz ├── packages.all ├── packages.basic.txt ├── rootfs-arm.sh ├── rootfs.sh ├── scripts ├── 10-create-device-files.sh ├── 20-fix-permissions-coprthr.sh └── 50-clone-epiphany-examples-and-parallella-examples.sh ├── settings.inc.sh ├── sfdisk-script.txt ├── tests ├── browndeer-coprthr │ └── test.sh ├── epiphany-sdk │ └── test.sh ├── mpi │ ├── Makefile │ ├── hello.c │ └── test.sh └── zynq-temp-sensors │ └── test.sh └── ubuntu-recipe.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /linaro-nano.tgz 2 | -------------------------------------------------------------------------------- /ChangeLog.2015.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/ChangeLog.2015.1.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/README.manual.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/README.md -------------------------------------------------------------------------------- /bootfs-and-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/bootfs-and-kernel.sh -------------------------------------------------------------------------------- /chroot-to-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/chroot-to-rootfs.sh -------------------------------------------------------------------------------- /deb-pkgs/libelfg0_0.8.13-5_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/deb-pkgs/libelfg0_0.8.13-5_armhf.deb -------------------------------------------------------------------------------- /fpga_bitfiles/README.md: -------------------------------------------------------------------------------- 1 | # Put FPGA bitstreams here 2 | -------------------------------------------------------------------------------- /fpga_bitfiles/parallella_e16_hdmi_gpiose_7010.bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/fpga_bitfiles/parallella_e16_hdmi_gpiose_7010.bit.bin -------------------------------------------------------------------------------- /fpga_bitfiles/parallella_e16_hdmi_gpiose_7020.bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/fpga_bitfiles/parallella_e16_hdmi_gpiose_7020.bit.bin -------------------------------------------------------------------------------- /fpga_bitfiles/parallella_e16_headless_gpiose_7010.bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/fpga_bitfiles/parallella_e16_headless_gpiose_7010.bit.bin -------------------------------------------------------------------------------- /fpga_bitfiles/parallella_e16_headless_gpiose_7020.bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/fpga_bitfiles/parallella_e16_headless_gpiose_7020.bit.bin -------------------------------------------------------------------------------- /fpga_bitfiles/parallella_e16_headless_noelink_gpiose_7010.bit.bin: -------------------------------------------------------------------------------- 1 | parallella_e16_headless_gpiose_7010.bit.bin -------------------------------------------------------------------------------- /fpga_bitfiles/parallella_e16_headless_noelink_gpiose_7020.bit.bin: -------------------------------------------------------------------------------- 1 | parallella_e16_headless_gpiose_7020.bit.bin -------------------------------------------------------------------------------- /image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/image.sh -------------------------------------------------------------------------------- /kernel.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/kernel.config -------------------------------------------------------------------------------- /md5sum.txt: -------------------------------------------------------------------------------- 1 | 9a66195c346e03ce1de9e1e34c55b885 ubuntu_base.tgz 2 | -------------------------------------------------------------------------------- /mnt/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mnt/rootfs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/etc/OpenCL/vendors/coprthr.icd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/etc/OpenCL/vendors/coprthr.icd -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/etc/ocl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/etc/ocl.conf -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/clcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/clcc -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/clcc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/clcc1 -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/cldebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/cldebug -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/clld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/clld -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/clnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/clnm -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/clprocd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/clprocd -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/clrpcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/clrpcd -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/cltop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/cltop -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/xclnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/bin/xclnm -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/COPRTHR_SDK_software_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/COPRTHR_SDK_software_stack.png -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_epiphany_parallella_build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_epiphany_parallella_build.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_epiphany_parallella_build.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_epiphany_parallella_build.pdf -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_epiphany_parallella_build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_epiphany_parallella_build.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_mic_build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_mic_build.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_mic_build.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_mic_build.pdf -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_mic_build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_mic_build.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_programming_parallella_using_stdcl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_programming_parallella_using_stdcl.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_programming_parallella_using_stdcl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_programming_parallella_using_stdcl.pdf -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_programming_parallella_using_stdcl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/app_note_programming_parallella_using_stdcl.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/epiphany_parallella_build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/epiphany_parallella_build/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/epiphany_parallella_build/app_note_epiphany_parallella_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/epiphany_parallella_build/app_note_epiphany_parallella_build.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/epiphany_parallella_build/bdt_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/epiphany_parallella_build/bdt_logo.jpg -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/epiphany_parallella_build/template-app-note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/epiphany_parallella_build/template-app-note.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/epiphany_parallella_build/template-app-note.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/epiphany_parallella_build/template-app-note.tex -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/mic_build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/mic_build/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/mic_build/app_note_mic_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/mic_build/app_note_mic_build.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/mic_build/bdt_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/mic_build/bdt_logo.jpg -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/mic_build/template-app-note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/mic_build/template-app-note.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/mic_build/template-app-note.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/mic_build/template-app-note.tex -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/programming_parallella_using_stdcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/programming_parallella_using_stdcl/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/programming_parallella_using_stdcl/app_note_programming_parallella_using_stdcl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/programming_parallella_using_stdcl/app_note_programming_parallella_using_stdcl.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/programming_parallella_using_stdcl/bdt_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/programming_parallella_using_stdcl/bdt_logo.jpg -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/programming_parallella_using_stdcl/template-app-note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/programming_parallella_using_stdcl/template-app-note.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/programming_parallella_using_stdcl/template-app-note.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/application_notes/programming_parallella_using_stdcl/template-app-note.tex -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/bdt_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/bdt_logo.jpg -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref.pdf -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref/bdt_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref/bdt_logo.jpg -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref/coprthr_api_ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref/coprthr_api_ref.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref/template-app-note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref/template-app-note.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref/template-app-note.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_api_ref/template-app-note.tex -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer-1.6.0.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer-1.6.0.epub -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer-1.6.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer-1.6.0.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer-1.6.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer-1.6.0.pdf -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer-1.6.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer-1.6.0.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/COPRTHR_SDK_software_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/COPRTHR_SDK_software_stack.png -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/bdt_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/bdt_logo.jpg -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_clrpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_clrpc.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_front.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_front.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_hello_stdcl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_hello_stdcl.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_libocl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_libocl.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_overview.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_stdcl_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_stdcl_examples.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_tests.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/coprthr_primer_tools.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/template-book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/template-book.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/template-book.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/template-book.tex -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/template-book.tex.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_primer/template-book.tex.ref -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_release_notes-1.6.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_release_notes-1.6.0.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_release_notes-1.6.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_release_notes-1.6.0.pdf -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_release_notes-1.6.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/coprthr_release_notes-1.6.0.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/release_notes/v1.6.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/release_notes/v1.6.0/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/release_notes/v1.6.0/bdt_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/release_notes/v1.6.0/bdt_logo.jpg -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/release_notes/v1.6.0/coprthr_release_notes-1.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/release_notes/v1.6.0/coprthr_release_notes-1.6.0.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/release_notes/v1.6.0/template-release-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/release_notes/v1.6.0/template-release-notes.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/release_notes/v1.6.0/template-release-notes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/release_notes/v1.6.0/template-release-notes.tex -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref.pdf -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref/bdt_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref/bdt_logo.jpg -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref/stdcl_api_ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref/stdcl_api_ref.md -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref/template-app-note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref/template-app-note.html -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref/template-app-note.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/doc/stdcl_api_ref/template-app-note.tex -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/COPYING -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/Timer.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/Timer.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/bdt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/bdt.bmp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/bdt_em3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/bdt_em3d.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/em3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/em3d.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/em3d_fdtd_gpu_cl_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/em3d_fdtd_gpu_cl_display.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/em3d_fdtd_gpu_kern.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d/em3d_fdtd_gpu_kern.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/COPYING -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/Timer.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/Timer.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/bdt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/bdt.bmp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/bdt_em3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/bdt_em3d.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/em3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/em3d.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/em3d_fdtd_gpu_cl_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/em3d_fdtd_gpu_cl_display.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/em3d_fdtd_gpu_kern.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_em3d_e32/em3d_fdtd_gpu_kern.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/COPYING -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/README.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/Timer.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/Timer.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/bdt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/bdt.bmp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/bdt_nbody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/bdt_nbody.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody_display.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody_display.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody_init.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody_kern.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody_kern.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody_kern.cl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody_kern.cl.8 -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody_kern.clh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody/nbody_kern.clh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/COPYING -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/README.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/Timer.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/Timer.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/bdt.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/bdt.bmp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/bdt_nbody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/bdt_nbody.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody_display.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody_display.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody_init.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody_kern.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody_kern.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody_kern.cl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody_kern.cl.8 -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody_kern.clh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_e32/nbody_kern.clh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/README.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/nbody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/nbody.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/nbody_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/nbody_init.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/nbody_kern.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/nbody_kern.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/nbody_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial/nbody_output.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/README.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/nbody2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/nbody2.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/nbody2_kern.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/nbody2_kern.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/nbody_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/nbody_init.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/nbody_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/bdt_nbody_tutorial_2/nbody_output.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clmulti_array_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clmulti_array_example/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clmulti_array_example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clmulti_array_example/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clmulti_array_example/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clmulti_array_example/Timer.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clmulti_array_example/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clmulti_array_example/Timer.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clmulti_array_example/clete_clmulti_array_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clmulti_array_example/clete_clmulti_array_example.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clvector_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clvector_example/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clvector_example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clvector_example/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clvector_example/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clvector_example/Timer.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clvector_example/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clvector_example/Timer.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clvector_example/clete_clvector_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clete_clvector_example/clete_clvector_example.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clinfo.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clmulti_array_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clmulti_array_example/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clmulti_array_example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clmulti_array_example/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clmulti_array_example/clmulti_array_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clmulti_array_example/clmulti_array_example.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clmulti_array_example/matvecmult.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clmulti_array_example/matvecmult.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/clopen_example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/clopen_example1.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/clopen_example2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/clopen_example2.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/clopen_example3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/clopen_example3.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/outerprod.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/outerprod.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/outerprod_three.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clopen_example/outerprod_three.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clvector_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clvector_example/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clvector_example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clvector_example/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clvector_example/clvector_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clvector_example/clvector_example.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clvector_example/outerprod.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/clvector_example/outerprod.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_mtx.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_stream_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_stream_1.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_stream_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_stream_2.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_stream_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_stream_3.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_stream_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_stream_4.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_stream_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_stream_7.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_thread.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_thread_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/coprthr_api/test_thread_1.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_opencl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_opencl/README.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_opencl/hello_opencl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_opencl/hello_opencl.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_opencl/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_opencl/run -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_stdcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_stdcl/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_stdcl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_stdcl/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_stdcl/hello_stdcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_stdcl/hello_stdcl.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_stdcl/hello_stdcl.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_stdcl/hello_stdcl.f90 -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_stdcl/matvecmult.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/hello_stdcl/matvecmult.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/image2d_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/image2d_example/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/image2d_example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/image2d_example/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/image2d_example/image2d_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/image2d_example/image2d_example.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/image2d_example/matvecmult_special.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/image2d_example/matvecmult_special.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/README.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/mpi_lock_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/mpi_lock_example.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/outerprod.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/outerprod.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/run_one_gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/run_one_gpu.sh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/run_three_gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/run_three_gpu.sh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/run_two_gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/mpi_lock_example/run_two_gpu.sh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clmulti_array_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clmulti_array_example/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clmulti_array_example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clmulti_array_example/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clmulti_array_example/clmulti_array_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clmulti_array_example/clmulti_array_example.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clmulti_array_example/matvecmult.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clmulti_array_example/matvecmult.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/clopen_example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/clopen_example1.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/clopen_example2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/clopen_example2.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/clopen_example3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/clopen_example3.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/outerprod.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/outerprod.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/outerprod_three.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clopen_example/outerprod_three.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clvector_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clvector_example/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clvector_example/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clvector_example/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clvector_example/clvector_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clvector_example/clvector_example.cpp -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clvector_example/outerprod.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/clvector_example/outerprod.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_opencl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_opencl/README.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_opencl/hello_opencl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_opencl/hello_opencl.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_opencl/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_opencl/run -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/hello_stdcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/hello_stdcl.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/hello_stdcl.c.profiling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/hello_stdcl.c.profiling -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/hello_stdcl_fortran.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/hello_stdcl_fortran.f90 -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/matvecmult.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/matvecmult.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/ocl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/examples/parallella/hello_stdcl/ocl.conf -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/icd/coprthr.icd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/icd/coprthr.icd -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CL/cl.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CL/cl_ext.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CL/cl_gl.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CL/cl_platform.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CL/cl_platform_scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CL/cl_platform_scalar.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/Combiners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/Combiners.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/CreateLeaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/CreateLeaf.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/ForEach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/ForEach.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/Functors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/Functors.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/OperatorTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/OperatorTags.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/PETE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/PETE.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/PrintF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/PrintF.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/PrintType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/PrintType.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/Scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/Scalar.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/TreeNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/TreeNodes.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/TypeComputations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/TypeComputations.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/clmulti_array_CLETE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/clmulti_array_CLETE.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/clmulti_array_Operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/clmulti_array_Operators.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/clvector_CLETE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/clvector_CLETE.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/clvector_Operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/CLETE/clvector_Operators.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clarg.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clcontext.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clelf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clelf.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clerror.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clexec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clexec.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clfcn.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clforka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clforka.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clinit.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clmalloc.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clmalloc_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clmalloc_allocator.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clmulti_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clmulti_array.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clrpc.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clrpc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clrpc_common.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clsched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clsched.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/clvector.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr/cmdcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr/cmdcall.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr/coprthr_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr/coprthr_cc.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr/cpuset_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr/cpuset_type.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_arch.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_dev.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_device.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_mem.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_program.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_sched.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_thread.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_types.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_xdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/coprthr_xdevice.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/e32_config_needham.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/e32_config_needham.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/e32_opencl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/e32_opencl_ext.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/e32pth_if_needham.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/e32pth_if_needham.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/e32pth_mem_if_needham.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/e32pth_mem_if_needham.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/esdk_missing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/esdk_missing.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/kcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/kcall.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/opencl_lift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/opencl_lift.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/opencl_lift_icc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/opencl_lift_icc.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/opencl_lift_icc_mic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/opencl_lift_icc_mic.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/sl_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/sl_engine.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/stdcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/stdcl.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/stdcl_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/stdcl_host.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/stdcl_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/stdcl_kernel.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/stdcl_kernel_openclcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/stdcl_kernel_openclcompat.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/workp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/include/workp.h -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/install-message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/install-message.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/_e32pth_core_main_needham.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/_e32pth_core_main_needham.o -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/_e32pth_core_needham.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/_e32pth_core_needham.ldf -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libclelf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libclelf.a -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libclelf.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libclelf.so -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libclrpc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libclrpc.a -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libclrpc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libclrpc.so -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr.a -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr.so -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr_arch_e32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr_arch_e32.so -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr_arch_x86_64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr_arch_x86_64.a -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr_arch_x86_64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr_arch_x86_64.so -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr_opencl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr_opencl.a -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr_opencl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthr_opencl.so -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthrcc-e.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthrcc-e.a -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthrcc-e.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthrcc-e.so -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthrcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthrcc.a -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthrcc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libcoprthrcc.so -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libe_platform.so: -------------------------------------------------------------------------------- 1 | libe_platform.so.needham -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libe_platform.so.needham: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libe_platform.so.needham -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libocl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libocl.a -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libocl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libocl.so -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libstdcl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libstdcl.a -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libstdcl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/lib/libstdcl.so -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/claddr.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/claddr.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clarg_set.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clarg_set.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clarg_set_global.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clarg_set_global.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clarg_set_local.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clarg_set_local.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clclose.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clclose.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clerror.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clerror.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clflush.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clflush.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clfork.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clfork.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clfree.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clfree.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clmalloc.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clmalloc.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clmattach.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clmattach.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clmdetach.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clmdetach.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clmsync.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clmsync.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_init.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_init.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_init1d.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_init1d.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_init2d.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_init2d.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_init3d.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_init3d.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_set.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_set.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_set1d.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_set1d.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_set2d.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_set2d.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_set3d.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clndrange_set3d.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clopen.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clopen.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clsizeofmem.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clsizeofmem.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clsym.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clsym.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clwait.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/clwait.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/stdcl.3.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/share/man/man3/stdcl.3.gz -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_clrpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_clrpc/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_clrpc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_clrpc/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_clrpc/clrpc_test_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_clrpc/clrpc_test_cli.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_clrpc/clrpc_test_cli2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_clrpc/clrpc_test_cli2.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_clrpc/ocl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_clrpc/ocl.conf -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/clinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/clinfo.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/go -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/hammer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/hammer.sh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/new_tests/test_ncpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/new_tests/test_ncpu.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/new_tests/test_ncpu.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/new_tests/test_ncpu.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/gen_c_test_fa_wb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/gen_c_test_fa_wb.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/gen_c_test_faf_wb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/gen_c_test_faf_wb.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/gen_cl_test_fa_wb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/gen_cl_test_fa_wb.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/gen_cl_test_faf_wb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/gen_cl_test_faf_wb.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/test_faf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/test_faf.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/test_faf.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/test_faf.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/test_faf.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/test_faf.ll -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/test_faf_wb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/test_faf_wb.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/test_faf_wb.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/old/test_faf_wb.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/opencl_math_builtins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/opencl_math_builtins.txt -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/rep.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | while test 0 -eq 0; do 4 | ./prog.x 5 | done 6 | 7 | -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_double.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_double.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_double2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_double2.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_float.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_float.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_float2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_float2.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_float4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_float4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_int.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_int2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_int2.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_int4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_int4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_uint.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_uint.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_uint2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_uint2.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_uint4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_arg_uint4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_block2_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_block2_int.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_block_float.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_block_float.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_block_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_block_int.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_math_float.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_math_float.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_special.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_c_test_special.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_double.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_double.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_double2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_double2.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_float.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_float.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_float2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_float2.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_float4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_float4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_int.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_int2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_int2.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_int4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_int4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_uint.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_uint.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_uint2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_uint2.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_uint4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_arg_uint4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_block2_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_block2_int.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_block_float.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_block_float.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_block_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_block_int.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_math_float.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_math_float.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_special.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/gen_cl_test_special.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/no -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/perlify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/perlify.sh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/run_quick_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/run_quick_tests.sh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/run_quick_tests.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/run_quick_tests.sh.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/run_tests.sh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/run_tests.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/run_tests.sh.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/tmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/scripts/tmp.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/sum.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/test.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/test.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/testncpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/testncpu.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/testncpu.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_libcoprthr_opencl/testncpu.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/Makefile -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/Makefile.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/go -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/hammer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/hammer.sh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/new_tests/test_ncpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/new_tests/test_ncpu.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/new_tests/test_ncpu.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/new_tests/test_ncpu.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/gen_c_test_fa_wb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/gen_c_test_fa_wb.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/gen_c_test_faf_wb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/gen_c_test_faf_wb.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/gen_cl_test_fa_wb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/gen_cl_test_fa_wb.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/gen_cl_test_faf_wb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/gen_cl_test_faf_wb.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/test_faf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/test_faf.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/test_faf.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/test_faf.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/test_faf.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/test_faf.ll -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/test_faf_wb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/test_faf_wb.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/test_faf_wb.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/old/test_faf_wb.cl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/rep.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | while test 0 -eq 0; do 4 | ./prog.x 5 | done 6 | 7 | -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_arg_float.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_arg_float.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_arg_float4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_arg_float4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_arg_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_arg_int.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_arg_int4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_arg_int4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_block_float.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_block_float.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_block_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_block_int.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_ndev_float4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_ndev_float4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_special.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_c_test_stdcl_special.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_arg_float.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_arg_float.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_arg_float4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_arg_float4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_arg_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_arg_int.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_arg_int4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_arg_int4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_block_float.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_block_float.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_block_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_block_int.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_special.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/gen_cl_test_special.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/no -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/old/gen_c_test_arg_float.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/old/gen_c_test_arg_float.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/old/gen_c_test_arg_float4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/old/gen_c_test_arg_float4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/old/gen_c_test_arg_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/old/gen_c_test_arg_int.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/old/gen_c_test_arg_int4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/old/gen_c_test_arg_int4.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/old/gen_c_test_block_float.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/old/gen_c_test_block_float.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/old/gen_c_test_block_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/old/gen_c_test_block_int.pl -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/perlify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/perlify.sh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/run_loop_tests.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/run_loop_tests.sh.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/run_quick_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/run_quick_tests.sh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/run_quick_tests.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/run_quick_tests.sh.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/run_tests.sh -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/run_tests.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/run_tests.sh.in -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/tmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/scripts/tmp.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/src/getndev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/src/getndev.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/sum.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/test.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/test2krn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/test2krn.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/testncpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/testncpu.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/testndev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/browndeer-coprthr-1.6.2/usr/local/browndeer/test/test_stdcl/testndev.c -------------------------------------------------------------------------------- /overlays/browndeer-coprthr-1.6.2/var/clproc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /overlays/epython-fe01aaee9ed92.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/epython-fe01aaee9ed92.tar.gz -------------------------------------------------------------------------------- /overlays/ompi-2.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/ompi-2.0.0.tar.gz -------------------------------------------------------------------------------- /overlays/parallella/etc/X11/xorg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/X11/xorg.conf -------------------------------------------------------------------------------- /overlays/parallella/etc/apt/sources.list.d/parallella-ppa.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/apt/sources.list.d/parallella-ppa.list -------------------------------------------------------------------------------- /overlays/parallella/etc/dhcp/dhclient.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/dhcp/dhclient.conf -------------------------------------------------------------------------------- /overlays/parallella/etc/hostname: -------------------------------------------------------------------------------- 1 | parallella 2 | -------------------------------------------------------------------------------- /overlays/parallella/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/hosts -------------------------------------------------------------------------------- /overlays/parallella/etc/init/failsafe.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/init/failsafe.conf -------------------------------------------------------------------------------- /overlays/parallella/etc/network/interfaces.d/eth0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/network/interfaces.d/eth0 -------------------------------------------------------------------------------- /overlays/parallella/etc/network/interfaces.d/lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/network/interfaces.d/lo -------------------------------------------------------------------------------- /overlays/parallella/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/rc.local -------------------------------------------------------------------------------- /overlays/parallella/etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/resolv.conf -------------------------------------------------------------------------------- /overlays/parallella/etc/sensors.d/parallella.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/sensors.d/parallella.conf -------------------------------------------------------------------------------- /overlays/parallella/etc/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/skel/.bashrc -------------------------------------------------------------------------------- /overlays/parallella/etc/skel/.cshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/skel/.cshrc -------------------------------------------------------------------------------- /overlays/parallella/etc/udev/rules.d/74-parallella-persistent-net.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/udev/rules.d/74-parallella-persistent-net.rules -------------------------------------------------------------------------------- /overlays/parallella/etc/udev/rules.d/90-epiphany-device.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/etc/udev/rules.d/90-epiphany-device.rules -------------------------------------------------------------------------------- /overlays/parallella/home/parallella/.asoundrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/home/parallella/.asoundrc -------------------------------------------------------------------------------- /overlays/parallella/home/parallella/ztemp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/home/parallella/ztemp.sh -------------------------------------------------------------------------------- /overlays/parallella/root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/root/.bashrc -------------------------------------------------------------------------------- /overlays/parallella/root/.cshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/root/.cshrc -------------------------------------------------------------------------------- /overlays/parallella/usr/share/wallpapers/parallella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/parallella/usr/share/wallpapers/parallella.png -------------------------------------------------------------------------------- /overlays/perf/bin/perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/bin/perf -------------------------------------------------------------------------------- /overlays/perf/bin/trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/bin/trace -------------------------------------------------------------------------------- /overlays/perf/etc/bash_completion.d/perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/etc/bash_completion.d/perf -------------------------------------------------------------------------------- /overlays/perf/lib/traceevent/plugins/plugin_cfg80211.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/lib/traceevent/plugins/plugin_cfg80211.so -------------------------------------------------------------------------------- /overlays/perf/lib/traceevent/plugins/plugin_function.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/lib/traceevent/plugins/plugin_function.so -------------------------------------------------------------------------------- /overlays/perf/lib/traceevent/plugins/plugin_hrtimer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/lib/traceevent/plugins/plugin_hrtimer.so -------------------------------------------------------------------------------- /overlays/perf/lib/traceevent/plugins/plugin_jbd2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/lib/traceevent/plugins/plugin_jbd2.so -------------------------------------------------------------------------------- /overlays/perf/lib/traceevent/plugins/plugin_kmem.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/lib/traceevent/plugins/plugin_kmem.so -------------------------------------------------------------------------------- /overlays/perf/lib/traceevent/plugins/plugin_kvm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/lib/traceevent/plugins/plugin_kvm.so -------------------------------------------------------------------------------- /overlays/perf/lib/traceevent/plugins/plugin_mac80211.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/lib/traceevent/plugins/plugin_mac80211.so -------------------------------------------------------------------------------- /overlays/perf/lib/traceevent/plugins/plugin_sched_switch.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/lib/traceevent/plugins/plugin_sched_switch.so -------------------------------------------------------------------------------- /overlays/perf/lib/traceevent/plugins/plugin_scsi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/lib/traceevent/plugins/plugin_scsi.so -------------------------------------------------------------------------------- /overlays/perf/lib/traceevent/plugins/plugin_xen.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/lib/traceevent/plugins/plugin_xen.so -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/perf-archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/perf-archive -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/perf-with-kcore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/perf-with-kcore -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr.py -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/README -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/base-record: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/base-record -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/base-stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/base-stat -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-C0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-C0 -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-basic -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-branch-any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-branch-any -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-any -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-any_call: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-any_call -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-any_ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-any_ret -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-hv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-hv -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-ind_call: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-ind_call -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-k -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-branch-filter-u -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-count: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-count -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-data -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-freq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-freq -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-graph-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-graph-default -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-graph-dwarf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-graph-dwarf -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-graph-fp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-graph-fp -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-group -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-group-sampling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-group-sampling -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-group1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-group1 -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-no-buffering: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-no-buffering -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-no-delay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-no-delay -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-no-inherit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-no-inherit -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-no-samples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-no-samples -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-period: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-period -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-record-raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-record-raw -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-stat-C0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-stat-C0 -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-stat-basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-stat-basic -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-stat-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-stat-default -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-stat-detailed-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-stat-detailed-1 -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-stat-detailed-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-stat-detailed-2 -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-stat-detailed-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-stat-detailed-3 -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-stat-group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-stat-group -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-stat-group1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-stat-group1 -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/attr/test-stat-no-inherit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/attr/test-stat-no-inherit -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/shell/lib/probe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/shell/lib/probe.sh -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/shell/lib/probe_vfs_getname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/shell/lib/probe_vfs_getname.sh -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/shell/probe_vfs_getname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/shell/probe_vfs_getname.sh -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/shell/record+script_probe_vfs_getname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/shell/record+script_probe_vfs_getname.sh -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/shell/trace+probe_libc_inet_pton.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/shell/trace+probe_libc_inet_pton.sh -------------------------------------------------------------------------------- /overlays/perf/libexec/perf-core/tests/shell/trace+probe_vfs_getname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/libexec/perf-core/tests/shell/trace+probe_vfs_getname.sh -------------------------------------------------------------------------------- /overlays/perf/share/doc/perf-tip/tips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/doc/perf-tip/tips.txt -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-annotate.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-annotate.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-archive.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-archive.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-bench.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-bench.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-buildid-cache.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-buildid-cache.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-buildid-list.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-buildid-list.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-c2c.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-c2c.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-config.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-data.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-data.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-diff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-diff.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-evlist.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-evlist.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-ftrace.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-ftrace.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-help.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-help.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-inject.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-inject.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-kallsyms.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-kallsyms.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-kmem.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-kmem.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-kvm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-kvm.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-list.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-list.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-lock.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-lock.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-mem.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-mem.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-probe.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-probe.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-record.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-record.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-report.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-report.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-sched.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-sched.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-script-perl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-script-perl.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-script-python.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-script-python.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-script.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-script.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-stat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-stat.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-test.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-test.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-timechart.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-timechart.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-top.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-top.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf-trace.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf-trace.1 -------------------------------------------------------------------------------- /overlays/perf/share/man/man1/perf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/share/man/man1/perf.1 -------------------------------------------------------------------------------- /overlays/perf/usr/bin/perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/perf/usr/bin/perf -------------------------------------------------------------------------------- /overlays/thermald.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/overlays/thermald.tar.gz -------------------------------------------------------------------------------- /packages.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/packages.all -------------------------------------------------------------------------------- /packages.basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/packages.basic.txt -------------------------------------------------------------------------------- /rootfs-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/rootfs-arm.sh -------------------------------------------------------------------------------- /rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/rootfs.sh -------------------------------------------------------------------------------- /scripts/10-create-device-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/scripts/10-create-device-files.sh -------------------------------------------------------------------------------- /scripts/20-fix-permissions-coprthr.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | #Set sticky bit 4 | chmod 1777 mnt/rootfs/var/clproc 5 | -------------------------------------------------------------------------------- /scripts/50-clone-epiphany-examples-and-parallella-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/scripts/50-clone-epiphany-examples-and-parallella-examples.sh -------------------------------------------------------------------------------- /settings.inc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/settings.inc.sh -------------------------------------------------------------------------------- /sfdisk-script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/sfdisk-script.txt -------------------------------------------------------------------------------- /tests/browndeer-coprthr/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/tests/browndeer-coprthr/test.sh -------------------------------------------------------------------------------- /tests/epiphany-sdk/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/tests/epiphany-sdk/test.sh -------------------------------------------------------------------------------- /tests/mpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/tests/mpi/Makefile -------------------------------------------------------------------------------- /tests/mpi/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/tests/mpi/hello.c -------------------------------------------------------------------------------- /tests/mpi/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/tests/mpi/test.sh -------------------------------------------------------------------------------- /tests/zynq-temp-sensors/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/tests/zynq-temp-sensors/test.sh -------------------------------------------------------------------------------- /ubuntu-recipe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parallella/parabuntu/HEAD/ubuntu-recipe.txt --------------------------------------------------------------------------------