2016-01-26 20:14:33 -06:00
|
|
|
/*
|
2021-07-02 11:19:03 -07:00
|
|
|
Copyright (c) 2015 - 2021 Advanced Micro Devices, Inc. All rights reserved.
|
2016-01-26 20:14:33 -06:00
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
//! HIP = Heterogeneous-compute Interface for Portability
|
|
|
|
|
//!
|
2017-01-11 18:09:33 -06:00
|
|
|
//! Define a extremely thin runtime layer that allows source code to be compiled unmodified
|
2021-01-04 19:58:20 -05:00
|
|
|
//! through either AMD CLANG or NVCC. Key features tend to be in the spirit
|
2016-01-26 20:14:33 -06:00
|
|
|
//! and terminology of CUDA, but with a portable path to other accelerators as well:
|
|
|
|
|
//
|
|
|
|
|
//! Both paths support rich C++ features including classes, templates, lambdas, etc.
|
|
|
|
|
//! Runtime API is C
|
|
|
|
|
//! Memory management is based on pure pointers and resembles malloc/free/copy.
|
|
|
|
|
//
|
2018-03-12 11:29:03 +05:30
|
|
|
//! hip_runtime.h : includes everything in hip_api.h, plus math builtins and kernel launch
|
|
|
|
|
//! macros. hip_runtime_api.h : Defines HIP API. This is a C header file and does not use any C++
|
|
|
|
|
//! features.
|
2016-01-26 20:14:33 -06:00
|
|
|
|
2017-03-31 12:11:34 -05:00
|
|
|
#ifndef HIP_INCLUDE_HIP_HIP_RUNTIME_H
|
|
|
|
|
#define HIP_INCLUDE_HIP_HIP_RUNTIME_H
|
2016-01-26 20:14:33 -06:00
|
|
|
|
2020-10-08 09:05:13 -04:00
|
|
|
#if (__gfx1010__ || __gfx1011__ || __gfx1012__ || __gfx1030__ || __gfx1031__) && __AMDGCN_WAVEFRONT_SIZE == 64
|
|
|
|
|
#error HIP is not supported on GFX10 with wavefront size 64
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-05-05 21:26:21 +00:00
|
|
|
#if !defined(__HIPCC_RTC__)
|
2016-01-26 20:14:33 -06:00
|
|
|
// Some standard header files, these are included by hc.hpp and so want to make them avail on both
|
|
|
|
|
// paths to provide a consistent include env and avoid "missing symbol" errors that only appears
|
|
|
|
|
// on NVCC path:
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
2016-02-26 05:25:30 -06:00
|
|
|
#if __cplusplus > 199711L
|
2016-02-22 15:09:23 -06:00
|
|
|
#include <thread>
|
|
|
|
|
#endif
|
2021-05-05 21:26:21 +00:00
|
|
|
#endif // !defined(__HIPCC_RTC__)
|
2016-02-22 15:09:23 -06:00
|
|
|
|
2020-01-05 23:03:23 -08:00
|
|
|
#include <hip/hip_version.h>
|
2016-04-19 15:02:12 +05:30
|
|
|
#include <hip/hip_common.h>
|
2016-01-26 20:14:33 -06:00
|
|
|
|
2020-12-15 17:38:08 -05:00
|
|
|
#if (defined(__HIP_PLATFORM_HCC__) || defined(__HIP_PLATFORM_AMD__)) && !(defined(__HIP_PLATFORM_NVCC__) || defined(__HIP_PLATFORM_NVIDIA__))
|
2021-05-28 23:15:18 +00:00
|
|
|
#include <hip/amd_detail/amd_hip_runtime.h>
|
2020-12-15 17:38:08 -05:00
|
|
|
#elif !(defined(__HIP_PLATFORM_HCC__) || defined(__HIP_PLATFORM_AMD__)) && (defined(__HIP_PLATFORM_NVCC__) || defined(__HIP_PLATFORM_NVIDIA__))
|
2021-05-28 23:15:18 +00:00
|
|
|
#include <hip/nvidia_detail/nvidia_hip_runtime.h>
|
2017-01-11 18:09:33 -06:00
|
|
|
#else
|
2020-12-15 17:38:08 -05:00
|
|
|
#error("Must define exactly one of __HIP_PLATFORM_AMD__ or __HIP_PLATFORM_NVIDIA__");
|
2017-01-11 18:09:33 -06:00
|
|
|
#endif
|
2016-01-26 20:14:33 -06:00
|
|
|
|
2021-01-04 19:58:20 -05:00
|
|
|
// The following are deprecation notices.
|
2021-01-19 12:18:01 -05:00
|
|
|
// They will be removed after upstream updation
|
|
|
|
|
#if 0 // Temporarily disable deprecation warning as it will fail rocgdb test
|
2021-01-04 19:58:20 -05:00
|
|
|
#if defined(__clang__)
|
|
|
|
|
//The following work for clang rather than for gnu gcc/g++/c++
|
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
|
#pragma GCC diagnostic warning "-Wcpp"
|
|
|
|
|
#ifdef __HCC__
|
|
|
|
|
#warning("__HCC__ is deprecated, please don't use it")
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef __HIP_ROCclr__
|
|
|
|
|
#warning("__HIP_ROCclr__ is deprecated, please don't use it")
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef __HIP_PLATFORM_HCC__
|
|
|
|
|
#warning("__HIP_PLATFORM_HCC__ is deprecated, please use __HIP_PLATFORM_AMD__ instead")
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef __HIP_PLATFORM_NVCC_
|
|
|
|
|
#warning("__HIP_PLATFORM_NVCC_ is deprecated, please use __HIP_PLATFORM_NVIDIA__ instead")
|
|
|
|
|
#endif
|
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
|
//The following work for gnu gcc/g++/c++ rather than for clang
|
|
|
|
|
#ifdef __HCC__
|
|
|
|
|
#pragma message ("__HCC__ is deprecated, please don't use it")
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef __HIP_ROCclr__
|
|
|
|
|
#pragma message ("__HIP_ROCclr__ is deprecated, please don't use it")
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef __HIP_PLATFORM_HCC__
|
|
|
|
|
#pragma message ("__HIP_PLATFORM_HCC__ is deprecated, please use __HIP_PLATFORM_AMD__ instead")
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef __HIP_PLATFORM_NVCC_
|
|
|
|
|
#pragma message ("__HIP_PLATFORM_NVCC_ is deprecated, please use __HIP_PLATFORM_NVIDIA__ instead")
|
|
|
|
|
#endif
|
|
|
|
|
#endif // defined(__clang__)
|
2021-01-19 12:18:01 -05:00
|
|
|
#endif
|
2016-01-26 20:14:33 -06:00
|
|
|
|
2021-05-05 21:26:21 +00:00
|
|
|
#if !defined(__HIPCC_RTC__)
|
2016-04-19 15:02:12 +05:30
|
|
|
#include <hip/hip_runtime_api.h>
|
2019-10-10 17:27:28 +03:00
|
|
|
#include <hip/library_types.h>
|
2021-05-05 21:26:21 +00:00
|
|
|
#endif // !defined(__HIPCC_RTC__)
|
|
|
|
|
#include <hip/hip_vector_types.h>
|
2017-03-31 12:11:34 -05:00
|
|
|
|
2019-10-10 17:27:28 +03:00
|
|
|
#endif
|