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

kokkos-devel-4.3.00-1.1 RPM for x86_64

From OpenSuSE Tumbleweed for x86_64

Name: kokkos-devel Distribution: openSUSE Tumbleweed
Version: 4.3.00 Vendor: openSUSE
Release: 1.1 Build date: Tue May 7 05:00:34 2024
Group: System/Libraries Build host: reproducible
Size: 5509185 Source RPM: kokkos-4.3.00-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/kokkos/kokkos
Summary: Development package for kokkos packages
Kokkos Core implements a programming model in C++ for writing performance
portable applications targeting all major HPC platforms. For that purpose
it provides abstractions for both parallel execution of code and data
management.  Kokkos is designed to target complex node architectures with
N-level memory hierarchies and multiple types of execution resources. It
currently can use OpenMP, Pthreads and CUDA as backend programming models.

This package contains the development files of kokkos.

Provides

Requires

License

BSD-3-Clause

Changelog

* Tue May 07 2024 ming li <mli@suse.com> - 4.3.00
  - Update to version 4.3.00:
    * Features:
      Add Experimental::sort_by_key(exec, keys, values) algorithm #6801
    * Backend and Architecture Enhancements:
      CUDA:
      Experimental multi-GPU support (from the same process) #6782
      Link against CUDA libraries even with
      KOKKOS_ENABLE_COMPILE_AS_CMAKE_LANGUAGE #6701
      Don't use the compiler launcher script if the CMake compile
      language is CUDA. #6704
      nvcc(wrapper): adding "long" and "short" versions for all flags #6615
      HIP:
      Fix compilation when using amdclang (with ROCm >= 5.7) and RDC #6857
      Use rocthrust for sorting, when available #6793
      SYCL:
      We only support OneAPI SYCL implementation: add check during
      initialization
      Error out on initialization if the backend is different from
      ext_oneapi_* #6784
      Filter GPU devices for ext_onapi_* GPU devices #6758
      Performance Improvements
      Avoid unnecessary zero-memset of the scratch flags in SYCL #6739
      Use host-pinned memory to copy reduction/scan result #6500
      Address deprecations after oneAPI 2023.2.0 #6577
      Make sure to call find_dependency for oneDPL if necessary #6870
      OpenMPTarget:
      Use LLVM extensions for dynamic shared memory #6380
      Guard scratch memory usage in ParallelReduce #6585
      Update linker flags for Intel GPUs update #6735
      Improve handling of printf on Intel GPUs #6652
      OpenACC:
      Add atomics support #6446
      Make the OpenACC backend asynchronous #6772
      Threads:
      Add missing broadcast to TeamThreadRange parallel_scan #6601
      OpenMP:
      Improve performance of view initializations and filling with zeros #6573
    * General Enhancements
      Improve performance of random number generation when using a normal
      distribution on GPUs #6556
      Allocate temporary view with the user-provided execution space instance
      and do not initialize in unique algorithm #6598
      Add deduction guide for Kokkos::Array #6373
      Provide new public headers <Kokkos_Clamp.hpp> and <Kokkos_MinMax.hpp> #6687
      Fix/improvement to remove_if parallel algorithm: use the provided execution
      space instance for temporary allocations and drop unnecessaryinitialization
      + avoid evaluating twice the predicate during final pass #6747
      Add runtime function to query the number of devices and make device ID
      consistent with KOKKOS_VISIBLE_DEVICES #6713
      simd: support vector_aligned_tag #6243
      Avoid unnecessary allocation when default constructing Bitset #6524
      Fix constness for views in std algorithms #6813
      Improve error message on unsafe implicit conversion in MDRangePolicy #6855
      CTAD (deduction guides) for RangePolicy #6850
      CTAD (deduction guides) for MDRangePolicy #5516
    * Build System Changes
      Require Kokkos_ENABLE_ATOMICS_BYPASS option to bypass atomic operation for
      Serial backend only builds #6692
      Add support for RISCV and the Milk-V's Pioneer #6773
      Add C++26 standard to CMake setup #6733
      Fix Makefile when using gnu_generate_makefile.sh and make >= 4.3 #6606
      Cuda: Fix configuring with CMake >= 3.28.4 - temporary fallback to internal
      CudaToolkit.cmake #6898
    * Incompatibilities (i.e. breaking changes)
      Remove all DEPRECATED_CODE_3 option and all code that was guarded by it #6523
      Drop guards to accommodate external code defining KOKKOS_ASSERT #6665
      Profiling::ProfilingSection(std::string) constructor marked explicit
      and nodiscard #6690
      Add bound check preconditions for RangePolicy and MDRangePolicy #6617 #6726
      Add checks for unsafe implicit conversions in RangePolicy #6754
      Remove Kokkos::[b]half_t volatile overloads #6579
      Remove KOKKOS_IMPL_DO_NOT_USE_PRINTF #6593
      Check matching static extents in View constructor #5190
      Tools(profiling): fix typo Kokkos_Tools_Optim[i]zationGoal #6642
      Remove variadic range policy constructor (disallow passing multiple trailing
      chunk size arguments) #6845
      Improve message on view out of bounds access and always abort #6861
      Drop KOKKOS_ENABLE_INTEL_MM_ALLOC macro #6797
      Remove Kokkos::Experimental::LogicalMemorySpace (without going through
      deprecation) #6557
      Remove Experimental::HBWSpace and support for linking against memkind #6791
      Drop librt TPL and associated KOKKOS_ENABLE_LIBRT macro #6798
      Drop support for old CPU architectures (ARCH_BGQ, ARCH_POWER7, ARCH_WSM and
      associated ARCH_SSE4 macro) #6806
      Drop support for deprecated command-line arguments and environment variables #6744
    * Deprecations
      Provide kokkos_swap as part of Core and deprecate Experimental::swap in
      Algorithms #6697
      Deprecate {Cuda,HIP}::detect_device_count() and Cuda::[detect_]device_arch() #6710
      Deprecate ExecutionSpace::in_parallel() #6582
    * Bug Fixes
      Fix team-level MDRange reductions: #6511
      Fix CUDA and SYCL small value type (16-bit) team reductions #5334
      Enable {transform_}exclusive_scan in place #6667
      fill_random overload that do not take an execution space instance argument
      should fence #6658
      HIP,Cuda,OpenMPTarget: Fixup use provided execution space when copying host
      inaccessible reduction result #6777
      Fix typo in cuda_func_set_attribute[s]_wrapper preventing proper setting of
      desired occupancy #6786
      Avoid undefined behavior due to conversion between signed and unsigned integers in
      shift_{right, left}_team_impl #6821
      Fix a bug in Makefile.kokkos when using AMD GPU architectures as AMD_GFXYYY #6892
* Sun Mar 10 2024 Sarah Kriesch <sarah.kriesch@opensuse.org>
  - Remove constraints file because of improved memory usage
  - Edit shebang lines for nvcc_wrapper and kokkos_launch_compiler because of rpm errors
* Wed Dec 06 2023 Cezary Skrzyński <czars1988@gmail.com> - 4.2.00
  - Update to new upstream release 4.2.00:
    see https://github.com/kokkos/kokkos/blob/4.2.00/CHANGELOG.md
* Wed Jul 05 2023 Vicente Adolfo Bolea Sanchez <vicente.bolea@gmail.com> - 4.1.00
  - Update to new upstream release 4.1.00:
    see https://github.com/kokkos/kokkos/blob/4.1.00/CHANGELOG.md
  - Use a tarball as Source0 instead of an URL.
* Wed May 03 2023 Vicente Adolfo Bolea Sanchez <vicente.bolea@gmail.com> - 4.0.01
  - Update to new upstream release 4.0.01:
    see https://github.com/kokkos/kokkos/blob/62d2b6c879b74b6ae7bd06eb3e5e80139c4708e6/CHANGELOG.md
  - Use Ninja for building the project.
* Tue Apr 04 2023 Cezary Skrzyński <czars1988@gmail.com> - 4.0.00
  - Update to new upstream release 4.0.00:
    see https://github.com/kokkos/kokkos/blob/master/CHANGELOG.md#400-2023-02-21
  - Increase memory limits for build to avoid OpenMP tests running
    out of memory
  - Add kokkos-do-not-use-env-as-interpreter.patch to fix rpmlint
    complaint about `env` being used as interpreter
* Tue Apr 26 2022 Jan Engelhardt <jengelh@inai.de>
  - Resolve rpmlint report "libkokkos3.x86_64: E:
    shlib-policy-name-error SONAME: libkokkoscontainers.so.3.3.0,
    expected package suffix: 3_3_0"
* Tue Oct 12 2021 Stefan Brüns <stefan.bruens@rwth-aachen.de>
  - Remove random constraint adjustments again, and use a global
    lower limit of 6 GB of memory (minimum for the OMP tests).
  - Limit the number of parallel jobs and OMP threads in the unit
    tests, to keep the required memory bounded.
    This way, even architectures with many cores and comparatively
    low memory can build successfully.
* Sun Oct 03 2021 Sarah Kriesch <sarah.kriesch@opensuse.org>
  - New entries in constraints file because of missing build nodes with
    18GB of memory for s390x and PPC:
    - 2GB for memoryperjob at x86, riscv64 and s390x
    - aarch64 3GB for memoryperjob because of "Out of memory" with 2GB
    - PPC64 and PPC64le with 1GB for memoryperjob because of missing
      node capacity
* Sat Dec 19 2020 Christoph Junghans <junghans@votca.org>
  - dropped 3308.patch - merged upstream
  - Version bump to 3.3.00:
    - Features:
    - Require C++14 as minimum C++ standard. C++17 and C++20 are
      supported too.
    - HIP backend is nearly feature complete. Kokkos Dynamic Task
      Graphs are missing.
    - Major update for OpenMPTarget: many capabilities now work.
      For details contact us.
    - Added DPC++/SYCL backend: primary capabilites are working.
    - Added Kokkos Graph API analogous to CUDA Graphs.
    - Added parallel_scan support with TeamThreadRange
      [gh#kokkos/kokkos#3536]
    - Added Logical Memory Spaces [gh#kokkos/kokkos#3546]
    - Added initial half precision support [gh#kokkos/kokkos#3439]
    - Experimental feature: control cuda occupancy
      [gh#kokkos/kokkos#3379]
    - Implemented enhancements Backends and Archs:
    - Add a64fx and fujitsu Compiler support
      [gh#kokkos/kokkos#3614]
    - Adding support for AMD gfx908 archictecture
      [gh#kokkos/kokkos#3375]
    - SYCL parallel_for MDRangePolicy [gh#kokkos/kokkos#3583]
    - SYCL add parallel_scan [gh#kokkos/kokkos#3577]
    - SYCL custom reductions [gh#kokkos/kokkos#3544]
    - SYCL Enable container unit tests [gh#kokkos/kokkos#3550]
    - SYCL feature level 5 [gh#kokkos/kokkos#3480]
    - SYCL Feature level 4 (parallel_for) [gh#kokkos/kokkos#3474]
    - SYCL feature level 3 [gh#kokkos/kokkos#3451]
    - SYCL feature level 2 [gh#kokkos/kokkos#3447]
    - OpenMPTarget: Hierarchial reduction for + operator on
      scalars [gh#kokkos/kokkos#3504]
    - OpenMPTarget hierarchical [gh#kokkos/kokkos#3411]
    - HIP Add Impl::atomic_[store,load] [gh#kokkos/kokkos#3440]
    - HIP enable global lock arrays [gh#kokkos/kokkos#3418]
    - HIP Implement multiple occupancy paths for various HIP
      kernel launchers [gh#kokkos/kokkos#3366]
    - Implemented enhancements Policies:
    - MDRangePolicy: Let it be semiregular [gh#kokkos/kokkos#3494]
    - MDRangePolicy: Check narrowing conversion in construction
      [gh#kokkos/kokkos#3527]
    - MDRangePolicy: CombinedReducers support
      [gh#kokkos/kokkos#3395]
    - Kokkos Graph: Interface and Default Implementation
      [gh#kokkos/kokkos#3362]
    - Kokkos Graph: add Cuda Graph implementation
      [gh#kokkos/kokkos#3369]
    - TeamPolicy: implemented autotuning of team sizes and vector
      lengths [gh#kokkos/kokkos#3206]
    - RangePolicy: Initialize all data members in default
      constructor [gh#kokkos/kokkos#3509]
    - Implemented enhancements BuildSystem:
    - Auto-generate core test files for all backends
      [gh#kokkos/kokkos#3488]
    - Avoid rewriting test files when calling cmake
      [gh#kokkos/kokkos#3548]
    - RULE_LAUNCH_COMPILE and RULE_LAUNCH_LINK system for
      nvcc_wrapper [gh#kokkos/kokkos#3136]
    - Adding -include as a known argument to nvcc_wrapper
      [gh#kokkos/kokkos#3434]
    - Install hpcbind script [gh#kokkos/kokkos#3402]
    - cmake/kokkos_tribits.cmake: add parsing for args
      [gh#kokkos/kokkos#3457]
    - Implemented enhancements Tools:
    - Changed namespacing of
      Kokkos::Tools::Impl::Impl::tune_policy
      [gh#kokkos/kokkos#3455]
    - Delegate to an impl allocate/deallocate method to allow
      specifying a SpaceHandle for MemorySpaces
      [gh#kokkos/kokkos#3530]
    - Use the Kokkos Profiling interface rather than the Impl
      interface [gh#kokkos/kokkos#3518]
    - Runtime option for tuning [gh#kokkos/kokkos#3459]
    - Dual View Tool Events [gh#kokkos/kokkos#3326]
    - Implemented enhancements Other:
    - Abort on errors instead of just printing
      [gh#kokkos/kokkos#3528]
    - Enable C++14 macros unconditionally [gh#kokkos/kokkos#3449]
    - Make ViewMapping trivially copyable [gh#kokkos/kokkos#3436]
    - Rename struct ViewMapping to class [gh#kokkos/kokkos#3435]
    - Replace enums in Kokkos_ViewMapping.hpp (removes -Wextra)
      [gh#kokkos/kokkos#3422]
    - Use bool for enums representing bools
      [gh#kokkos/kokkos#3416]
    - Fence active instead of default execution space instances
      [gh#kokkos/kokkos#3388]
    - Refactor parallel_reduce fence usage [gh#kokkos/kokkos#3359]
    - Moved Space EBO helpers to Kokkos_EBO
      [gh#kokkos/kokkos#3357]
    - Add remove_cvref type trait [gh#kokkos/kokkos#3340]
    - Adding identity type traits and update definition of
      identity_t alias [gh#kokkos/kokkos#3339]
    - Add is_specialization_of type trait [gh#kokkos/kokkos#3338]
    - Make ScratchMemorySpace semi-regular [gh#kokkos/kokkos#3309]
    - Optimize min/max atomics with early exit on no-op case
      [gh#kokkos/kokkos#3265]
    - Refactor Backend Development [gh#kokkos/kokkos#2941]
    - Fixed bugs:
    - Fixup MDRangePolicy construction from Kokkos arrays
      [gh#kokkos/kokkos#3591]
    - Add atomic functions for unsigned long long using gcc
      built-in [gh#kokkos/kokkos#3588]
    - Fixup silent pointless comparison with zero in
      checked_narrow_cast (compiler workaround)
      [gh#kokkos/kokkos#3566]
    - Fixes for ROCm 3.9 [gh#kokkos/kokkos#3565]
    - Fix windows build issues which crept in for the CUDA build
      [gh#kokkos/kokkos#3532]
    - HIP Fix atomics of large data types and clean up lock arrays
      [gh#kokkos/kokkos#3529]
    - Pthreads fix exception resulting from 0 grain size
      [gh#kokkos/kokkos#3510]
    - Fixup do not require atomic operation to be default
      constructible [gh#kokkos/kokkos#3503]
    - Fix race condition in HIP backend [gh#kokkos/kokkos#3467]
    - Replace KOKKOS_DEBUG with KOKKOS_ENABLE_DEBUG
      [gh#kokkos/kokkos#3458]
    - Fix multi-stream team scratch space definition for HIP
      [gh#kokkos/kokkos#3398]
    - HIP fix template deduction [gh#kokkos/kokkos#3393]
    - Fix compiling with HIP and C++17 [gh#kokkos/kokkos#3390]
    - Fix sigFPE in HIP blocksize deduction
      [gh#kokkos/kokkos#3378]
    - Type alias change: replace CS with CTS to avoid conflicts
      with NVSHMEM [gh#kokkos/kokkos#3348]
    - Clang compilation of CUDA backend on Windows
      [gh#kokkos/kokkos#3345]
    - Fix HBW support [gh#kokkos/kokkos#3343]
    - Added missing fences to unique token [gh#kokkos/kokkos#3260]
    - Incompatibilities:
    - Remove unused utilities (forward, move, and expand_variadic)
      from Kokkos::Impl [gh#kokkos/kokkos#3535]
    - Remove unused traits [gh#kokkos/kokkos#3534]
    - HIP: Remove old HCC code [gh#kokkos/kokkos#3301]
    - Prepare for deprecation of ViewAllocateWithoutInitializing
      [gh#kokkos/kokkos#3264]
    - Remove ROCm backend [gh#kokkos/kokkos#3148]

Files

/usr/bin/hpcbind
/usr/bin/kokkos_launch_compiler
/usr/bin/nvcc_wrapper
/usr/include/kokkos
/usr/include/kokkos/Cuda
/usr/include/kokkos/Cuda/Kokkos_Cuda.hpp
/usr/include/kokkos/Cuda/Kokkos_CudaSpace.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_BlockSize_Deduction.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_Error.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_GraphNodeKernel.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_GraphNode_Impl.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_Graph_Impl.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_Half_Conversion.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_Half_Impl_Type.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_Instance.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_KernelLaunch.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_MDRangePolicy.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_Parallel_MDRange.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_Parallel_Range.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_Parallel_Team.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_ReduceScan.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_Task.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_Team.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_UniqueToken.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_Vectorization.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_View.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_WorkGraphPolicy.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_ZeroMemset.hpp
/usr/include/kokkos/Cuda/Kokkos_Cuda_abort.hpp
/usr/include/kokkos/HIP
/usr/include/kokkos/HIP/Kokkos_HIP.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_Abort.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_BlockSize_Deduction.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_DeepCopy.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_Error.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_GraphNodeKernel.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_GraphNode_Impl.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_Graph_Impl.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_Half_Conversion.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_Half_Impl_Type.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_Instance.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_KernelLaunch.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_MDRangePolicy.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_ParallelFor_MDRange.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_ParallelFor_Range.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_ParallelFor_Team.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_ParallelReduce_MDRange.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_ParallelReduce_Range.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_ParallelReduce_Team.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_ParallelScan_Range.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_ReduceScan.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_SharedAllocationRecord.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_Shuffle_Reduce.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_Space.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_Team.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_TeamPolicyInternal.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_UniqueToken.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_Vectorization.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_WorkGraphPolicy.hpp
/usr/include/kokkos/HIP/Kokkos_HIP_ZeroMemset.hpp
/usr/include/kokkos/HPX
/usr/include/kokkos/HPX/Kokkos_HPX.hpp
/usr/include/kokkos/HPX/Kokkos_HPX_MDRangePolicy.hpp
/usr/include/kokkos/HPX/Kokkos_HPX_Task.hpp
/usr/include/kokkos/HPX/Kokkos_HPX_WorkGraphPolicy.hpp
/usr/include/kokkos/KokkosCore_Config_DeclareBackend.hpp
/usr/include/kokkos/KokkosCore_Config_FwdBackend.hpp
/usr/include/kokkos/KokkosCore_Config_SetupBackend.hpp
/usr/include/kokkos/KokkosCore_config.h
/usr/include/kokkos/KokkosExp_InterOp.hpp
/usr/include/kokkos/KokkosExp_MDRangePolicy.hpp
/usr/include/kokkos/Kokkos_Abort.hpp
/usr/include/kokkos/Kokkos_AcquireUniqueTokenImpl.hpp
/usr/include/kokkos/Kokkos_AnonymousSpace.hpp
/usr/include/kokkos/Kokkos_Array.hpp
/usr/include/kokkos/Kokkos_Assert.hpp
/usr/include/kokkos/Kokkos_Atomic.hpp
/usr/include/kokkos/Kokkos_Atomics_Desul_Config.hpp
/usr/include/kokkos/Kokkos_Atomics_Desul_Volatile_Wrapper.hpp
/usr/include/kokkos/Kokkos_Atomics_Desul_Wrapper.hpp
/usr/include/kokkos/Kokkos_BitManipulation.hpp
/usr/include/kokkos/Kokkos_Bitset.hpp
/usr/include/kokkos/Kokkos_Clamp.hpp
/usr/include/kokkos/Kokkos_Complex.hpp
/usr/include/kokkos/Kokkos_Concepts.hpp
/usr/include/kokkos/Kokkos_CopyViews.hpp
/usr/include/kokkos/Kokkos_Core.hpp
/usr/include/kokkos/Kokkos_Core_fwd.hpp
/usr/include/kokkos/Kokkos_Crs.hpp
/usr/include/kokkos/Kokkos_DetectionIdiom.hpp
/usr/include/kokkos/Kokkos_DualView.hpp
/usr/include/kokkos/Kokkos_DynRankView.hpp
/usr/include/kokkos/Kokkos_DynamicView.hpp
/usr/include/kokkos/Kokkos_ErrorReporter.hpp
/usr/include/kokkos/Kokkos_ExecPolicy.hpp
/usr/include/kokkos/Kokkos_Extents.hpp
/usr/include/kokkos/Kokkos_Functional.hpp
/usr/include/kokkos/Kokkos_Future.hpp
/usr/include/kokkos/Kokkos_Graph.hpp
/usr/include/kokkos/Kokkos_GraphNode.hpp
/usr/include/kokkos/Kokkos_Graph_fwd.hpp
/usr/include/kokkos/Kokkos_Half.hpp
/usr/include/kokkos/Kokkos_HostSpace.hpp
/usr/include/kokkos/Kokkos_Layout.hpp
/usr/include/kokkos/Kokkos_Macros.hpp
/usr/include/kokkos/Kokkos_MathematicalConstants.hpp
/usr/include/kokkos/Kokkos_MathematicalFunctions.hpp
/usr/include/kokkos/Kokkos_MathematicalSpecialFunctions.hpp
/usr/include/kokkos/Kokkos_MemoryPool.hpp
/usr/include/kokkos/Kokkos_MemoryTraits.hpp
/usr/include/kokkos/Kokkos_MinMax.hpp
/usr/include/kokkos/Kokkos_NestedSort.hpp
/usr/include/kokkos/Kokkos_NumericTraits.hpp
/usr/include/kokkos/Kokkos_OffsetView.hpp
/usr/include/kokkos/Kokkos_Pair.hpp
/usr/include/kokkos/Kokkos_Parallel.hpp
/usr/include/kokkos/Kokkos_Parallel_Reduce.hpp
/usr/include/kokkos/Kokkos_PointerOwnership.hpp
/usr/include/kokkos/Kokkos_Printf.hpp
/usr/include/kokkos/Kokkos_Profiling_ProfileSection.hpp
/usr/include/kokkos/Kokkos_Profiling_ScopedRegion.hpp
/usr/include/kokkos/Kokkos_Random.hpp
/usr/include/kokkos/Kokkos_Rank.hpp
/usr/include/kokkos/Kokkos_ReductionIdentity.hpp
/usr/include/kokkos/Kokkos_SIMD.hpp
/usr/include/kokkos/Kokkos_SIMD_AVX2.hpp
/usr/include/kokkos/Kokkos_SIMD_AVX512.hpp
/usr/include/kokkos/Kokkos_SIMD_Common.hpp
/usr/include/kokkos/Kokkos_SIMD_Common_Math.hpp
/usr/include/kokkos/Kokkos_SIMD_NEON.hpp
/usr/include/kokkos/Kokkos_SIMD_Scalar.hpp
/usr/include/kokkos/Kokkos_ScatterView.hpp
/usr/include/kokkos/Kokkos_ScratchSpace.hpp
/usr/include/kokkos/Kokkos_Sort.hpp
/usr/include/kokkos/Kokkos_StaticCrsGraph.hpp
/usr/include/kokkos/Kokkos_StdAlgorithms.hpp
/usr/include/kokkos/Kokkos_Swap.hpp
/usr/include/kokkos/Kokkos_TaskScheduler.hpp
/usr/include/kokkos/Kokkos_TaskScheduler_fwd.hpp
/usr/include/kokkos/Kokkos_Timer.hpp
/usr/include/kokkos/Kokkos_Tuners.hpp
/usr/include/kokkos/Kokkos_UniqueToken.hpp
/usr/include/kokkos/Kokkos_UnorderedMap.hpp
/usr/include/kokkos/Kokkos_Vector.hpp
/usr/include/kokkos/Kokkos_Vectorization.hpp
/usr/include/kokkos/Kokkos_View.hpp
/usr/include/kokkos/Kokkos_WorkGraphPolicy.hpp
/usr/include/kokkos/Kokkos_hwloc.hpp
/usr/include/kokkos/OpenACC
/usr/include/kokkos/OpenACC/Kokkos_OpenACC.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACCSpace.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_DeepCopy.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_FunctorAdapter.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_Instance.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_MDRangePolicy.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_Macros.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_ParallelFor_MDRange.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_ParallelFor_Range.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_ParallelFor_Team.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_ParallelReduce_MDRange.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_ParallelReduce_Range.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_ParallelReduce_Team.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_ParallelScan_Range.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_ScheduleType.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_SharedAllocationRecord.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_Team.hpp
/usr/include/kokkos/OpenACC/Kokkos_OpenACC_Traits.hpp
/usr/include/kokkos/OpenMP
/usr/include/kokkos/OpenMP/Kokkos_OpenMP.hpp
/usr/include/kokkos/OpenMP/Kokkos_OpenMP_Instance.hpp
/usr/include/kokkos/OpenMP/Kokkos_OpenMP_MDRangePolicy.hpp
/usr/include/kokkos/OpenMP/Kokkos_OpenMP_Parallel_For.hpp
/usr/include/kokkos/OpenMP/Kokkos_OpenMP_Parallel_Reduce.hpp
/usr/include/kokkos/OpenMP/Kokkos_OpenMP_Parallel_Scan.hpp
/usr/include/kokkos/OpenMP/Kokkos_OpenMP_Task.hpp
/usr/include/kokkos/OpenMP/Kokkos_OpenMP_Team.hpp
/usr/include/kokkos/OpenMP/Kokkos_OpenMP_UniqueToken.hpp
/usr/include/kokkos/OpenMP/Kokkos_OpenMP_WorkGraphPolicy.hpp
/usr/include/kokkos/OpenMPTarget
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTargetSpace.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_Abort.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_Error.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_Instance.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_MDRangePolicy.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_Macros.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_Parallel.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_ParallelFor_Range.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_ParallelFor_Team.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_ParallelReduce_Range.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_ParallelReduce_Team.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_ParallelScan_Range.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_ParallelScan_Team.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_Parallel_Common.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_Parallel_MDRange.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_Reducer.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_Task.hpp
/usr/include/kokkos/OpenMPTarget/Kokkos_OpenMPTarget_UniqueToken.hpp
/usr/include/kokkos/SYCL
/usr/include/kokkos/SYCL/Kokkos_SYCL.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_Abort.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_DeepCopy.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_Half_Conversion.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_Half_Impl_Type.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_Instance.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_MDRangePolicy.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_ParallelFor_MDRange.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_ParallelFor_Range.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_ParallelFor_Team.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_ParallelReduce_MDRange.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_ParallelReduce_Range.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_ParallelReduce_Team.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_ParallelScan_Range.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_Space.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_Team.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_TeamPolicy.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_UniqueToken.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_WorkgroupReduction.hpp
/usr/include/kokkos/SYCL/Kokkos_SYCL_ZeroMemset.hpp
/usr/include/kokkos/Serial
/usr/include/kokkos/Serial/Kokkos_Serial.hpp
/usr/include/kokkos/Serial/Kokkos_Serial_MDRangePolicy.hpp
/usr/include/kokkos/Serial/Kokkos_Serial_Parallel_MDRange.hpp
/usr/include/kokkos/Serial/Kokkos_Serial_Parallel_Range.hpp
/usr/include/kokkos/Serial/Kokkos_Serial_Parallel_Team.hpp
/usr/include/kokkos/Serial/Kokkos_Serial_Task.hpp
/usr/include/kokkos/Serial/Kokkos_Serial_UniqueToken.hpp
/usr/include/kokkos/Serial/Kokkos_Serial_WorkGraphPolicy.hpp
/usr/include/kokkos/Serial/Kokkos_Serial_ZeroMemset.hpp
/usr/include/kokkos/Threads
/usr/include/kokkos/Threads/Kokkos_Threads.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_Instance.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_MDRangePolicy.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_ParallelFor_MDRange.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_ParallelFor_Range.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_ParallelFor_Team.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_ParallelReduce_MDRange.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_ParallelReduce_Range.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_ParallelReduce_Team.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_ParallelScan_Range.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_Spinwait.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_State.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_Team.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_UniqueToken.hpp
/usr/include/kokkos/Threads/Kokkos_Threads_WorkGraphPolicy.hpp
/usr/include/kokkos/View
/usr/include/kokkos/View/Hooks
/usr/include/kokkos/View/Hooks/Kokkos_ViewHooks.hpp
/usr/include/kokkos/View/MDSpan
/usr/include/kokkos/View/MDSpan/Kokkos_MDSpan_Extents.hpp
/usr/include/kokkos/View/MDSpan/Kokkos_MDSpan_Header.hpp
/usr/include/kokkos/decl
/usr/include/kokkos/decl/Kokkos_Declare_CUDA.hpp
/usr/include/kokkos/decl/Kokkos_Declare_HIP.hpp
/usr/include/kokkos/decl/Kokkos_Declare_HPX.hpp
/usr/include/kokkos/decl/Kokkos_Declare_OPENACC.hpp
/usr/include/kokkos/decl/Kokkos_Declare_OPENMP.hpp
/usr/include/kokkos/decl/Kokkos_Declare_OPENMPTARGET.hpp
/usr/include/kokkos/decl/Kokkos_Declare_SERIAL.hpp
/usr/include/kokkos/decl/Kokkos_Declare_SYCL.hpp
/usr/include/kokkos/decl/Kokkos_Declare_THREADS.hpp
/usr/include/kokkos/desul
/usr/include/kokkos/desul/atomics
/usr/include/kokkos/desul/atomics.hpp
/usr/include/kokkos/desul/atomics/Adapt_CXX.hpp
/usr/include/kokkos/desul/atomics/Adapt_GCC.hpp
/usr/include/kokkos/desul/atomics/Adapt_SYCL.hpp
/usr/include/kokkos/desul/atomics/Atomic_Ref.hpp
/usr/include/kokkos/desul/atomics/Common.hpp
/usr/include/kokkos/desul/atomics/Compare_Exchange.hpp
/usr/include/kokkos/desul/atomics/Compare_Exchange_CUDA.hpp
/usr/include/kokkos/desul/atomics/Compare_Exchange_GCC.hpp
/usr/include/kokkos/desul/atomics/Compare_Exchange_HIP.hpp
/usr/include/kokkos/desul/atomics/Compare_Exchange_MSVC.hpp
/usr/include/kokkos/desul/atomics/Compare_Exchange_OpenACC.hpp
/usr/include/kokkos/desul/atomics/Compare_Exchange_OpenMP.hpp
/usr/include/kokkos/desul/atomics/Compare_Exchange_SYCL.hpp
/usr/include/kokkos/desul/atomics/Compare_Exchange_ScopeCaller.hpp
/usr/include/kokkos/desul/atomics/Config.hpp
/usr/include/kokkos/desul/atomics/Fetch_Op.hpp
/usr/include/kokkos/desul/atomics/Fetch_Op_CUDA.hpp
/usr/include/kokkos/desul/atomics/Fetch_Op_GCC.hpp
/usr/include/kokkos/desul/atomics/Fetch_Op_Generic.hpp
/usr/include/kokkos/desul/atomics/Fetch_Op_HIP.hpp
/usr/include/kokkos/desul/atomics/Fetch_Op_OpenACC.hpp
/usr/include/kokkos/desul/atomics/Fetch_Op_OpenMP.hpp
/usr/include/kokkos/desul/atomics/Fetch_Op_SYCL.hpp
/usr/include/kokkos/desul/atomics/Fetch_Op_ScopeCaller.hpp
/usr/include/kokkos/desul/atomics/Generic.hpp
/usr/include/kokkos/desul/atomics/Lock_Array.hpp
/usr/include/kokkos/desul/atomics/Lock_Array_CUDA.hpp
/usr/include/kokkos/desul/atomics/Lock_Array_HIP.hpp
/usr/include/kokkos/desul/atomics/Lock_Array_SYCL.hpp
/usr/include/kokkos/desul/atomics/Lock_Based_Fetch_Op.hpp
/usr/include/kokkos/desul/atomics/Lock_Based_Fetch_Op_CUDA.hpp
/usr/include/kokkos/desul/atomics/Lock_Based_Fetch_Op_HIP.hpp
/usr/include/kokkos/desul/atomics/Lock_Based_Fetch_Op_Host.hpp
/usr/include/kokkos/desul/atomics/Lock_Based_Fetch_Op_OpenACC.hpp
/usr/include/kokkos/desul/atomics/Lock_Based_Fetch_Op_SYCL.hpp
/usr/include/kokkos/desul/atomics/Lock_Free_Fetch_Op.hpp
/usr/include/kokkos/desul/atomics/Macros.hpp
/usr/include/kokkos/desul/atomics/Operator_Function_Objects.hpp
/usr/include/kokkos/desul/atomics/Thread_Fence.hpp
/usr/include/kokkos/desul/atomics/Thread_Fence_CUDA.hpp
/usr/include/kokkos/desul/atomics/Thread_Fence_GCC.hpp
/usr/include/kokkos/desul/atomics/Thread_Fence_HIP.hpp
/usr/include/kokkos/desul/atomics/Thread_Fence_MSVC.hpp
/usr/include/kokkos/desul/atomics/Thread_Fence_OpenACC.hpp
/usr/include/kokkos/desul/atomics/Thread_Fence_OpenMP.hpp
/usr/include/kokkos/desul/atomics/Thread_Fence_SYCL.hpp
/usr/include/kokkos/desul/atomics/Thread_Fence_ScopeCaller.hpp
/usr/include/kokkos/desul/atomics/cuda
/usr/include/kokkos/desul/atomics/cuda/CUDA_asm.hpp
/usr/include/kokkos/desul/atomics/cuda/CUDA_asm_exchange.hpp
/usr/include/kokkos/desul/atomics/cuda/cuda_cc7_asm.inc
/usr/include/kokkos/desul/atomics/cuda/cuda_cc7_asm_atomic_fetch_op.inc
/usr/include/kokkos/desul/atomics/cuda/cuda_cc7_asm_atomic_fetch_op.inc_isglobal
/usr/include/kokkos/desul/atomics/cuda/cuda_cc7_asm_atomic_fetch_op.inc_predicate
/usr/include/kokkos/desul/atomics/cuda/cuda_cc7_asm_atomic_op.inc
/usr/include/kokkos/desul/atomics/cuda/cuda_cc7_asm_atomic_op.inc_isglobal
/usr/include/kokkos/desul/atomics/cuda/cuda_cc7_asm_atomic_op.inc_predicate
/usr/include/kokkos/desul/atomics/cuda/cuda_cc7_asm_exchange.inc
/usr/include/kokkos/desul/atomics/cuda/cuda_cc7_asm_exchange_memorder.inc
/usr/include/kokkos/desul/atomics/cuda/cuda_cc7_asm_exchange_op.inc
/usr/include/kokkos/desul/atomics/cuda/cuda_cc7_asm_memorder.inc
/usr/include/kokkos/desul/atomics/openmp
/usr/include/kokkos/desul/atomics/openmp/OpenMP_40.hpp
/usr/include/kokkos/desul/atomics/openmp/OpenMP_40_op.inc
/usr/include/kokkos/fwd
/usr/include/kokkos/fwd/Kokkos_Fwd_CUDA.hpp
/usr/include/kokkos/fwd/Kokkos_Fwd_HIP.hpp
/usr/include/kokkos/fwd/Kokkos_Fwd_HPX.hpp
/usr/include/kokkos/fwd/Kokkos_Fwd_OPENACC.hpp
/usr/include/kokkos/fwd/Kokkos_Fwd_OPENMP.hpp
/usr/include/kokkos/fwd/Kokkos_Fwd_OPENMPTARGET.hpp
/usr/include/kokkos/fwd/Kokkos_Fwd_SERIAL.hpp
/usr/include/kokkos/fwd/Kokkos_Fwd_SYCL.hpp
/usr/include/kokkos/fwd/Kokkos_Fwd_THREADS.hpp
/usr/include/kokkos/impl
/usr/include/kokkos/impl/KokkosExp_Host_IterateTile.hpp
/usr/include/kokkos/impl/KokkosExp_IterateTileGPU.hpp
/usr/include/kokkos/impl/KokkosExp_ViewMapping.hpp
/usr/include/kokkos/impl/Kokkos_AnalyzePolicy.hpp
/usr/include/kokkos/impl/Kokkos_Atomic_View.hpp
/usr/include/kokkos/impl/Kokkos_BitOps.hpp
/usr/include/kokkos/impl/Kokkos_Bitset_impl.hpp
/usr/include/kokkos/impl/Kokkos_CPUDiscovery.hpp
/usr/include/kokkos/impl/Kokkos_ChaseLev.hpp
/usr/include/kokkos/impl/Kokkos_CheckedIntegerOps.hpp
/usr/include/kokkos/impl/Kokkos_ClockTic.hpp
/usr/include/kokkos/impl/Kokkos_Combined_Reducer.hpp
/usr/include/kokkos/impl/Kokkos_Command_Line_Parsing.hpp
/usr/include/kokkos/impl/Kokkos_ConcurrentBitset.hpp
/usr/include/kokkos/impl/Kokkos_Default_GraphNodeKernel.hpp
/usr/include/kokkos/impl/Kokkos_Default_GraphNode_Impl.hpp
/usr/include/kokkos/impl/Kokkos_Default_Graph_Impl.hpp
/usr/include/kokkos/impl/Kokkos_Default_Graph_fwd.hpp
/usr/include/kokkos/impl/Kokkos_DeviceManagement.hpp
/usr/include/kokkos/impl/Kokkos_EBO.hpp
/usr/include/kokkos/impl/Kokkos_Error.hpp
/usr/include/kokkos/impl/Kokkos_ExecSpaceManager.hpp
/usr/include/kokkos/impl/Kokkos_FixedBufferMemoryPool.hpp
/usr/include/kokkos/impl/Kokkos_Functional_impl.hpp
/usr/include/kokkos/impl/Kokkos_FunctorAnalysis.hpp
/usr/include/kokkos/impl/Kokkos_GraphImpl.hpp
/usr/include/kokkos/impl/Kokkos_GraphImpl_Utilities.hpp
/usr/include/kokkos/impl/Kokkos_GraphImpl_fwd.hpp
/usr/include/kokkos/impl/Kokkos_GraphNodeCustomization.hpp
/usr/include/kokkos/impl/Kokkos_GraphNodeImpl.hpp
/usr/include/kokkos/impl/Kokkos_Half_FloatingPointWrapper.hpp
/usr/include/kokkos/impl/Kokkos_Half_MathematicalFunctions.hpp
/usr/include/kokkos/impl/Kokkos_Half_NumericTraits.hpp
/usr/include/kokkos/impl/Kokkos_HostBarrier.hpp
/usr/include/kokkos/impl/Kokkos_HostSharedPtr.hpp
/usr/include/kokkos/impl/Kokkos_HostSpace_ZeroMemset.hpp
/usr/include/kokkos/impl/Kokkos_HostSpace_deepcopy.hpp
/usr/include/kokkos/impl/Kokkos_HostThreadTeam.hpp
/usr/include/kokkos/impl/Kokkos_InitializationSettings.hpp
/usr/include/kokkos/impl/Kokkos_LIFO.hpp
/usr/include/kokkos/impl/Kokkos_LinkedListNode.hpp
/usr/include/kokkos/impl/Kokkos_MemoryPoolAllocator.hpp
/usr/include/kokkos/impl/Kokkos_MultipleTaskQueue.hpp
/usr/include/kokkos/impl/Kokkos_NvidiaGpuArchitectures.hpp
/usr/include/kokkos/impl/Kokkos_OptionalRef.hpp
/usr/include/kokkos/impl/Kokkos_ParseCommandLineArgumentsAndEnvironmentVariables.hpp
/usr/include/kokkos/impl/Kokkos_Profiling.hpp
/usr/include/kokkos/impl/Kokkos_Profiling_C_Interface.h
/usr/include/kokkos/impl/Kokkos_Profiling_DeviceInfo.hpp
/usr/include/kokkos/impl/Kokkos_Profiling_Interface.hpp
/usr/include/kokkos/impl/Kokkos_QuadPrecisionMath.hpp
/usr/include/kokkos/impl/Kokkos_SharedAlloc.hpp
/usr/include/kokkos/impl/Kokkos_SharedAlloc_timpl.hpp
/usr/include/kokkos/impl/Kokkos_SimpleTaskScheduler.hpp
/usr/include/kokkos/impl/Kokkos_SingleTaskQueue.hpp
/usr/include/kokkos/impl/Kokkos_Stacktrace.hpp
/usr/include/kokkos/impl/Kokkos_StaticCrsGraph_factory.hpp
/usr/include/kokkos/impl/Kokkos_StringManipulation.hpp
/usr/include/kokkos/impl/Kokkos_TaskBase.hpp
/usr/include/kokkos/impl/Kokkos_TaskNode.hpp
/usr/include/kokkos/impl/Kokkos_TaskPolicyData.hpp
/usr/include/kokkos/impl/Kokkos_TaskQueue.hpp
/usr/include/kokkos/impl/Kokkos_TaskQueueCommon.hpp
/usr/include/kokkos/impl/Kokkos_TaskQueueMemoryManager.hpp
/usr/include/kokkos/impl/Kokkos_TaskQueueMultiple.hpp
/usr/include/kokkos/impl/Kokkos_TaskQueueMultiple_impl.hpp
/usr/include/kokkos/impl/Kokkos_TaskQueue_impl.hpp
/usr/include/kokkos/impl/Kokkos_TaskResult.hpp
/usr/include/kokkos/impl/Kokkos_TaskTeamMember.hpp
/usr/include/kokkos/impl/Kokkos_TeamMDPolicy.hpp
/usr/include/kokkos/impl/Kokkos_Tools.hpp
/usr/include/kokkos/impl/Kokkos_Tools_Generic.hpp
/usr/include/kokkos/impl/Kokkos_Traits.hpp
/usr/include/kokkos/impl/Kokkos_UnorderedMap_impl.hpp
/usr/include/kokkos/impl/Kokkos_Utilities.hpp
/usr/include/kokkos/impl/Kokkos_VLAEmulation.hpp
/usr/include/kokkos/impl/Kokkos_ViewArray.hpp
/usr/include/kokkos/impl/Kokkos_ViewCtor.hpp
/usr/include/kokkos/impl/Kokkos_ViewDataAnalysis.hpp
/usr/include/kokkos/impl/Kokkos_ViewLayoutTiled.hpp
/usr/include/kokkos/impl/Kokkos_ViewMapping.hpp
/usr/include/kokkos/impl/Kokkos_ViewTracker.hpp
/usr/include/kokkos/impl/Kokkos_ViewUniformType.hpp
/usr/include/kokkos/impl/Kokkos_Volatile_Load.hpp
/usr/include/kokkos/impl/Kokkos_ZeroMemset_fwd.hpp
/usr/include/kokkos/setup
/usr/include/kokkos/setup/Kokkos_Setup_Cuda.hpp
/usr/include/kokkos/setup/Kokkos_Setup_HIP.hpp
/usr/include/kokkos/setup/Kokkos_Setup_SYCL.hpp
/usr/include/kokkos/sorting
/usr/include/kokkos/sorting/Kokkos_BinOpsPublicAPI.hpp
/usr/include/kokkos/sorting/Kokkos_BinSortPublicAPI.hpp
/usr/include/kokkos/sorting/Kokkos_NestedSortPublicAPI.hpp
/usr/include/kokkos/sorting/Kokkos_SortByKeyPublicAPI.hpp
/usr/include/kokkos/sorting/Kokkos_SortPublicAPI.hpp
/usr/include/kokkos/sorting/impl
/usr/include/kokkos/sorting/impl/Kokkos_CopyOpsForBinSortImpl.hpp
/usr/include/kokkos/sorting/impl/Kokkos_NestedSortImpl.hpp
/usr/include/kokkos/sorting/impl/Kokkos_SortByKeyImpl.hpp
/usr/include/kokkos/sorting/impl/Kokkos_SortImpl.hpp
/usr/include/kokkos/std_algorithms
/usr/include/kokkos/std_algorithms/Kokkos_AdjacentDifference.hpp
/usr/include/kokkos/std_algorithms/Kokkos_AdjacentFind.hpp
/usr/include/kokkos/std_algorithms/Kokkos_AllOf.hpp
/usr/include/kokkos/std_algorithms/Kokkos_AnyOf.hpp
/usr/include/kokkos/std_algorithms/Kokkos_BeginEnd.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Copy.hpp
/usr/include/kokkos/std_algorithms/Kokkos_CopyBackward.hpp
/usr/include/kokkos/std_algorithms/Kokkos_CopyIf.hpp
/usr/include/kokkos/std_algorithms/Kokkos_CopyN.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Count.hpp
/usr/include/kokkos/std_algorithms/Kokkos_CountIf.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Distance.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Equal.hpp
/usr/include/kokkos/std_algorithms/Kokkos_ExclusiveScan.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Fill.hpp
/usr/include/kokkos/std_algorithms/Kokkos_FillN.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Find.hpp
/usr/include/kokkos/std_algorithms/Kokkos_FindEnd.hpp
/usr/include/kokkos/std_algorithms/Kokkos_FindFirstOf.hpp
/usr/include/kokkos/std_algorithms/Kokkos_FindIf.hpp
/usr/include/kokkos/std_algorithms/Kokkos_FindIfNot.hpp
/usr/include/kokkos/std_algorithms/Kokkos_ForEach.hpp
/usr/include/kokkos/std_algorithms/Kokkos_ForEachN.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Generate.hpp
/usr/include/kokkos/std_algorithms/Kokkos_GenerateN.hpp
/usr/include/kokkos/std_algorithms/Kokkos_InclusiveScan.hpp
/usr/include/kokkos/std_algorithms/Kokkos_IsPartitioned.hpp
/usr/include/kokkos/std_algorithms/Kokkos_IsSorted.hpp
/usr/include/kokkos/std_algorithms/Kokkos_IsSortedUntil.hpp
/usr/include/kokkos/std_algorithms/Kokkos_IterSwap.hpp
/usr/include/kokkos/std_algorithms/Kokkos_LexicographicalCompare.hpp
/usr/include/kokkos/std_algorithms/Kokkos_MaxElement.hpp
/usr/include/kokkos/std_algorithms/Kokkos_MinElement.hpp
/usr/include/kokkos/std_algorithms/Kokkos_MinMaxElement.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Mismatch.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Move.hpp
/usr/include/kokkos/std_algorithms/Kokkos_MoveBackward.hpp
/usr/include/kokkos/std_algorithms/Kokkos_NoneOf.hpp
/usr/include/kokkos/std_algorithms/Kokkos_PartitionCopy.hpp
/usr/include/kokkos/std_algorithms/Kokkos_PartitionPoint.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Reduce.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Remove.hpp
/usr/include/kokkos/std_algorithms/Kokkos_RemoveCopy.hpp
/usr/include/kokkos/std_algorithms/Kokkos_RemoveCopyIf.hpp
/usr/include/kokkos/std_algorithms/Kokkos_RemoveIf.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Replace.hpp
/usr/include/kokkos/std_algorithms/Kokkos_ReplaceCopy.hpp
/usr/include/kokkos/std_algorithms/Kokkos_ReplaceCopyIf.hpp
/usr/include/kokkos/std_algorithms/Kokkos_ReplaceIf.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Reverse.hpp
/usr/include/kokkos/std_algorithms/Kokkos_ReverseCopy.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Rotate.hpp
/usr/include/kokkos/std_algorithms/Kokkos_RotateCopy.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Search.hpp
/usr/include/kokkos/std_algorithms/Kokkos_SearchN.hpp
/usr/include/kokkos/std_algorithms/Kokkos_ShiftLeft.hpp
/usr/include/kokkos/std_algorithms/Kokkos_ShiftRight.hpp
/usr/include/kokkos/std_algorithms/Kokkos_SwapRanges.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Transform.hpp
/usr/include/kokkos/std_algorithms/Kokkos_TransformExclusiveScan.hpp
/usr/include/kokkos/std_algorithms/Kokkos_TransformInclusiveScan.hpp
/usr/include/kokkos/std_algorithms/Kokkos_TransformReduce.hpp
/usr/include/kokkos/std_algorithms/Kokkos_Unique.hpp
/usr/include/kokkos/std_algorithms/Kokkos_UniqueCopy.hpp
/usr/include/kokkos/std_algorithms/impl
/usr/include/kokkos/std_algorithms/impl/Kokkos_AdjacentDifference.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_AdjacentFind.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_AllOfAnyOfNoneOf.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_Constraints.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_CopyBackward.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_CopyCopyN.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_CopyIf.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_CountCountIf.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_Equal.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_ExclusiveScan.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_FillFillN.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_FindEnd.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_FindFirstOf.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_FindIfOrNot.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_ForEachForEachN.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_FunctorsForExclusiveScan.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_GenerateGenerateN.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_HelperPredicates.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_IdentityReferenceUnaryFunctor.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_InclusiveScan.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_IsPartitioned.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_IsSorted.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_IsSortedUntil.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_LexicographicalCompare.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_MinMaxMinmaxElement.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_Mismatch.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_Move.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_MoveBackward.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_MustUseKokkosSingleInTeam.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_PartitionCopy.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_PartitionPoint.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_RandomAccessIterator.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_Reduce.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_ReducerWithArbitraryJoinerNoNeutralElement.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_RemoveAllVariants.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_Replace.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_ReplaceCopy.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_ReplaceCopyIf.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_ReplaceIf.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_Reverse.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_ReverseCopy.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_Rotate.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_RotateCopy.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_Search.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_SearchN.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_ShiftLeft.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_ShiftRight.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_SwapRanges.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_Transform.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_TransformExclusiveScan.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_TransformInclusiveScan.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_TransformReduce.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_Unique.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_UniqueCopy.hpp
/usr/include/kokkos/std_algorithms/impl/Kokkos_ValueWrapperForNoNeutralElement.hpp
/usr/include/kokkos/traits
/usr/include/kokkos/traits/Kokkos_ExecutionSpaceTrait.hpp
/usr/include/kokkos/traits/Kokkos_GraphKernelTrait.hpp
/usr/include/kokkos/traits/Kokkos_IndexTypeTrait.hpp
/usr/include/kokkos/traits/Kokkos_IterationPatternTrait.hpp
/usr/include/kokkos/traits/Kokkos_LaunchBoundsTrait.hpp
/usr/include/kokkos/traits/Kokkos_OccupancyControlTrait.hpp
/usr/include/kokkos/traits/Kokkos_PolicyTraitAdaptor.hpp
/usr/include/kokkos/traits/Kokkos_PolicyTraitMatcher.hpp
/usr/include/kokkos/traits/Kokkos_ScheduleTrait.hpp
/usr/include/kokkos/traits/Kokkos_Traits_fwd.hpp
/usr/include/kokkos/traits/Kokkos_WorkItemPropertyTrait.hpp
/usr/include/kokkos/traits/Kokkos_WorkTagTrait.hpp
/usr/lib64/cmake/Kokkos
/usr/lib64/cmake/Kokkos/KokkosConfig.cmake
/usr/lib64/cmake/Kokkos/KokkosConfigCommon.cmake
/usr/lib64/cmake/Kokkos/KokkosConfigVersion.cmake
/usr/lib64/cmake/Kokkos/KokkosTargets-relwithdebinfo.cmake
/usr/lib64/cmake/Kokkos/KokkosTargets.cmake
/usr/lib64/libkokkoscontainers.so
/usr/lib64/libkokkoscore.so
/usr/lib64/libkokkossimd.so


Generated by rpm2html 1.8.1

Fabrice Bellet, Mon May 27 23:42:38 2024