├── INSTALL.md ├── LICENSE.TXT ├── README.md ├── bin ├── cloc.sh ├── copyright ├── intrinsics.map ├── kfd_check_installation.sh ├── mygpu ├── mymcpu ├── printhsail ├── rocm_tools ├── snack.sh ├── snackhsail.sh ├── snk_genw.sh └── snk_genwhsail.sh ├── examples ├── README.md ├── hsa │ ├── vector_copy │ │ ├── Makefile │ │ ├── obj │ │ │ └── .gitignore │ │ ├── vector_copy.c │ │ └── vector_copy.cl │ ├── vector_copy_async │ │ ├── Makefile │ │ ├── obj │ │ │ └── .gitignore │ │ ├── vector_copy.c │ │ └── vector_copy.cl │ └── vector_copy_codeobject_rocm │ │ ├── Makefile │ │ ├── README.md │ │ ├── vector_copy_codeobject.cl │ │ └── vector_copy_codeobject.cpp ├── mathdemo_hsaillib │ ├── mathdemo_hsaillib.h │ └── mathdemo_hsaillib.hsail ├── rocm_tools │ ├── README │ ├── ubuntu-carrizo-102015 │ ├── ubuntu-kaveri-060816 │ ├── ubuntu-kaveri-081616 │ ├── ubuntu-kaveri-081916 │ ├── ubuntu-kaveri-090215 │ ├── ubuntu-kaveri-092415 │ ├── ubuntu-kaveri-101615 │ └── ubuntu-kaveri-102015 └── snack │ ├── README │ ├── async_vecsum │ ├── buildrun.sh │ ├── sumKernel.cl │ └── vecsum.cpp │ ├── csquares │ ├── CSquares.cl │ ├── CSquares.cpp │ └── buildrun.sh │ ├── fortran │ ├── HelloWorld.f │ ├── buildrun.sh │ └── hw.cl │ ├── helloworld │ ├── HelloWorld.c │ ├── HelloWorld.cpp │ ├── HelloWorld.f │ ├── buildrun.sh │ └── hw.cl │ ├── matmul │ ├── buildrun.sh │ ├── matmul.c │ ├── matmul.h │ └── matmulKernels.cl │ ├── multiple_cl_files │ ├── HelloWorld.c │ ├── buildrun.sh │ ├── hw.cl │ └── hw2.cl │ ├── test_hsail_lib │ ├── buildrun.sh │ ├── test_hsail_lib.cl │ └── test_hsail_lib.cpp │ └── vector_copy │ ├── VectorCopy.cpp │ ├── buildrun.sh │ └── vector_copy.cl ├── libamdgcn ├── .old_make_method │ ├── Makefile │ ├── SOURCES │ └── create_makefile_include.sh ├── CMakeLists.txt ├── README ├── README-rsync_libclc.sh ├── libclc │ ├── CREDITS.TXT │ ├── LICENSE.TXT │ ├── README.TXT │ ├── amdgcn │ │ └── lib │ │ │ ├── OVERRIDES │ │ │ ├── SOURCES │ │ │ ├── synchronization │ │ │ └── barrier_impl.ll │ │ │ └── workitem │ │ │ ├── get_group_id.ll │ │ │ └── get_local_id.ll │ ├── amdgpu │ │ └── lib │ │ │ ├── OVERRIDES │ │ │ ├── SOURCES │ │ │ ├── atomic │ │ │ └── atomic.cl │ │ │ ├── image │ │ │ ├── get_image_attributes_impl.ll │ │ │ ├── get_image_channel_data_type.cl │ │ │ ├── get_image_channel_order.cl │ │ │ ├── get_image_depth.cl │ │ │ ├── get_image_height.cl │ │ │ ├── get_image_width.cl │ │ │ ├── read_image_impl.ll │ │ │ ├── read_imagef.cl │ │ │ ├── read_imagei.cl │ │ │ ├── read_imageui.cl │ │ │ ├── write_image_impl.ll │ │ │ ├── write_imagef.cl │ │ │ ├── write_imagei.cl │ │ │ └── write_imageui.cl │ │ │ ├── math │ │ │ ├── ldexp.cl │ │ │ ├── nextafter.cl │ │ │ └── sqrt.cl │ │ │ ├── synchronization │ │ │ └── barrier.cl │ │ │ └── workitem │ │ │ ├── get_global_size.ll │ │ │ ├── get_local_size.ll │ │ │ ├── get_num_groups.ll │ │ │ └── get_work_dim.ll │ ├── generic │ │ ├── include │ │ │ ├── clc │ │ │ │ ├── as_type.h │ │ │ │ ├── async │ │ │ │ │ ├── async_work_group_copy.h │ │ │ │ │ ├── async_work_group_copy.inc │ │ │ │ │ ├── async_work_group_strided_copy.h │ │ │ │ │ ├── async_work_group_strided_copy.inc │ │ │ │ │ ├── gentype.inc │ │ │ │ │ ├── prefetch.h │ │ │ │ │ ├── prefetch.inc │ │ │ │ │ └── wait_group_events.h │ │ │ │ ├── atomic │ │ │ │ │ ├── atomic_add.h │ │ │ │ │ ├── atomic_and.h │ │ │ │ │ ├── atomic_cmpxchg.h │ │ │ │ │ ├── atomic_dec.h │ │ │ │ │ ├── atomic_decl.inc │ │ │ │ │ ├── atomic_inc.h │ │ │ │ │ ├── atomic_max.h │ │ │ │ │ ├── atomic_min.h │ │ │ │ │ ├── atomic_or.h │ │ │ │ │ ├── atomic_sub.h │ │ │ │ │ ├── atomic_xchg.h │ │ │ │ │ └── atomic_xor.h │ │ │ │ ├── cl_khr_global_int32_base_atomics │ │ │ │ │ ├── atom_add.h │ │ │ │ │ ├── atom_cmpxchg.h │ │ │ │ │ ├── atom_dec.h │ │ │ │ │ ├── atom_inc.h │ │ │ │ │ ├── atom_sub.h │ │ │ │ │ └── atom_xchg.h │ │ │ │ ├── cl_khr_global_int32_extended_atomics │ │ │ │ │ ├── atom_and.h │ │ │ │ │ ├── atom_max.h │ │ │ │ │ ├── atom_min.h │ │ │ │ │ ├── atom_or.h │ │ │ │ │ └── atom_xor.h │ │ │ │ ├── cl_khr_local_int32_base_atomics │ │ │ │ │ ├── atom_add.h │ │ │ │ │ ├── atom_cmpxchg.h │ │ │ │ │ ├── atom_dec.h │ │ │ │ │ ├── atom_inc.h │ │ │ │ │ ├── atom_sub.h │ │ │ │ │ └── atom_xchg.h │ │ │ │ ├── cl_khr_local_int32_extended_atomics │ │ │ │ │ ├── atom_and.h │ │ │ │ │ ├── atom_max.h │ │ │ │ │ ├── atom_min.h │ │ │ │ │ ├── atom_or.h │ │ │ │ │ └── atom_xor.h │ │ │ │ ├── clc.h │ │ │ │ ├── clcfunc.h │ │ │ │ ├── clctypes.h │ │ │ │ ├── clcversion.h │ │ │ │ ├── common │ │ │ │ │ ├── degrees.h │ │ │ │ │ ├── degrees.inc │ │ │ │ │ ├── mix.h │ │ │ │ │ ├── mix.inc │ │ │ │ │ ├── radians.h │ │ │ │ │ ├── radians.inc │ │ │ │ │ ├── sign.h │ │ │ │ │ ├── smoothstep.h │ │ │ │ │ ├── smoothstep.inc │ │ │ │ │ ├── step.h │ │ │ │ │ └── step.inc │ │ │ │ ├── convert.h │ │ │ │ ├── float │ │ │ │ │ └── definitions.h │ │ │ │ ├── geometric │ │ │ │ │ ├── cross.h │ │ │ │ │ ├── distance.h │ │ │ │ │ ├── distance.inc │ │ │ │ │ ├── dot.h │ │ │ │ │ ├── dot.inc │ │ │ │ │ ├── fast_distance.h │ │ │ │ │ ├── fast_distance.inc │ │ │ │ │ ├── fast_length.h │ │ │ │ │ ├── fast_length.inc │ │ │ │ │ ├── fast_normalize.h │ │ │ │ │ ├── fast_normalize.inc │ │ │ │ │ ├── floatn.inc │ │ │ │ │ ├── length.h │ │ │ │ │ ├── length.inc │ │ │ │ │ ├── normalize.h │ │ │ │ │ └── normalize.inc │ │ │ │ ├── image │ │ │ │ │ ├── image.h │ │ │ │ │ └── image_defines.h │ │ │ │ ├── integer │ │ │ │ │ ├── abs.h │ │ │ │ │ ├── abs.inc │ │ │ │ │ ├── abs_diff.h │ │ │ │ │ ├── abs_diff.inc │ │ │ │ │ ├── add_sat.h │ │ │ │ │ ├── add_sat.inc │ │ │ │ │ ├── clz.h │ │ │ │ │ ├── clz.inc │ │ │ │ │ ├── definitions.h │ │ │ │ │ ├── gentype.inc │ │ │ │ │ ├── hadd.h │ │ │ │ │ ├── hadd.inc │ │ │ │ │ ├── integer-gentype.inc │ │ │ │ │ ├── mad24.h │ │ │ │ │ ├── mad24.inc │ │ │ │ │ ├── mad_hi.h │ │ │ │ │ ├── mad_sat.h │ │ │ │ │ ├── mad_sat.inc │ │ │ │ │ ├── mul24.h │ │ │ │ │ ├── mul24.inc │ │ │ │ │ ├── mul_hi.h │ │ │ │ │ ├── mul_hi.inc │ │ │ │ │ ├── rhadd.h │ │ │ │ │ ├── rhadd.inc │ │ │ │ │ ├── rotate.h │ │ │ │ │ ├── rotate.inc │ │ │ │ │ ├── sub_sat.h │ │ │ │ │ ├── sub_sat.inc │ │ │ │ │ └── upsample.h │ │ │ │ ├── math │ │ │ │ │ ├── acos.h │ │ │ │ │ ├── acos.inc │ │ │ │ │ ├── acosh.h │ │ │ │ │ ├── acosh.inc │ │ │ │ │ ├── acospi.h │ │ │ │ │ ├── acospi.inc │ │ │ │ │ ├── asin.h │ │ │ │ │ ├── asin.inc │ │ │ │ │ ├── asinh.h │ │ │ │ │ ├── asinh.inc │ │ │ │ │ ├── asinpi.h │ │ │ │ │ ├── asinpi.inc │ │ │ │ │ ├── atan.h │ │ │ │ │ ├── atan.inc │ │ │ │ │ ├── atan2.h │ │ │ │ │ ├── atan2.inc │ │ │ │ │ ├── atan2pi.h │ │ │ │ │ ├── atan2pi.inc │ │ │ │ │ ├── atanh.h │ │ │ │ │ ├── atanh.inc │ │ │ │ │ ├── atanpi.h │ │ │ │ │ ├── atanpi.inc │ │ │ │ │ ├── binary_decl.inc │ │ │ │ │ ├── binary_intrin.inc │ │ │ │ │ ├── ceil.h │ │ │ │ │ ├── clc_nextafter.h │ │ │ │ │ ├── copysign.h │ │ │ │ │ ├── copysign.inc │ │ │ │ │ ├── cos.h │ │ │ │ │ ├── cos.inc │ │ │ │ │ ├── cospi.h │ │ │ │ │ ├── cospi.inc │ │ │ │ │ ├── erf.h │ │ │ │ │ ├── erfc.h │ │ │ │ │ ├── exp.h │ │ │ │ │ ├── exp10.h │ │ │ │ │ ├── exp2.h │ │ │ │ │ ├── exp2.inc │ │ │ │ │ ├── fabs.h │ │ │ │ │ ├── fdim.h │ │ │ │ │ ├── fdim.inc │ │ │ │ │ ├── floor.h │ │ │ │ │ ├── fma.h │ │ │ │ │ ├── fmax.h │ │ │ │ │ ├── fmin.h │ │ │ │ │ ├── fmod.h │ │ │ │ │ ├── fmod.inc │ │ │ │ │ ├── fract.h │ │ │ │ │ ├── fract.inc │ │ │ │ │ ├── frexp.h │ │ │ │ │ ├── frexp.inc │ │ │ │ │ ├── gentype.inc │ │ │ │ │ ├── half_rsqrt.h │ │ │ │ │ ├── half_sqrt.h │ │ │ │ │ ├── hypot.h │ │ │ │ │ ├── hypot.inc │ │ │ │ │ ├── ilogb.h │ │ │ │ │ ├── ilogb.inc │ │ │ │ │ ├── ldexp.h │ │ │ │ │ ├── ldexp.inc │ │ │ │ │ ├── log.h │ │ │ │ │ ├── log.inc │ │ │ │ │ ├── log10.h │ │ │ │ │ ├── log1p.h │ │ │ │ │ ├── log1p.inc │ │ │ │ │ ├── log2.h │ │ │ │ │ ├── log2.inc │ │ │ │ │ ├── mad.h │ │ │ │ │ ├── mad.inc │ │ │ │ │ ├── modf.h │ │ │ │ │ ├── modf.inc │ │ │ │ │ ├── native_cos.h │ │ │ │ │ ├── native_divide.h │ │ │ │ │ ├── native_exp.h │ │ │ │ │ ├── native_exp10.h │ │ │ │ │ ├── native_exp2.h │ │ │ │ │ ├── native_log.h │ │ │ │ │ ├── native_log.inc │ │ │ │ │ ├── native_log2.h │ │ │ │ │ ├── native_log2.inc │ │ │ │ │ ├── native_powr.h │ │ │ │ │ ├── native_sin.h │ │ │ │ │ ├── native_sqrt.h │ │ │ │ │ ├── nextafter.h │ │ │ │ │ ├── pow.h │ │ │ │ │ ├── pown.h │ │ │ │ │ ├── rint.h │ │ │ │ │ ├── round.h │ │ │ │ │ ├── rsqrt.h │ │ │ │ │ ├── sin.h │ │ │ │ │ ├── sin.inc │ │ │ │ │ ├── sincos.h │ │ │ │ │ ├── sincos.inc │ │ │ │ │ ├── sinpi.h │ │ │ │ │ ├── sinpi.inc │ │ │ │ │ ├── sqrt.h │ │ │ │ │ ├── sqrt.inc │ │ │ │ │ ├── tan.h │ │ │ │ │ ├── tan.inc │ │ │ │ │ ├── tanh.h │ │ │ │ │ ├── tanh.inc │ │ │ │ │ ├── ternary_intrin.inc │ │ │ │ │ ├── trunc.h │ │ │ │ │ ├── unary_decl.inc │ │ │ │ │ └── unary_intrin.inc │ │ │ │ ├── relational │ │ │ │ │ ├── all.h │ │ │ │ │ ├── any.h │ │ │ │ │ ├── binary_decl.inc │ │ │ │ │ ├── bitselect.h │ │ │ │ │ ├── bitselect.inc │ │ │ │ │ ├── floatn.inc │ │ │ │ │ ├── isequal.h │ │ │ │ │ ├── isfinite.h │ │ │ │ │ ├── isgreater.h │ │ │ │ │ ├── isgreaterequal.h │ │ │ │ │ ├── isinf.h │ │ │ │ │ ├── isless.h │ │ │ │ │ ├── islessequal.h │ │ │ │ │ ├── islessgreater.h │ │ │ │ │ ├── isnan.h │ │ │ │ │ ├── isnormal.h │ │ │ │ │ ├── isnotequal.h │ │ │ │ │ ├── isordered.h │ │ │ │ │ ├── isunordered.h │ │ │ │ │ ├── select.h │ │ │ │ │ ├── signbit.h │ │ │ │ │ └── unary_decl.inc │ │ │ │ ├── shared │ │ │ │ │ ├── clamp.h │ │ │ │ │ ├── clamp.inc │ │ │ │ │ ├── max.h │ │ │ │ │ ├── max.inc │ │ │ │ │ ├── min.h │ │ │ │ │ ├── min.inc │ │ │ │ │ ├── vload.h │ │ │ │ │ └── vstore.h │ │ │ │ ├── synchronization │ │ │ │ │ ├── barrier.h │ │ │ │ │ └── cl_mem_fence_flags.h │ │ │ │ └── workitem │ │ │ │ │ ├── get_global_id.h │ │ │ │ │ ├── get_global_size.h │ │ │ │ │ ├── get_group_id.h │ │ │ │ │ ├── get_local_id.h │ │ │ │ │ ├── get_local_size.h │ │ │ │ │ ├── get_num_groups.h │ │ │ │ │ └── get_work_dim.h │ │ │ ├── config.h │ │ │ └── math │ │ │ │ ├── clc_ldexp.h │ │ │ │ ├── clc_nextafter.h │ │ │ │ ├── clc_sqrt.h │ │ │ │ └── clc_sqrt.inc │ │ └── lib │ │ │ ├── SOURCES │ │ │ ├── async │ │ │ ├── async_work_group_copy.cl │ │ │ ├── async_work_group_copy.inc │ │ │ ├── async_work_group_strided_copy.cl │ │ │ ├── async_work_group_strided_copy.inc │ │ │ ├── prefetch.cl │ │ │ ├── prefetch.inc │ │ │ └── wait_group_events.cl │ │ │ ├── atomic │ │ │ ├── atomic_impl.ll │ │ │ └── atomic_xchg.cl │ │ │ ├── cl_khr_global_int32_base_atomics │ │ │ ├── atom_add.cl │ │ │ ├── atom_cmpxchg.cl │ │ │ ├── atom_dec.cl │ │ │ ├── atom_inc.cl │ │ │ ├── atom_sub.cl │ │ │ └── atom_xchg.cl │ │ │ ├── cl_khr_global_int32_extended_atomics │ │ │ ├── atom_and.cl │ │ │ ├── atom_max.cl │ │ │ ├── atom_min.cl │ │ │ ├── atom_or.cl │ │ │ └── atom_xor.cl │ │ │ ├── cl_khr_local_int32_base_atomics │ │ │ ├── atom_add.cl │ │ │ ├── atom_cmpxchg.cl │ │ │ ├── atom_dec.cl │ │ │ ├── atom_inc.cl │ │ │ ├── atom_sub.cl │ │ │ └── atom_xchg.cl │ │ │ ├── cl_khr_local_int32_extended_atomics │ │ │ ├── atom_and.cl │ │ │ ├── atom_max.cl │ │ │ ├── atom_min.cl │ │ │ ├── atom_or.cl │ │ │ └── atom_xor.cl │ │ │ ├── clcmacro.h │ │ │ ├── common │ │ │ ├── degrees.cl │ │ │ ├── mix.cl │ │ │ ├── mix.inc │ │ │ ├── radians.cl │ │ │ ├── sign.cl │ │ │ ├── smoothstep.cl │ │ │ └── step.cl │ │ │ ├── convert.cl │ │ │ ├── gen_convert.py │ │ │ ├── geometric │ │ │ ├── cross.cl │ │ │ ├── distance.cl │ │ │ ├── distance.inc │ │ │ ├── dot.cl │ │ │ ├── fast_distance.cl │ │ │ ├── fast_distance.inc │ │ │ ├── fast_length.cl │ │ │ ├── fast_normalize.cl │ │ │ ├── fast_normalize.inc │ │ │ ├── length.cl │ │ │ └── normalize.cl │ │ │ ├── image │ │ │ └── get_image_dim.cl │ │ │ ├── integer │ │ │ ├── abs.cl │ │ │ ├── abs.inc │ │ │ ├── abs_diff.cl │ │ │ ├── abs_diff.inc │ │ │ ├── add_sat.cl │ │ │ ├── add_sat_if.ll │ │ │ ├── add_sat_impl.ll │ │ │ ├── clz.cl │ │ │ ├── clz_if.ll │ │ │ ├── clz_impl.ll │ │ │ ├── hadd.cl │ │ │ ├── hadd.inc │ │ │ ├── mad24.cl │ │ │ ├── mad24.inc │ │ │ ├── mad_sat.cl │ │ │ ├── mul24.cl │ │ │ ├── mul24.inc │ │ │ ├── mul_hi.cl │ │ │ ├── rhadd.cl │ │ │ ├── rhadd.inc │ │ │ ├── rotate.cl │ │ │ ├── rotate.inc │ │ │ ├── sub_sat.cl │ │ │ ├── sub_sat_if.ll │ │ │ ├── sub_sat_impl.ll │ │ │ └── upsample.cl │ │ │ ├── math │ │ │ ├── acos.cl │ │ │ ├── acos.inc │ │ │ ├── acosh.cl │ │ │ ├── acospi.cl │ │ │ ├── asin.cl │ │ │ ├── asin.inc │ │ │ ├── asinh.cl │ │ │ ├── asinpi.cl │ │ │ ├── atan.cl │ │ │ ├── atan2.cl │ │ │ ├── atan2pi.cl │ │ │ ├── atanh.cl │ │ │ ├── atanpi.cl │ │ │ ├── binary_impl.inc │ │ │ ├── clc_ldexp.cl │ │ │ ├── clc_nextafter.cl │ │ │ ├── clc_sqrt.cl │ │ │ ├── clc_sqrt_impl.inc │ │ │ ├── copysign.cl │ │ │ ├── cos.cl │ │ │ ├── cospi.cl │ │ │ ├── ep_log.cl │ │ │ ├── ep_log.h │ │ │ ├── erf.cl │ │ │ ├── erfc.cl │ │ │ ├── exp.cl │ │ │ ├── exp10.cl │ │ │ ├── exp10.inc │ │ │ ├── exp2.cl │ │ │ ├── exp_helper.cl │ │ │ ├── exp_helper.h │ │ │ ├── fdim.cl │ │ │ ├── fdim.inc │ │ │ ├── fmax.cl │ │ │ ├── fmax.inc │ │ │ ├── fmin.cl │ │ │ ├── fmin.inc │ │ │ ├── fmod.cl │ │ │ ├── fract.cl │ │ │ ├── fract.inc │ │ │ ├── frexp.cl │ │ │ ├── frexp.inc │ │ │ ├── half_rsqrt.cl │ │ │ ├── half_rsqrt.inc │ │ │ ├── half_sqrt.cl │ │ │ ├── half_sqrt.inc │ │ │ ├── hypot.cl │ │ │ ├── hypot.inc │ │ │ ├── ilogb.cl │ │ │ ├── ldexp.cl │ │ │ ├── ldexp.inc │ │ │ ├── log.cl │ │ │ ├── log10.cl │ │ │ ├── log10.inc │ │ │ ├── log1p.cl │ │ │ ├── log2.cl │ │ │ ├── log_base.h │ │ │ ├── mad.cl │ │ │ ├── mad.inc │ │ │ ├── math.h │ │ │ ├── modf.cl │ │ │ ├── modf.inc │ │ │ ├── native_log.cl │ │ │ ├── native_log.inc │ │ │ ├── native_log2.cl │ │ │ ├── native_log2.inc │ │ │ ├── nextafter.cl │ │ │ ├── pown.cl │ │ │ ├── sin.cl │ │ │ ├── sincos.cl │ │ │ ├── sincos.inc │ │ │ ├── sincosD_piby4.h │ │ │ ├── sincos_helpers.cl │ │ │ ├── sincos_helpers.h │ │ │ ├── sincospiF_piby4.h │ │ │ ├── sinpi.cl │ │ │ ├── sqrt.cl │ │ │ ├── tables.cl │ │ │ ├── tables.h │ │ │ ├── tan.cl │ │ │ ├── tan.inc │ │ │ └── tanh.cl │ │ │ ├── relational │ │ │ ├── all.cl │ │ │ ├── any.cl │ │ │ ├── bitselect.cl │ │ │ ├── bitselect.inc │ │ │ ├── isequal.cl │ │ │ ├── isfinite.cl │ │ │ ├── isgreater.cl │ │ │ ├── isgreaterequal.cl │ │ │ ├── isinf.cl │ │ │ ├── isless.cl │ │ │ ├── islessequal.cl │ │ │ ├── islessgreater.cl │ │ │ ├── isnan.cl │ │ │ ├── isnormal.cl │ │ │ ├── isnotequal.cl │ │ │ ├── isordered.cl │ │ │ ├── isunordered.cl │ │ │ ├── relational.h │ │ │ └── signbit.cl │ │ │ ├── shared │ │ │ ├── clamp.cl │ │ │ ├── clamp.inc │ │ │ ├── max.cl │ │ │ ├── max.inc │ │ │ ├── min.cl │ │ │ ├── min.inc │ │ │ ├── vload.cl │ │ │ └── vstore.cl │ │ │ ├── subnormal_config.cl │ │ │ ├── subnormal_disable.ll │ │ │ ├── subnormal_helper_func.ll │ │ │ ├── subnormal_use_default.ll │ │ │ └── workitem │ │ │ ├── get_global_id.cl │ │ │ └── get_global_size.cl │ └── utils │ │ └── prepare-builtins.cpp └── libclc_overrides │ ├── README │ ├── include │ └── clc │ │ ├── clc.h │ │ ├── clctypes.h │ │ └── workitem │ │ ├── get_global_id.h │ │ ├── get_group_id.h │ │ ├── get_local_id.h │ │ ├── get_local_size.h │ │ ├── get_num_groups.h │ │ ├── get_reserved_device_mem.h │ │ └── get_work_dim.h │ └── lib │ └── workitem │ ├── get_dispatch_ptr.ll │ ├── get_global_id.cl │ ├── get_global_size.ll │ ├── get_group_id.cl │ ├── get_group_id_ll.ll │ ├── get_local_id.cl │ ├── get_local_id_ll.ll │ ├── get_local_size.cl │ ├── get_local_size_ll.ll │ ├── get_num_groups.cl │ ├── get_num_groups_ll.ll │ ├── get_reserved_device_mem.cl │ ├── get_reserved_device_mem.ll │ ├── get_work_dim.cl │ ├── get_work_dim_ll.ll │ └── overloadables └── packages ├── fedora ├── libatmi-runtime-0.3-3.x86_64.rpm └── mymcpu-0.1-4.noarch.rpm └── ubuntu ├── hlc_3.2-4_amd64.deb ├── libatmi-runtime_0.3-4_amd64.deb └── mymcpu_0.1-4_all.deb /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/README.md -------------------------------------------------------------------------------- /bin/cloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/bin/cloc.sh -------------------------------------------------------------------------------- /bin/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/bin/copyright -------------------------------------------------------------------------------- /bin/intrinsics.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/bin/intrinsics.map -------------------------------------------------------------------------------- /bin/kfd_check_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/bin/kfd_check_installation.sh -------------------------------------------------------------------------------- /bin/mygpu: -------------------------------------------------------------------------------- 1 | mymcpu -------------------------------------------------------------------------------- /bin/mymcpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/bin/mymcpu -------------------------------------------------------------------------------- /bin/printhsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/bin/printhsail -------------------------------------------------------------------------------- /bin/rocm_tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/bin/rocm_tools -------------------------------------------------------------------------------- /bin/snack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/bin/snack.sh -------------------------------------------------------------------------------- /bin/snackhsail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/bin/snackhsail.sh -------------------------------------------------------------------------------- /bin/snk_genw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/bin/snk_genw.sh -------------------------------------------------------------------------------- /bin/snk_genwhsail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/bin/snk_genwhsail.sh -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/hsa/vector_copy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/hsa/vector_copy/Makefile -------------------------------------------------------------------------------- /examples/hsa/vector_copy/obj/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/hsa/vector_copy/obj/.gitignore -------------------------------------------------------------------------------- /examples/hsa/vector_copy/vector_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/hsa/vector_copy/vector_copy.c -------------------------------------------------------------------------------- /examples/hsa/vector_copy/vector_copy.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/hsa/vector_copy/vector_copy.cl -------------------------------------------------------------------------------- /examples/hsa/vector_copy_async/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/hsa/vector_copy_async/Makefile -------------------------------------------------------------------------------- /examples/hsa/vector_copy_async/obj/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/hsa/vector_copy_async/obj/.gitignore -------------------------------------------------------------------------------- /examples/hsa/vector_copy_async/vector_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/hsa/vector_copy_async/vector_copy.c -------------------------------------------------------------------------------- /examples/hsa/vector_copy_async/vector_copy.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/hsa/vector_copy_async/vector_copy.cl -------------------------------------------------------------------------------- /examples/hsa/vector_copy_codeobject_rocm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/hsa/vector_copy_codeobject_rocm/Makefile -------------------------------------------------------------------------------- /examples/hsa/vector_copy_codeobject_rocm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/hsa/vector_copy_codeobject_rocm/README.md -------------------------------------------------------------------------------- /examples/hsa/vector_copy_codeobject_rocm/vector_copy_codeobject.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/hsa/vector_copy_codeobject_rocm/vector_copy_codeobject.cl -------------------------------------------------------------------------------- /examples/hsa/vector_copy_codeobject_rocm/vector_copy_codeobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/hsa/vector_copy_codeobject_rocm/vector_copy_codeobject.cpp -------------------------------------------------------------------------------- /examples/mathdemo_hsaillib/mathdemo_hsaillib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/mathdemo_hsaillib/mathdemo_hsaillib.h -------------------------------------------------------------------------------- /examples/mathdemo_hsaillib/mathdemo_hsaillib.hsail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/mathdemo_hsaillib/mathdemo_hsaillib.hsail -------------------------------------------------------------------------------- /examples/rocm_tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/rocm_tools/README -------------------------------------------------------------------------------- /examples/rocm_tools/ubuntu-carrizo-102015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/rocm_tools/ubuntu-carrizo-102015 -------------------------------------------------------------------------------- /examples/rocm_tools/ubuntu-kaveri-060816: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/rocm_tools/ubuntu-kaveri-060816 -------------------------------------------------------------------------------- /examples/rocm_tools/ubuntu-kaveri-081616: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/rocm_tools/ubuntu-kaveri-081616 -------------------------------------------------------------------------------- /examples/rocm_tools/ubuntu-kaveri-081916: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/rocm_tools/ubuntu-kaveri-081916 -------------------------------------------------------------------------------- /examples/rocm_tools/ubuntu-kaveri-090215: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/rocm_tools/ubuntu-kaveri-090215 -------------------------------------------------------------------------------- /examples/rocm_tools/ubuntu-kaveri-092415: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/rocm_tools/ubuntu-kaveri-092415 -------------------------------------------------------------------------------- /examples/rocm_tools/ubuntu-kaveri-101615: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/rocm_tools/ubuntu-kaveri-101615 -------------------------------------------------------------------------------- /examples/rocm_tools/ubuntu-kaveri-102015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/rocm_tools/ubuntu-kaveri-102015 -------------------------------------------------------------------------------- /examples/snack/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/README -------------------------------------------------------------------------------- /examples/snack/async_vecsum/buildrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/async_vecsum/buildrun.sh -------------------------------------------------------------------------------- /examples/snack/async_vecsum/sumKernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/async_vecsum/sumKernel.cl -------------------------------------------------------------------------------- /examples/snack/async_vecsum/vecsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/async_vecsum/vecsum.cpp -------------------------------------------------------------------------------- /examples/snack/csquares/CSquares.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/csquares/CSquares.cl -------------------------------------------------------------------------------- /examples/snack/csquares/CSquares.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/csquares/CSquares.cpp -------------------------------------------------------------------------------- /examples/snack/csquares/buildrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/csquares/buildrun.sh -------------------------------------------------------------------------------- /examples/snack/fortran/HelloWorld.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/fortran/HelloWorld.f -------------------------------------------------------------------------------- /examples/snack/fortran/buildrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/fortran/buildrun.sh -------------------------------------------------------------------------------- /examples/snack/fortran/hw.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/fortran/hw.cl -------------------------------------------------------------------------------- /examples/snack/helloworld/HelloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/helloworld/HelloWorld.c -------------------------------------------------------------------------------- /examples/snack/helloworld/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/helloworld/HelloWorld.cpp -------------------------------------------------------------------------------- /examples/snack/helloworld/HelloWorld.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/helloworld/HelloWorld.f -------------------------------------------------------------------------------- /examples/snack/helloworld/buildrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/helloworld/buildrun.sh -------------------------------------------------------------------------------- /examples/snack/helloworld/hw.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/helloworld/hw.cl -------------------------------------------------------------------------------- /examples/snack/matmul/buildrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/matmul/buildrun.sh -------------------------------------------------------------------------------- /examples/snack/matmul/matmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/matmul/matmul.c -------------------------------------------------------------------------------- /examples/snack/matmul/matmul.h: -------------------------------------------------------------------------------- 1 | #define BLOCK_SIZE 16 2 | -------------------------------------------------------------------------------- /examples/snack/matmul/matmulKernels.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/matmul/matmulKernels.cl -------------------------------------------------------------------------------- /examples/snack/multiple_cl_files/HelloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/multiple_cl_files/HelloWorld.c -------------------------------------------------------------------------------- /examples/snack/multiple_cl_files/buildrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/multiple_cl_files/buildrun.sh -------------------------------------------------------------------------------- /examples/snack/multiple_cl_files/hw.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/multiple_cl_files/hw.cl -------------------------------------------------------------------------------- /examples/snack/multiple_cl_files/hw2.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/multiple_cl_files/hw2.cl -------------------------------------------------------------------------------- /examples/snack/test_hsail_lib/buildrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/test_hsail_lib/buildrun.sh -------------------------------------------------------------------------------- /examples/snack/test_hsail_lib/test_hsail_lib.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/test_hsail_lib/test_hsail_lib.cl -------------------------------------------------------------------------------- /examples/snack/test_hsail_lib/test_hsail_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/test_hsail_lib/test_hsail_lib.cpp -------------------------------------------------------------------------------- /examples/snack/vector_copy/VectorCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/vector_copy/VectorCopy.cpp -------------------------------------------------------------------------------- /examples/snack/vector_copy/buildrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/vector_copy/buildrun.sh -------------------------------------------------------------------------------- /examples/snack/vector_copy/vector_copy.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/examples/snack/vector_copy/vector_copy.cl -------------------------------------------------------------------------------- /libamdgcn/.old_make_method/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/.old_make_method/Makefile -------------------------------------------------------------------------------- /libamdgcn/.old_make_method/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/.old_make_method/SOURCES -------------------------------------------------------------------------------- /libamdgcn/.old_make_method/create_makefile_include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/.old_make_method/create_makefile_include.sh -------------------------------------------------------------------------------- /libamdgcn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/CMakeLists.txt -------------------------------------------------------------------------------- /libamdgcn/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/README -------------------------------------------------------------------------------- /libamdgcn/README-rsync_libclc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/README-rsync_libclc.sh -------------------------------------------------------------------------------- /libamdgcn/libclc/CREDITS.TXT: -------------------------------------------------------------------------------- 1 | N: Peter Collingbourne 2 | E: peter@pcc.me.uk 3 | -------------------------------------------------------------------------------- /libamdgcn/libclc/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/LICENSE.TXT -------------------------------------------------------------------------------- /libamdgcn/libclc/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/README.TXT -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgcn/lib/OVERRIDES: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgcn/lib/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgcn/lib/SOURCES -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgcn/lib/synchronization/barrier_impl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgcn/lib/synchronization/barrier_impl.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgcn/lib/workitem/get_group_id.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgcn/lib/workitem/get_group_id.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgcn/lib/workitem/get_local_id.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgcn/lib/workitem/get_local_id.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/OVERRIDES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/OVERRIDES -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/SOURCES -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/atomic/atomic.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/atomic/atomic.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/get_image_attributes_impl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/get_image_attributes_impl.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/get_image_channel_data_type.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/get_image_channel_data_type.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/get_image_channel_order.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/get_image_channel_order.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/get_image_depth.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/get_image_depth.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/get_image_height.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/get_image_height.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/get_image_width.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/get_image_width.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/read_image_impl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/read_image_impl.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/read_imagef.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/read_imagef.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/read_imagei.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/read_imagei.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/read_imageui.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/read_imageui.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/write_image_impl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/write_image_impl.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/write_imagef.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/write_imagef.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/write_imagei.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/write_imagei.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/image/write_imageui.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/image/write_imageui.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/math/ldexp.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/math/ldexp.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/math/nextafter.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/math/nextafter.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/math/sqrt.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/math/sqrt.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/synchronization/barrier.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/synchronization/barrier.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/workitem/get_global_size.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/workitem/get_global_size.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/workitem/get_local_size.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/workitem/get_local_size.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/workitem/get_num_groups.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/workitem/get_num_groups.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/amdgpu/lib/workitem/get_work_dim.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/amdgpu/lib/workitem/get_work_dim.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/as_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/as_type.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/async/async_work_group_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/async/async_work_group_copy.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/async/async_work_group_copy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/async/async_work_group_copy.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/async/async_work_group_strided_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/async/async_work_group_strided_copy.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/async/async_work_group_strided_copy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/async/async_work_group_strided_copy.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/async/gentype.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/async/gentype.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/async/prefetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/async/prefetch.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/async/prefetch.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/async/prefetch.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/async/wait_group_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/async/wait_group_events.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/atomic/atomic_add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/atomic/atomic_add.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/atomic/atomic_and.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/atomic/atomic_and.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/atomic/atomic_cmpxchg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/atomic/atomic_cmpxchg.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/atomic/atomic_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/atomic/atomic_dec.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/atomic/atomic_decl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/atomic/atomic_decl.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/atomic/atomic_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/atomic/atomic_inc.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/atomic/atomic_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/atomic/atomic_max.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/atomic/atomic_min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/atomic/atomic_min.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/atomic/atomic_or.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/atomic/atomic_or.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/atomic/atomic_sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/atomic/atomic_sub.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/atomic/atomic_xchg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/atomic/atomic_xchg.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/atomic/atomic_xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/atomic/atomic_xor.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_base_atomics/atom_add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_base_atomics/atom_add.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_base_atomics/atom_cmpxchg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_base_atomics/atom_cmpxchg.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_base_atomics/atom_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_base_atomics/atom_dec.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_base_atomics/atom_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_base_atomics/atom_inc.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_base_atomics/atom_sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_base_atomics/atom_sub.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_base_atomics/atom_xchg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_base_atomics/atom_xchg.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_extended_atomics/atom_and.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_extended_atomics/atom_and.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_extended_atomics/atom_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_extended_atomics/atom_max.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_extended_atomics/atom_min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_extended_atomics/atom_min.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_extended_atomics/atom_or.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_extended_atomics/atom_or.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_extended_atomics/atom_xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_global_int32_extended_atomics/atom_xor.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_base_atomics/atom_add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_base_atomics/atom_add.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_base_atomics/atom_cmpxchg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_base_atomics/atom_cmpxchg.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_base_atomics/atom_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_base_atomics/atom_dec.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_base_atomics/atom_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_base_atomics/atom_inc.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_base_atomics/atom_sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_base_atomics/atom_sub.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_base_atomics/atom_xchg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_base_atomics/atom_xchg.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_extended_atomics/atom_and.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_extended_atomics/atom_and.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_extended_atomics/atom_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_extended_atomics/atom_max.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_extended_atomics/atom_min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_extended_atomics/atom_min.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_extended_atomics/atom_or.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_extended_atomics/atom_or.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_extended_atomics/atom_xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/cl_khr_local_int32_extended_atomics/atom_xor.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/clc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/clc.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/clcfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/clcfunc.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/clctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/clctypes.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/clcversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/clcversion.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/common/degrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/common/degrees.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/common/degrees.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/common/degrees.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/common/mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/common/mix.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/common/mix.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/common/mix.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/common/radians.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/common/radians.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/common/radians.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/common/radians.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/common/sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/common/sign.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/common/smoothstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/common/smoothstep.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/common/smoothstep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/common/smoothstep.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/common/step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/common/step.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/common/step.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/common/step.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/convert.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/float/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/float/definitions.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/cross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/cross.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/distance.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/distance.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/distance.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/dot.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/dot.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/dot.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/fast_distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/fast_distance.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/fast_distance.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/fast_distance.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/fast_length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/fast_length.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/fast_length.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/fast_length.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/fast_normalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/fast_normalize.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/fast_normalize.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/fast_normalize.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/floatn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/floatn.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/length.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/length.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/length.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/normalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/normalize.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/geometric/normalize.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/geometric/normalize.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/image/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/image/image.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/image/image_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/image/image_defines.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/abs.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/abs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/abs.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/abs_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/abs_diff.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/abs_diff.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/abs_diff.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/add_sat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/add_sat.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/add_sat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/add_sat.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/clz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/clz.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/clz.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/clz.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/definitions.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/gentype.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/gentype.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/hadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/hadd.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/hadd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/hadd.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/integer-gentype.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/integer-gentype.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/mad24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/mad24.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/mad24.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/mad24.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/mad_hi.h: -------------------------------------------------------------------------------- 1 | #define mad_hi(a, b, c) (mul_hi((a),(b))+(c)) 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/mad_sat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/mad_sat.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/mad_sat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/mad_sat.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/mul24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/mul24.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/mul24.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/mul24.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/mul_hi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/mul_hi.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/mul_hi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/mul_hi.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/rhadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/rhadd.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/rhadd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/rhadd.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/rotate.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/rotate.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/rotate.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/sub_sat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/sub_sat.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/sub_sat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/sub_sat.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/integer/upsample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/integer/upsample.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/acos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/acos.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/acos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/acos.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/acosh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/acosh.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/acosh.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/acosh.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/acospi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/acospi.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/acospi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/acospi.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/asin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/asin.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/asin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/asin.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/asinh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/asinh.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/asinh.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/asinh.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/asinpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/asinpi.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/asinpi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/asinpi.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/atan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/atan.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/atan.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/atan.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/atan2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/atan2.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/atan2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/atan2.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/atan2pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/atan2pi.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/atan2pi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/atan2pi.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/atanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/atanh.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/atanh.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/atanh.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/atanpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/atanpi.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/atanpi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/atanpi.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/binary_decl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/binary_decl.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/binary_intrin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/binary_intrin.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/ceil.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/clc_nextafter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/clc_nextafter.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/copysign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/copysign.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/copysign.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/copysign.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/cos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/cos.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/cos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/cos.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/cospi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/cospi.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/cospi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/cospi.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/erf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/erf.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/erfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/erfc.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/exp.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/exp10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/exp10.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/exp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/exp2.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/exp2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/exp2.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/fabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/fabs.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/fdim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/fdim.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/fdim.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/fdim.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/floor.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/fma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/fma.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/fmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/fmax.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/fmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/fmin.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/fmod.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/fmod.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/fmod.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/fract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/fract.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/fract.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/fract.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/frexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/frexp.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/frexp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/frexp.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/gentype.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/gentype.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/half_rsqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/half_rsqrt.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/half_sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/half_sqrt.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/hypot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/hypot.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/hypot.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/hypot.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/ilogb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/ilogb.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/ilogb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/ilogb.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/ldexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/ldexp.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/ldexp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/ldexp.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/log.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/log.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/log.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/log10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/log10.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/log1p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/log1p.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/log1p.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/log1p.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/log2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/log2.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/log2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/log2.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/mad.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/mad.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/mad.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/modf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/modf.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/modf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/modf.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/native_cos.h: -------------------------------------------------------------------------------- 1 | #define native_cos cos 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/native_divide.h: -------------------------------------------------------------------------------- 1 | #define native_divide(x, y) ((x) / (y)) 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/native_exp.h: -------------------------------------------------------------------------------- 1 | #define native_exp exp 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/native_exp10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/native_exp10.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/native_exp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/native_exp2.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/native_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/native_log.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/native_log.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/native_log.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/native_log2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/native_log2.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/native_log2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/native_log2.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/native_powr.h: -------------------------------------------------------------------------------- 1 | #define native_powr pow 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/native_sin.h: -------------------------------------------------------------------------------- 1 | #define native_sin sin 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/native_sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/native_sqrt.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/nextafter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/nextafter.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/pow.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/pown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/pown.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/rint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/rint.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/round.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/rsqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/rsqrt.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/sin.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/sin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/sin.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/sincos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/sincos.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/sincos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/sincos.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/sinpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/sinpi.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/sinpi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/sinpi.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/sqrt.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/sqrt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/sqrt.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/tan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/tan.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/tan.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/tan.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/tanh.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/tanh.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/tanh.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/ternary_intrin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/ternary_intrin.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/trunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/trunc.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/unary_decl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/unary_decl.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/math/unary_intrin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/math/unary_intrin.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/all.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/any.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/binary_decl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/binary_decl.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/bitselect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/bitselect.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/bitselect.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/bitselect.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/floatn.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/floatn.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/isequal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/isequal.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/isfinite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/isfinite.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/isgreater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/isgreater.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/isgreaterequal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/isgreaterequal.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/isinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/isinf.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/isless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/isless.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/islessequal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/islessequal.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/islessgreater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/islessgreater.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/isnan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/isnan.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/isnormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/isnormal.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/isnotequal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/isnotequal.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/isordered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/isordered.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/isunordered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/isunordered.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/select.h: -------------------------------------------------------------------------------- 1 | #define select(a, b, c) ((c) ? (b) : (a)) 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/signbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/signbit.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/relational/unary_decl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/relational/unary_decl.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/shared/clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/shared/clamp.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/shared/clamp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/shared/clamp.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/shared/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/shared/max.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/shared/max.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/shared/max.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/shared/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/shared/min.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/shared/min.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/shared/min.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/shared/vload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/shared/vload.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/shared/vstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/shared/vstore.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/synchronization/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/synchronization/barrier.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/synchronization/cl_mem_fence_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/clc/synchronization/cl_mem_fence_flags.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/workitem/get_global_id.h: -------------------------------------------------------------------------------- 1 | _CLC_DECL size_t get_global_id(uint dim); 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/workitem/get_global_size.h: -------------------------------------------------------------------------------- 1 | _CLC_DECL size_t get_global_size(uint dim); 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/workitem/get_group_id.h: -------------------------------------------------------------------------------- 1 | _CLC_DECL size_t get_group_id(uint dim); 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/workitem/get_local_id.h: -------------------------------------------------------------------------------- 1 | _CLC_DECL size_t get_local_id(uint dim); 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/workitem/get_local_size.h: -------------------------------------------------------------------------------- 1 | _CLC_DECL size_t get_local_size(uint dim); 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/workitem/get_num_groups.h: -------------------------------------------------------------------------------- 1 | _CLC_DECL size_t get_num_groups(uint dim); 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/clc/workitem/get_work_dim.h: -------------------------------------------------------------------------------- 1 | _CLC_DECL uint get_work_dim(); 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/config.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/math/clc_ldexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/math/clc_ldexp.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/math/clc_nextafter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/math/clc_nextafter.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/math/clc_sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/math/clc_sqrt.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/include/math/clc_sqrt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/include/math/clc_sqrt.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/SOURCES -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/async/async_work_group_copy.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/async/async_work_group_copy.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/async/async_work_group_copy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/async/async_work_group_copy.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/async/async_work_group_strided_copy.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/async/async_work_group_strided_copy.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/async/async_work_group_strided_copy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/async/async_work_group_strided_copy.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/async/prefetch.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/async/prefetch.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/async/prefetch.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/async/prefetch.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/async/wait_group_events.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/async/wait_group_events.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/atomic/atomic_impl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/atomic/atomic_impl.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/atomic/atomic_xchg.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/atomic/atomic_xchg.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_global_int32_base_atomics/atom_add.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_global_int32_base_atomics/atom_add.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_global_int32_base_atomics/atom_cmpxchg.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_global_int32_base_atomics/atom_cmpxchg.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_global_int32_base_atomics/atom_dec.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_global_int32_base_atomics/atom_dec.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_global_int32_base_atomics/atom_inc.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_global_int32_base_atomics/atom_inc.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_global_int32_base_atomics/atom_sub.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_global_int32_base_atomics/atom_sub.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_global_int32_base_atomics/atom_xchg.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_global_int32_base_atomics/atom_xchg.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_global_int32_extended_atomics/atom_and.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_global_int32_extended_atomics/atom_and.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_global_int32_extended_atomics/atom_max.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_global_int32_extended_atomics/atom_max.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_global_int32_extended_atomics/atom_min.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_global_int32_extended_atomics/atom_min.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_global_int32_extended_atomics/atom_or.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_global_int32_extended_atomics/atom_or.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_global_int32_extended_atomics/atom_xor.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_global_int32_extended_atomics/atom_xor.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_local_int32_base_atomics/atom_add.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_local_int32_base_atomics/atom_add.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_local_int32_base_atomics/atom_cmpxchg.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_local_int32_base_atomics/atom_cmpxchg.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_local_int32_base_atomics/atom_dec.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_local_int32_base_atomics/atom_dec.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_local_int32_base_atomics/atom_inc.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_local_int32_base_atomics/atom_inc.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_local_int32_base_atomics/atom_sub.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_local_int32_base_atomics/atom_sub.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_local_int32_base_atomics/atom_xchg.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_local_int32_base_atomics/atom_xchg.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_local_int32_extended_atomics/atom_and.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_local_int32_extended_atomics/atom_and.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_local_int32_extended_atomics/atom_max.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_local_int32_extended_atomics/atom_max.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_local_int32_extended_atomics/atom_min.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_local_int32_extended_atomics/atom_min.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_local_int32_extended_atomics/atom_or.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_local_int32_extended_atomics/atom_or.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/cl_khr_local_int32_extended_atomics/atom_xor.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/cl_khr_local_int32_extended_atomics/atom_xor.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/clcmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/clcmacro.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/common/degrees.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/common/degrees.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/common/mix.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/common/mix.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/common/mix.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/common/mix.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/common/radians.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/common/radians.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/common/sign.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/common/sign.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/common/smoothstep.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/common/smoothstep.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/common/step.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/common/step.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/convert.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/convert.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/gen_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/gen_convert.py -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/geometric/cross.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/geometric/cross.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/geometric/distance.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/geometric/distance.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/geometric/distance.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/geometric/distance.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/geometric/dot.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/geometric/dot.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/geometric/fast_distance.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/geometric/fast_distance.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/geometric/fast_distance.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/geometric/fast_distance.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/geometric/fast_length.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/geometric/fast_length.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/geometric/fast_normalize.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/geometric/fast_normalize.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/geometric/fast_normalize.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/geometric/fast_normalize.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/geometric/length.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/geometric/length.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/geometric/normalize.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/geometric/normalize.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/image/get_image_dim.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/image/get_image_dim.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/abs.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/abs.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/abs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/abs.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/abs_diff.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/abs_diff.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/abs_diff.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/abs_diff.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/add_sat.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/add_sat.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/add_sat_if.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/add_sat_if.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/add_sat_impl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/add_sat_impl.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/clz.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/clz.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/clz_if.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/clz_if.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/clz_impl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/clz_impl.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/hadd.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/hadd.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/hadd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/hadd.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/mad24.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/mad24.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/mad24.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/mad24.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/mad_sat.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/mad_sat.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/mul24.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/mul24.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/mul24.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/mul24.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/mul_hi.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/mul_hi.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/rhadd.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/rhadd.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/rhadd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/rhadd.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/rotate.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/rotate.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/rotate.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/rotate.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/sub_sat.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/sub_sat.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/sub_sat_if.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/sub_sat_if.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/sub_sat_impl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/sub_sat_impl.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/integer/upsample.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/integer/upsample.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/acos.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/acos.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/acos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/acos.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/acosh.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/acosh.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/acospi.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/acospi.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/asin.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/asin.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/asin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/asin.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/asinh.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/asinh.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/asinpi.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/asinpi.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/atan.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/atan.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/atan2.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/atan2.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/atan2pi.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/atan2pi.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/atanh.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/atanh.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/atanpi.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/atanpi.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/binary_impl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/binary_impl.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/clc_ldexp.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/clc_ldexp.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/clc_nextafter.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/clc_nextafter.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/clc_sqrt.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/clc_sqrt.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/clc_sqrt_impl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/clc_sqrt_impl.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/copysign.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/copysign.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/cos.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/cos.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/cospi.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/cospi.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/ep_log.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/ep_log.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/ep_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/ep_log.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/erf.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/erf.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/erfc.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/erfc.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/exp.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/exp.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/exp10.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/exp10.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/exp10.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/exp10.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/exp2.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/exp2.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/exp_helper.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/exp_helper.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/exp_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/exp_helper.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/fdim.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/fdim.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/fdim.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/fdim.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/fmax.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/fmax.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/fmax.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/fmax.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/fmin.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/fmin.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/fmin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/fmin.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/fmod.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/fmod.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/fract.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/fract.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/fract.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/fract.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/frexp.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/frexp.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/frexp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/frexp.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/half_rsqrt.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/half_rsqrt.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/half_rsqrt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/half_rsqrt.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/half_sqrt.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/half_sqrt.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/half_sqrt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/half_sqrt.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/hypot.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/hypot.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/hypot.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/hypot.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/ilogb.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/ilogb.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/ldexp.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/ldexp.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/ldexp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/ldexp.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/log.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/log.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/log10.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/log10.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/log10.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/log10.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/log1p.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/log1p.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/log2.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/log2.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/log_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/log_base.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/mad.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/mad.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/mad.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/mad.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/math.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/modf.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/modf.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/modf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/modf.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/native_log.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/native_log.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/native_log.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/native_log.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/native_log2.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/native_log2.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/native_log2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/native_log2.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/nextafter.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/nextafter.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/pown.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/pown.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/sin.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/sin.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/sincos.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/sincos.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/sincos.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/sincos.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/sincosD_piby4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/sincosD_piby4.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/sincos_helpers.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/sincos_helpers.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/sincos_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/sincos_helpers.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/sincospiF_piby4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/sincospiF_piby4.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/sinpi.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/sinpi.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/sqrt.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/sqrt.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/tables.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/tables.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/tables.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/tan.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/tan.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/tan.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/tan.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/math/tanh.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/math/tanh.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/all.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/all.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/any.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/any.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/bitselect.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/bitselect.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/bitselect.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/bitselect.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/isequal.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/isequal.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/isfinite.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/isfinite.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/isgreater.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/isgreater.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/isgreaterequal.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/isgreaterequal.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/isinf.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/isinf.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/isless.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/isless.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/islessequal.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/islessequal.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/islessgreater.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/islessgreater.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/isnan.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/isnan.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/isnormal.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/isnormal.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/isnotequal.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/isnotequal.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/isordered.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/isordered.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/isunordered.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/isunordered.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/relational.h -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/relational/signbit.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/relational/signbit.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/shared/clamp.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/shared/clamp.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/shared/clamp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/shared/clamp.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/shared/max.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/shared/max.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/shared/max.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/shared/max.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/shared/min.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/shared/min.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/shared/min.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/shared/min.inc -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/shared/vload.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/shared/vload.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/shared/vstore.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/shared/vstore.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/subnormal_config.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/subnormal_config.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/subnormal_disable.ll: -------------------------------------------------------------------------------- 1 | @__CLC_SUBNORMAL_DISABLE = unnamed_addr constant i1 true 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/subnormal_helper_func.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/subnormal_helper_func.ll -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/subnormal_use_default.ll: -------------------------------------------------------------------------------- 1 | @__CLC_SUBNORMAL_DISABLE = unnamed_addr constant i1 false 2 | -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/workitem/get_global_id.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/workitem/get_global_id.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/generic/lib/workitem/get_global_size.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/generic/lib/workitem/get_global_size.cl -------------------------------------------------------------------------------- /libamdgcn/libclc/utils/prepare-builtins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc/utils/prepare-builtins.cpp -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/README -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/include/clc/clc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/include/clc/clc.h -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/include/clc/clctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/include/clc/clctypes.h -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/include/clc/workitem/get_global_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/include/clc/workitem/get_global_id.h -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/include/clc/workitem/get_group_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/include/clc/workitem/get_group_id.h -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/include/clc/workitem/get_local_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/include/clc/workitem/get_local_id.h -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/include/clc/workitem/get_local_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/include/clc/workitem/get_local_size.h -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/include/clc/workitem/get_num_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/include/clc/workitem/get_num_groups.h -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/include/clc/workitem/get_reserved_device_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/include/clc/workitem/get_reserved_device_mem.h -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/include/clc/workitem/get_work_dim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/include/clc/workitem/get_work_dim.h -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_dispatch_ptr.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_dispatch_ptr.ll -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_global_id.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_global_id.cl -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_global_size.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_global_size.ll -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_group_id.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_group_id.cl -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_group_id_ll.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_group_id_ll.ll -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_local_id.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_local_id.cl -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_local_id_ll.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_local_id_ll.ll -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_local_size.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_local_size.cl -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_local_size_ll.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_local_size_ll.ll -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_num_groups.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_num_groups.cl -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_num_groups_ll.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_num_groups_ll.ll -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_reserved_device_mem.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_reserved_device_mem.cl -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_reserved_device_mem.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_reserved_device_mem.ll -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_work_dim.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_work_dim.cl -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/get_work_dim_ll.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/get_work_dim_ll.ll -------------------------------------------------------------------------------- /libamdgcn/libclc_overrides/lib/workitem/overloadables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/libamdgcn/libclc_overrides/lib/workitem/overloadables -------------------------------------------------------------------------------- /packages/fedora/libatmi-runtime-0.3-3.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/packages/fedora/libatmi-runtime-0.3-3.x86_64.rpm -------------------------------------------------------------------------------- /packages/fedora/mymcpu-0.1-4.noarch.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/packages/fedora/mymcpu-0.1-4.noarch.rpm -------------------------------------------------------------------------------- /packages/ubuntu/hlc_3.2-4_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/packages/ubuntu/hlc_3.2-4_amd64.deb -------------------------------------------------------------------------------- /packages/ubuntu/libatmi-runtime_0.3-4_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/packages/ubuntu/libatmi-runtime_0.3-4_amd64.deb -------------------------------------------------------------------------------- /packages/ubuntu/mymcpu_0.1-4_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HSAFoundation/CLOC/HEAD/packages/ubuntu/mymcpu_0.1-4_all.deb --------------------------------------------------------------------------------