Kokkos Core Kernels Package Version of the Day
Loading...
Searching...
No Matches
Kokkos_Vectorization.hpp
Go to the documentation of this file.
1//@HEADER
2// ************************************************************************
3//
4// Kokkos v. 4.0
5// Copyright (2022) National Technology & Engineering
6// Solutions of Sandia, LLC (NTESS).
7//
8// Under the terms of Contract DE-NA0003525 with NTESS,
9// the U.S. Government retains certain rights in this software.
10//
11// Part of Kokkos, under the Apache License v2.0 with LLVM Exceptions.
12// See https://kokkos.org/LICENSE for license information.
13// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
14//
15//@HEADER
16
19#ifndef KOKKOS_IMPL_PUBLIC_INCLUDE
20#include <Kokkos_Macros.hpp>
21static_assert(false,
22 "Including non-public Kokkos header files is not allowed.");
23#endif
24#ifndef KOKKOS_VECTORIZATION_HPP
25#define KOKKOS_VECTORIZATION_HPP
26
27#include <Kokkos_Macros.hpp>
28
29#if defined(KOKKOS_ENABLE_CUDA)
30#include <Cuda/Kokkos_Cuda_Vectorization.hpp>
31#elif defined(KOKKOS_ENABLE_HIP)
32#include <HIP/Kokkos_HIP_Vectorization.hpp>
33#endif
34
35#endif