Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

libclc-0.2.0+git.20180915-lp152.2.4 RPM for ppc64le

From OpenSuSE Ports Leap 15.2 for ppc64le

Name: libclc Distribution: openSUSE:Leap:15.2:PowerPC / ports
Version: 0.2.0+git.20180915 Vendor: openSUSE
Release: lp152.2.4 Build date: Sat May 30 04:02:46 2020
Group: Development/Libraries/C and C++ Build host: obs-power8-05
Size: 59549901 Source RPM: libclc-0.2.0+git.20180915-lp152.2.4.src.rpm
Packager: https://bugs.opensuse.org
Url: http://libclc.llvm.org/
Summary: OpenCL C programming language library
Library requirements of the OpenCL C programming language.

Provides

Requires

License

BSD-3-Clause OR MIT

Changelog

* Fri Oct 12 2018 jimmy@boombatower.com
  - Update to version 0.2.0+git.20180915:
    * configure: Rework support for gfx9+ devices that were added post LLVM 3.9
    * .travis: Add llvm-7 build
    * .travis: Use source whitelist alias for llvm-6 repository
    * amdgcn: Use __constant AS for amdgcn builtins.
    * atom: Use volatile pointers for cl_khr_{global,local}_int32_{base,extended}_atomics
    * atom: Consolidate cl_khr_{local,global}_int32_{base,extended}_atomics implementation
    * atomic: Provide function implementation of atomic_{dec,inc}
    * atom: Consolidate cl_khr_int64_{base,extended}_atomics declarations
    * atom: Consolidate cl_khr_{local,global}_int32_{base,extended}_atomics declarations
    * atomic: Cleanup atomic_cmpxchg header
    * atomic: Move define cleanup to shared include
    * Update copyright year to 2018.
    * r600/fmin: Flush denormals before calling builtin.
    * r600/fmax: Flush denormals before calling builtin.
    * math/fma: Add fp32 software implementation
    * Add initial support for half precision builtins
    * rootn: Use denormal path only
    * remquo: Flush denormals if not supported
    * remquo: Port from amd builtins
    * math: Add helper function to flush denormals if not supported.
    * clc_sqrt: Reuse unary_decl.inc
    * relational/select: Condition types for half are short/ushort, not char/uchar
    * log10: Use sw implementation from amd builtins
    * powr: Use denormal path only
    * pown: Use denormal path only
    * pow: Use denormal path only
    * amdgcn/fmin: Fix typos that reduced precision
    * exp10: Port from amd builtins
    * hypot: Port from amd builtins
    * select: simplify implementation and fix fp16
    * fmod: Port from amd_builtins
    * r600: Update datalayout after LLVM r328656
    * amdgcn: Update datalayout after LLVM r328656
    * remainder: Port from amd builtins
    * nan: Implement
    * travis: Add build using llvm-6
    * amdgcn/fmax: fcanonicalize operands
    * amdgcn/fmin: fcanonicalize operands
    * amdgcn,popcount: Workaround broken llvm.ctpop intrinsic on some GCN ASICs
    * integer/gentype: Add __CLC_VECSIZE macro
    * popcount: Provide function implementation rather than intrinsic redirect
    * lgamma_r: Move code from .inc to .cl file
    * frexp: Reuse types provided by gentype.inc
    * select: Add vector implementation
    * minmag: Condition variable needs to be the same bitwidth as operands
    * maxmag: Condition variable needs to be the same bitwidth as operands
    * Move cl_khr_fp64 exntension enablement to gentype include lists
    * utils: Adapt to llvm r325155
    * amdgcn: Fix build after GDS/const AS swap in r325030
    * amdgcn: Fix datalayout after addition of 32bit const AS in r324747
    * r600: Fix datalayout after clang r324101
    * amdgcn: Fix datalayout after clang r324101
    * amdgpu/half_recip: Switch implementation to native_recip
    * amdgpu/half_log2: Switch implementation to native_log2
    * amdgpu/half_log10: Switch implementation to native_log10
    * amdgpu/half_log: Switch implementation to native_log
    * amdgpu/half_exp2: Switch implementation to native_exp2
    * amdgpu/half_exp10: Switch implementation to native_exp10
    * amdgpu/half_exp: Switch implementation to native_exp
    * amdgpu/half_sqrt: Switch implementation to native_sqrt
    * amdgpu/half_rsqrt: Switch implementation to native_rsqrt
    * Add vstore_half_rte implementation
    * Add vstore_half_rtp implementation
    * Add vstore_half_rtn implementation
    * Add vstore_half_rtz implementation
    * vstore_half: Consolidate declarations
    * vstore_half: Add support for custom rounding functions
    * vstore_half: Make sure the helper function is always inline
    * half_powr: Implement using powr
    * math.h: Use logical operations instead of bit operations for readability
    * math.h: Set HAVE_HW_FMA32 based on compiler provided macro
    * tanpi: Port from amd_builtins
    * tan: Port from amd_builtins
    * half_divide: Implement using x/y
    * half_tan: Implement using tan
    * half_sin: Implement using sin
    * half_recip: Implement using 1/x
    * half_log2: Implement using log2
    * half_log10: Implement using log10
    * half_log: Implement using log
    * half_exp10: Implement using exp10
    * half_exp2: Implement using exp2
    * half_exp: Implement using exp
    * half_cos: Implement using cos
    * half_sqrt: Cleanup implementation
    * half_rsqrt: Cleanup implementation
    * rootn: Port from amd_builtins
    * powr: Port from amd_builtins
    * pown: Port from amd_builtins
    * pow: Port from amd_builtins
* Sat Dec 23 2017 mpluskal@suse.com
  - Update to version 0.2.0+git.20171127:
    * configure.py: Add gfx900 (Vega, Raven)
    * math: Implement minmag
    * math: Implement maxmag
    * native_powr: Switch implementation to native_exp2 and native_log2
    * native_divide: provide function implementation instead of macro
    * native_recip: provide function implementation instead of macro
    * native_rsqrt: Switch implementation to 1 / native_sqrt
    * native_tan: Switch implementation to use native_sin/native_cos
    * math: Use precomputed constant for log2(10.0)
    * native_exp10: Switch implementation to llvm intrinsic
    * native_sqrt: Switch implementation to llvm intrinsic
    * native_sin: Switch implementation to llvm intrinsic
    * native_cos: Switch implementation to llvm intrinsic
    * native_exp2: Switch implementation to llvm intrinsic
    * native_exp: Switch implementation to llvm intrinsic
    * amdgpu: Add workaround for unimplemented llvm.exp intrinsic
    * native_log10: Switch to generic native intrinsic inc file
    * native_log: Switch to generic native intrinsic inc file
    * native_log2: Switch to generic native intrinsic inc file
* Tue Nov 07 2017 mpluskal@suse.com
  - Update to version 0.2.0+git.20171102:
    * tgamma: Use unary_decl instead of custom inc file
    * tanh: Use unary_decl instead of custom inc file
    * tan: Use unary_decl instead of custom inc file
    * sqrt: Use unary_decl instead of custom inc file
    * sinpi: Use unary_decl instead of custom inc file
    * sinh: Use unary_decl instead of custom inc file
    * sin: Use unary_decl instead of custom inc file
    * native_log: Use unary_decl instead of custom inc file
    * native_log2: Use unary_decl instead of custom inc file
    * native_log10: Use unary_decl instead of custom inc file
    * log: Use unary_decl instead of custom inc file
    * logb: Use unary_decl instead of custom inc file
    * log2: Use unary_decl instead of custom inc file
    * log1p: Use unary_decl instead of custom inc file
    * lgamma: Use unary_decl instead of custom inc file
    * exp2: Use unary_decl instead of custom inc file
    * cospi: Use unary_decl instead of custom inc file
    * cosh: Use unary_decl instead of custom inc file
    * cos: Use unary_decl instead of custom inc file
    * cbrt: Use unary_decl instead of custom inc file
    * atanpi: Use unary_decl instead of custom inc file
    * atanh: Use unary_decl instead of custom inc file
    * atan: Use unary_decl instead of custom inc file
    * asinpi: Use unary_decl instead of custom inc file
    * asinh: Use unary_dec instead of custom inc file
    * asin: Use unary_decl instead of custom inc file
    * acospi: Use unary_decl instead of custom inc file
    * acosh: Use unary_decl instead of custom inc file
    * acos: Use unary_decl instead of custom inc file
    * math: Implement native_log10
    * amdgpu/math: Don't use llvm instrinsic for native_log
    * shared: Implement aligned vector stores (vstorea_half)
    * shared: Implement aligned vector loads (vloada_half)
    * amdgcn: Add missing datalayout info to .ll files
    * r600: Add missing datalayout to .ll files
    * travis: enable checks of nvptx libraries
    * travis: Enable external function call checks on llvm-{4,5}
    * Make image builtins r600/llvm-3.9 only
    * Implement mem_fence on ptx
    * Make ptx barrier work irrespective of the cl_mem_fence_flags
    * travis: Make sure we report failure even if only earlier checked files fail
    * check_external_calls.sh: Print number of calls in tested file.
    * ptx: Use __clc_nextafter to implement nextafter
    * Do not include clc_nextafter header globally
    * math/nextafter: Use custom declaration inc file
    * math/binary_decl.inc: Do not declare mixed float/double functions
    * ldexp: Fix double precision function return type
    * configure: Fix handling of directories with compats only source lists
    * Add vload_half helpers for ptx
    * Add vstore_half helpers for ptx
    * integer/sub_sat: Use clang builtin instead of llvm asm
    * integer/add_sat: Use clang builtin instead of llvm asm
    * integer/clz: Use clang builtin instead of llvm asm
    * Let get_work_dim take exactly 0 arguments
    * Do no circularly define NULL
    * Fix amdgcn-amdhsa on llvm-3.9
    * travis: Check built libraries on llvm-3.9
    * Add script to check for unresolved function calls
    * geometric: geometric functions are only supported for vector lengths <=4
    * travis: add build using llvm-3.9
    * Restore support for llvm-3.9
    * Add missing HAVE_LLVM define to fix build with latest llvm
    * Rework atomic ops to use clang builtins rather than llvm asm
    * prepare_builtins: Fix compile breakage with older LLVM
    * [Support] Rename tool_output_file to ToolOutputFile, NFC
  - Use python3 for building
* Thu Sep 21 2017 jimmy@boombatower.com
  - Update to version 0.2.0+git.20170920:
    * generic: add missing get_work_dim include
    * add __kernel_exec macros
    * configure.py: Make python3 friendly
    * configure.py: Drop explicit import of int builtin
    * amdgcn: Implement {read_,write_,}mem_fence builtin
    * amdgcn: rewrite barrier() using fence and clang __builtin_amdgcn_s_barrier
    * Add halfN types and enable fp16 when generating builtin declarations
    * relational: Implement shuffle builtin
    * relational: Implement shuffle2 builtin
    * Fixup clc.h comment
    * r600: Cleanup barrier implementation.
    * amdgcn,waitcnt: Add datalayout info
    * configure.py: Simplify compatibility sources
    * vstore: Cleanup and add vstore(half)
    * Implement vload_half{,n} and vload(half)
    * integer: Add popcount implementation using ctpop intrinsic
    * Add native_recip(x) as ((1)/(x))
    * Add travis CI configuration file
    * Implement cl_khr_int64_base_atomics builtins
    * Implement cl_khr_int64_extended_atomics builtins
* Wed Apr 12 2017 jimmy@boombatower.com
  - Update rpmlintrc to include both lib dir .pc files.
* Mon Apr 10 2017 jimmy@boombatower.com
  - Update to version 0.2.0+git.20170225:
    * Fix build since llvm r286566 and require at least llvm 4.0
    * Fix build since r286752.
    * math: Add expm1 builtin function
    * math: Add logb builtin
    * math: Add native_rsqrt builtin function
    * Add the correct prefixes to the cl_khr_fp64 pragma
    * Move BufferPtr into the block where it it being used
    * math: Add native_tan as wrapper to tan
    * .gitignore: Ignore amdgcn-mesa object directory
    * math: Implement sinh function
* Sun Sep 25 2016 mpluskal@suse.com
  - Update to version 0.2.0+git.20160921:
    * Avoid ambiguity in calling atom_add functions.
    * Replace nextafter implementation
    * Add ADDR_SPACE parameter to _CLC_V_V_VP_VECTORIZE
    * math: Implement lgamma_r
    * math: Implement lgamma
    * math: Implement tgamma
    * amdgcn-amdhsa: Add get_global_size() implementation
    * amdgcn-amdhsa: Add get_num_groups implementation
    * configure: Add amdgcn-mesa-mesa3d target
    * Provide vstore_half helper to workaround clc restrictions
* Sun Jul 03 2016 mpluskal@suse.com
  - Update to version 0.2.0+git.20160209:
    * integer: remove explicit casts from _MIN definitions
    * AMDGPU: Add alias for tonga
    * AMDGPU: Add aliases for all VI targets
    * Add _CLC_V_V_VP_VECTORIZE macro
    * Implement modf math builtin
    * math: Add frexp ported from amd-builtins
    * math: Fix log2 vectorization on non-fp64 hw
    * configure: Introduce per device defines
    * configure: Remove cl_khr_fp64 for device that don't support doubles
    * configure: Remove llvm 3.6 defines
* Thu Dec 17 2015 coolo@suse.com
  - fix license according to legal team
* Thu Dec 17 2015 sndirsch@suse.com
  - modify license to 'BSD-3-Clause or MIT'
  - added LICENSE.TXT file to %doc
* Wed Dec 09 2015 mpluskal@suse.com
  - Remove unnecessary ldconfig calls
  - Rename rpmlintrc to libclc-rpmlintrc
  - Minor spec file cleanup
* Tue Dec 08 2015 sndirsch@suse.com
  - used BSD-3-Clause instead of BSD-2-Clause in order to make our
    legal team happy
* Mon Dec 07 2015 sndirsch@suse.com
  - added rpmlintrc as source to specfile
* Wed Dec 02 2015 jimmy@boombatower.com
  - Remove devel package in favor of main package since libclc is
    unusable without the header files used to compile OpenCL
    applications against.
* Mon Nov 30 2015 jimmy@boombatower.com
  - Merge home:X0F:HSF spec changes.
  - Set _service file to static revisions in lieu of tags.
  - Major cleanup of spec file.
  - Apply spec-cleaner.

Files

/usr/include/clc
/usr/include/clc/as_type.h
/usr/include/clc/async
/usr/include/clc/async/async_work_group_copy.h
/usr/include/clc/async/async_work_group_copy.inc
/usr/include/clc/async/async_work_group_strided_copy.h
/usr/include/clc/async/async_work_group_strided_copy.inc
/usr/include/clc/async/gentype.inc
/usr/include/clc/async/prefetch.h
/usr/include/clc/async/prefetch.inc
/usr/include/clc/async/wait_group_events.h
/usr/include/clc/atom_decl_int32.inc
/usr/include/clc/atom_decl_int64.inc
/usr/include/clc/atomic
/usr/include/clc/atomic/atomic_add.h
/usr/include/clc/atomic/atomic_and.h
/usr/include/clc/atomic/atomic_cmpxchg.h
/usr/include/clc/atomic/atomic_dec.h
/usr/include/clc/atomic/atomic_decl.inc
/usr/include/clc/atomic/atomic_inc.h
/usr/include/clc/atomic/atomic_max.h
/usr/include/clc/atomic/atomic_min.h
/usr/include/clc/atomic/atomic_or.h
/usr/include/clc/atomic/atomic_sub.h
/usr/include/clc/atomic/atomic_xchg.h
/usr/include/clc/atomic/atomic_xor.h
/usr/include/clc/cl_khr_global_int32_base_atomics
/usr/include/clc/cl_khr_global_int32_base_atomics/atom_add.h
/usr/include/clc/cl_khr_global_int32_base_atomics/atom_cmpxchg.h
/usr/include/clc/cl_khr_global_int32_base_atomics/atom_dec.h
/usr/include/clc/cl_khr_global_int32_base_atomics/atom_inc.h
/usr/include/clc/cl_khr_global_int32_base_atomics/atom_sub.h
/usr/include/clc/cl_khr_global_int32_base_atomics/atom_xchg.h
/usr/include/clc/cl_khr_global_int32_extended_atomics
/usr/include/clc/cl_khr_global_int32_extended_atomics/atom_and.h
/usr/include/clc/cl_khr_global_int32_extended_atomics/atom_max.h
/usr/include/clc/cl_khr_global_int32_extended_atomics/atom_min.h
/usr/include/clc/cl_khr_global_int32_extended_atomics/atom_or.h
/usr/include/clc/cl_khr_global_int32_extended_atomics/atom_xor.h
/usr/include/clc/cl_khr_int64_base_atomics
/usr/include/clc/cl_khr_int64_base_atomics/atom_add.h
/usr/include/clc/cl_khr_int64_base_atomics/atom_cmpxchg.h
/usr/include/clc/cl_khr_int64_base_atomics/atom_dec.h
/usr/include/clc/cl_khr_int64_base_atomics/atom_inc.h
/usr/include/clc/cl_khr_int64_base_atomics/atom_sub.h
/usr/include/clc/cl_khr_int64_base_atomics/atom_xchg.h
/usr/include/clc/cl_khr_int64_extended_atomics
/usr/include/clc/cl_khr_int64_extended_atomics/atom_and.h
/usr/include/clc/cl_khr_int64_extended_atomics/atom_max.h
/usr/include/clc/cl_khr_int64_extended_atomics/atom_min.h
/usr/include/clc/cl_khr_int64_extended_atomics/atom_or.h
/usr/include/clc/cl_khr_int64_extended_atomics/atom_xor.h
/usr/include/clc/cl_khr_local_int32_base_atomics
/usr/include/clc/cl_khr_local_int32_base_atomics/atom_add.h
/usr/include/clc/cl_khr_local_int32_base_atomics/atom_cmpxchg.h
/usr/include/clc/cl_khr_local_int32_base_atomics/atom_dec.h
/usr/include/clc/cl_khr_local_int32_base_atomics/atom_inc.h
/usr/include/clc/cl_khr_local_int32_base_atomics/atom_sub.h
/usr/include/clc/cl_khr_local_int32_base_atomics/atom_xchg.h
/usr/include/clc/cl_khr_local_int32_extended_atomics
/usr/include/clc/cl_khr_local_int32_extended_atomics/atom_and.h
/usr/include/clc/cl_khr_local_int32_extended_atomics/atom_max.h
/usr/include/clc/cl_khr_local_int32_extended_atomics/atom_min.h
/usr/include/clc/cl_khr_local_int32_extended_atomics/atom_or.h
/usr/include/clc/cl_khr_local_int32_extended_atomics/atom_xor.h
/usr/include/clc/clc.h
/usr/include/clc/clcfunc.h
/usr/include/clc/clcmacros.h
/usr/include/clc/clctypes.h
/usr/include/clc/common
/usr/include/clc/common/degrees.h
/usr/include/clc/common/degrees.inc
/usr/include/clc/common/mix.h
/usr/include/clc/common/mix.inc
/usr/include/clc/common/radians.h
/usr/include/clc/common/radians.inc
/usr/include/clc/common/sign.h
/usr/include/clc/common/smoothstep.h
/usr/include/clc/common/smoothstep.inc
/usr/include/clc/common/step.h
/usr/include/clc/common/step.inc
/usr/include/clc/convert.h
/usr/include/clc/explicit_fence
/usr/include/clc/explicit_fence/explicit_memory_fence.h
/usr/include/clc/float
/usr/include/clc/float/definitions.h
/usr/include/clc/geometric
/usr/include/clc/geometric/cross.h
/usr/include/clc/geometric/distance.h
/usr/include/clc/geometric/distance.inc
/usr/include/clc/geometric/dot.h
/usr/include/clc/geometric/dot.inc
/usr/include/clc/geometric/fast_distance.h
/usr/include/clc/geometric/fast_distance.inc
/usr/include/clc/geometric/fast_length.h
/usr/include/clc/geometric/fast_length.inc
/usr/include/clc/geometric/fast_normalize.h
/usr/include/clc/geometric/fast_normalize.inc
/usr/include/clc/geometric/floatn.inc
/usr/include/clc/geometric/length.h
/usr/include/clc/geometric/length.inc
/usr/include/clc/geometric/normalize.h
/usr/include/clc/geometric/normalize.inc
/usr/include/clc/image
/usr/include/clc/image/image.h
/usr/include/clc/image/image_defines.h
/usr/include/clc/integer
/usr/include/clc/integer/abs.h
/usr/include/clc/integer/abs.inc
/usr/include/clc/integer/abs_diff.h
/usr/include/clc/integer/abs_diff.inc
/usr/include/clc/integer/add_sat.h
/usr/include/clc/integer/add_sat.inc
/usr/include/clc/integer/clz.h
/usr/include/clc/integer/clz.inc
/usr/include/clc/integer/definitions.h
/usr/include/clc/integer/gentype.inc
/usr/include/clc/integer/hadd.h
/usr/include/clc/integer/hadd.inc
/usr/include/clc/integer/integer-gentype.inc
/usr/include/clc/integer/mad24.h
/usr/include/clc/integer/mad24.inc
/usr/include/clc/integer/mad_hi.h
/usr/include/clc/integer/mad_sat.h
/usr/include/clc/integer/mad_sat.inc
/usr/include/clc/integer/mul24.h
/usr/include/clc/integer/mul24.inc
/usr/include/clc/integer/mul_hi.h
/usr/include/clc/integer/mul_hi.inc
/usr/include/clc/integer/popcount.h
/usr/include/clc/integer/rhadd.h
/usr/include/clc/integer/rhadd.inc
/usr/include/clc/integer/rotate.h
/usr/include/clc/integer/rotate.inc
/usr/include/clc/integer/sub_sat.h
/usr/include/clc/integer/sub_sat.inc
/usr/include/clc/integer/unary.inc
/usr/include/clc/integer/upsample.h
/usr/include/clc/math
/usr/include/clc/math/acos.h
/usr/include/clc/math/acosh.h
/usr/include/clc/math/acospi.h
/usr/include/clc/math/asin.h
/usr/include/clc/math/asinh.h
/usr/include/clc/math/asinpi.h
/usr/include/clc/math/atan.h
/usr/include/clc/math/atan2.h
/usr/include/clc/math/atan2.inc
/usr/include/clc/math/atan2pi.h
/usr/include/clc/math/atan2pi.inc
/usr/include/clc/math/atanh.h
/usr/include/clc/math/atanpi.h
/usr/include/clc/math/binary_decl.inc
/usr/include/clc/math/binary_decl_tt.inc
/usr/include/clc/math/binary_intrin.inc
/usr/include/clc/math/cbrt.h
/usr/include/clc/math/ceil.h
/usr/include/clc/math/copysign.h
/usr/include/clc/math/copysign.inc
/usr/include/clc/math/cos.h
/usr/include/clc/math/cosh.h
/usr/include/clc/math/cospi.h
/usr/include/clc/math/erf.h
/usr/include/clc/math/erfc.h
/usr/include/clc/math/exp.h
/usr/include/clc/math/exp10.h
/usr/include/clc/math/exp2.h
/usr/include/clc/math/expm1.h
/usr/include/clc/math/fabs.h
/usr/include/clc/math/fdim.h
/usr/include/clc/math/fdim.inc
/usr/include/clc/math/floor.h
/usr/include/clc/math/fma.h
/usr/include/clc/math/fmax.h
/usr/include/clc/math/fmin.h
/usr/include/clc/math/fmod.h
/usr/include/clc/math/fract.h
/usr/include/clc/math/fract.inc
/usr/include/clc/math/frexp.h
/usr/include/clc/math/frexp.inc
/usr/include/clc/math/gentype.inc
/usr/include/clc/math/half_cos.h
/usr/include/clc/math/half_divide.h
/usr/include/clc/math/half_exp.h
/usr/include/clc/math/half_exp10.h
/usr/include/clc/math/half_exp2.h
/usr/include/clc/math/half_log.h
/usr/include/clc/math/half_log10.h
/usr/include/clc/math/half_log2.h
/usr/include/clc/math/half_powr.h
/usr/include/clc/math/half_recip.h
/usr/include/clc/math/half_rsqrt.h
/usr/include/clc/math/half_sin.h
/usr/include/clc/math/half_sqrt.h
/usr/include/clc/math/half_tan.h
/usr/include/clc/math/hypot.h
/usr/include/clc/math/hypot.inc
/usr/include/clc/math/ilogb.h
/usr/include/clc/math/ilogb.inc
/usr/include/clc/math/ldexp.h
/usr/include/clc/math/ldexp.inc
/usr/include/clc/math/lgamma.h
/usr/include/clc/math/lgamma_r.h
/usr/include/clc/math/lgamma_r.inc
/usr/include/clc/math/log.h
/usr/include/clc/math/log10.h
/usr/include/clc/math/log1p.h
/usr/include/clc/math/log2.h
/usr/include/clc/math/logb.h
/usr/include/clc/math/mad.h
/usr/include/clc/math/mad.inc
/usr/include/clc/math/maxmag.h
/usr/include/clc/math/minmag.h
/usr/include/clc/math/modf.h
/usr/include/clc/math/modf.inc
/usr/include/clc/math/nan.h
/usr/include/clc/math/nan.inc
/usr/include/clc/math/native_cos.h
/usr/include/clc/math/native_divide.h
/usr/include/clc/math/native_exp.h
/usr/include/clc/math/native_exp10.h
/usr/include/clc/math/native_exp2.h
/usr/include/clc/math/native_log.h
/usr/include/clc/math/native_log10.h
/usr/include/clc/math/native_log2.h
/usr/include/clc/math/native_powr.h
/usr/include/clc/math/native_recip.h
/usr/include/clc/math/native_rsqrt.h
/usr/include/clc/math/native_sin.h
/usr/include/clc/math/native_sqrt.h
/usr/include/clc/math/native_tan.h
/usr/include/clc/math/nextafter.h
/usr/include/clc/math/nextafter.inc
/usr/include/clc/math/pow.h
/usr/include/clc/math/pown.h
/usr/include/clc/math/pown.inc
/usr/include/clc/math/powr.h
/usr/include/clc/math/remainder.h
/usr/include/clc/math/remquo.h
/usr/include/clc/math/remquo.inc
/usr/include/clc/math/rint.h
/usr/include/clc/math/rootn.h
/usr/include/clc/math/rootn.inc
/usr/include/clc/math/round.h
/usr/include/clc/math/rsqrt.h
/usr/include/clc/math/sin.h
/usr/include/clc/math/sincos.h
/usr/include/clc/math/sincos.inc
/usr/include/clc/math/sinh.h
/usr/include/clc/math/sinpi.h
/usr/include/clc/math/sqrt.h
/usr/include/clc/math/tan.h
/usr/include/clc/math/tanh.h
/usr/include/clc/math/tanpi.h
/usr/include/clc/math/ternary_decl.inc
/usr/include/clc/math/ternary_intrin.inc
/usr/include/clc/math/tgamma.h
/usr/include/clc/math/trunc.h
/usr/include/clc/math/unary_decl.inc
/usr/include/clc/math/unary_intrin.inc
/usr/include/clc/misc
/usr/include/clc/misc/shuffle.h
/usr/include/clc/misc/shuffle2.h
/usr/include/clc/relational
/usr/include/clc/relational/all.h
/usr/include/clc/relational/any.h
/usr/include/clc/relational/binary_decl.inc
/usr/include/clc/relational/bitselect.h
/usr/include/clc/relational/bitselect.inc
/usr/include/clc/relational/floatn.inc
/usr/include/clc/relational/isequal.h
/usr/include/clc/relational/isfinite.h
/usr/include/clc/relational/isgreater.h
/usr/include/clc/relational/isgreaterequal.h
/usr/include/clc/relational/isinf.h
/usr/include/clc/relational/isless.h
/usr/include/clc/relational/islessequal.h
/usr/include/clc/relational/islessgreater.h
/usr/include/clc/relational/isnan.h
/usr/include/clc/relational/isnormal.h
/usr/include/clc/relational/isnotequal.h
/usr/include/clc/relational/isordered.h
/usr/include/clc/relational/isunordered.h
/usr/include/clc/relational/select.h
/usr/include/clc/relational/select.inc
/usr/include/clc/relational/signbit.h
/usr/include/clc/relational/unary_decl.inc
/usr/include/clc/shared
/usr/include/clc/shared/clamp.h
/usr/include/clc/shared/clamp.inc
/usr/include/clc/shared/max.h
/usr/include/clc/shared/max.inc
/usr/include/clc/shared/min.h
/usr/include/clc/shared/min.inc
/usr/include/clc/shared/vload.h
/usr/include/clc/shared/vstore.h
/usr/include/clc/synchronization
/usr/include/clc/synchronization/barrier.h
/usr/include/clc/synchronization/cl_mem_fence_flags.h
/usr/include/clc/workitem
/usr/include/clc/workitem/get_global_id.h
/usr/include/clc/workitem/get_global_offset.h
/usr/include/clc/workitem/get_global_size.h
/usr/include/clc/workitem/get_group_id.h
/usr/include/clc/workitem/get_local_id.h
/usr/include/clc/workitem/get_local_size.h
/usr/include/clc/workitem/get_num_groups.h
/usr/include/clc/workitem/get_work_dim.h
/usr/lib64/clc
/usr/lib64/clc/amdgcn--amdhsa.bc
/usr/lib64/clc/aruba-r600--.bc
/usr/lib64/clc/barts-r600--.bc
/usr/lib64/clc/bonaire-amdgcn--.bc
/usr/lib64/clc/bonaire-amdgcn--amdhsa.bc
/usr/lib64/clc/bonaire-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/caicos-r600--.bc
/usr/lib64/clc/carrizo-amdgcn--.bc
/usr/lib64/clc/carrizo-amdgcn--amdhsa.bc
/usr/lib64/clc/carrizo-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/cayman-r600--.bc
/usr/lib64/clc/cedar-r600--.bc
/usr/lib64/clc/cypress-r600--.bc
/usr/lib64/clc/fiji-amdgcn--.bc
/usr/lib64/clc/fiji-amdgcn--amdhsa.bc
/usr/lib64/clc/fiji-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/gfx900-amdgcn--.bc
/usr/lib64/clc/gfx900-amdgcn--amdhsa.bc
/usr/lib64/clc/gfx900-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/gfx902-amdgcn--.bc
/usr/lib64/clc/gfx902-amdgcn--amdhsa.bc
/usr/lib64/clc/gfx902-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/gfx904-amdgcn--.bc
/usr/lib64/clc/gfx904-amdgcn--amdhsa.bc
/usr/lib64/clc/gfx904-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/gfx906-amdgcn--.bc
/usr/lib64/clc/gfx906-amdgcn--amdhsa.bc
/usr/lib64/clc/gfx906-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/hainan-amdgcn--.bc
/usr/lib64/clc/hainan-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/hawaii-amdgcn--.bc
/usr/lib64/clc/hawaii-amdgcn--amdhsa.bc
/usr/lib64/clc/hawaii-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/hemlock-r600--.bc
/usr/lib64/clc/iceland-amdgcn--.bc
/usr/lib64/clc/iceland-amdgcn--amdhsa.bc
/usr/lib64/clc/iceland-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/juniper-r600--.bc
/usr/lib64/clc/kabini-amdgcn--.bc
/usr/lib64/clc/kabini-amdgcn--amdhsa.bc
/usr/lib64/clc/kabini-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/kaveri-amdgcn--.bc
/usr/lib64/clc/kaveri-amdgcn--amdhsa.bc
/usr/lib64/clc/kaveri-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/mullins-amdgcn--.bc
/usr/lib64/clc/mullins-amdgcn--amdhsa.bc
/usr/lib64/clc/mullins-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/nvptx--nvidiacl.bc
/usr/lib64/clc/nvptx64--nvidiacl.bc
/usr/lib64/clc/oland-amdgcn--.bc
/usr/lib64/clc/oland-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/palm-r600--.bc
/usr/lib64/clc/pitcairn-amdgcn--.bc
/usr/lib64/clc/pitcairn-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/polaris10-amdgcn--.bc
/usr/lib64/clc/polaris10-amdgcn--amdhsa.bc
/usr/lib64/clc/polaris10-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/polaris11-amdgcn--.bc
/usr/lib64/clc/polaris11-amdgcn--amdhsa.bc
/usr/lib64/clc/polaris11-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/redwood-r600--.bc
/usr/lib64/clc/stoney-amdgcn--.bc
/usr/lib64/clc/stoney-amdgcn--amdhsa.bc
/usr/lib64/clc/stoney-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/subnormal_disable.bc
/usr/lib64/clc/subnormal_use_default.bc
/usr/lib64/clc/sumo-r600--.bc
/usr/lib64/clc/sumo2-r600--.bc
/usr/lib64/clc/tahiti-amdgcn--.bc
/usr/lib64/clc/tahiti-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/tonga-amdgcn--.bc
/usr/lib64/clc/tonga-amdgcn--amdhsa.bc
/usr/lib64/clc/tonga-amdgcn-mesa-mesa3d.bc
/usr/lib64/clc/turks-r600--.bc
/usr/lib64/clc/verde-amdgcn--.bc
/usr/lib64/clc/verde-amdgcn-mesa-mesa3d.bc
/usr/lib64/pkgconfig/libclc.pc
/usr/share/doc/packages/libclc
/usr/share/doc/packages/libclc/LICENSE.TXT


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 12:13:28 2024