mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
The major changes are
1. Moving CUDA/PacketMath.h to GPU/PacketMath.h
2. Moving CUDA/MathFunctions.h to GPU/MathFunction.h
3. Moving CUDA/CudaSpecialFunctions.h to GPU/GpuSpecialFunctions.h
The above three changes effectively enable the Eigen "Packet" layer for the HIP platform
4. Merging the "hip_basic" and "cuda_basic" unit tests into one ("gpu_basic")
5. Updating the "EIGEN_DEVICE_FUNC" marking in some places
The change has been tested on the HIP and CUDA platforms.
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
// This file is part of Eigen, a lightweight C++ template library
|
|
// for linear algebra.
|
|
//
|
|
// Copyright (C) 2014 Benoit Steiner <benoit.steiner.goog@gmail.com>
|
|
// Copyright (C) 2018 Deven Desai <deven.desai.amd@gmail.com>
|
|
//
|
|
// This Source Code Form is subject to the terms of the Mozilla
|
|
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
#if defined(EIGEN_CXX11_TENSOR_GPU_HIP_CUDA_DEFINES_H)
|
|
|
|
#undef gpuStream_t
|
|
#undef gpuDeviceProp_t
|
|
#undef gpuError_t
|
|
#undef gpuSuccess
|
|
#undef gpuErrorNotReady
|
|
#undef gpuGetDeviceCount
|
|
#undef gpuGetErrorString
|
|
#undef gpuGetDeviceProperties
|
|
#undef gpuStreamDefault
|
|
#undef gpuGetDevice
|
|
#undef gpuSetDevice
|
|
#undef gpuMalloc
|
|
#undef gpuFree
|
|
#undef gpuMemsetAsync
|
|
#undef gpuMemcpyAsync
|
|
#undef gpuMemcpyDeviceToDevice
|
|
#undef gpuMemcpyDeviceToHost
|
|
#undef gpuMemcpyHostToDevice
|
|
#undef gpuStreamQuery
|
|
#undef gpuSharedMemConfig
|
|
#undef gpuDeviceSetSharedMemConfig
|
|
#undef gpuStreamSynchronize
|
|
#undef gpuDeviceSynchronize
|
|
#undef gpuMemcpy
|
|
|
|
#undef EIGEN_CXX11_TENSOR_GPU_HIP_CUDA_DEFINES_H
|
|
|
|
#endif // EIGEN_CXX11_TENSOR_GPU_HIP_CUDA_DEFINES_H
|