Files
composable_kernel/src/include/config.h.in
Chao Liu 1f925812b2 hip build
[ROCm/composable_kernel commit: 8c923db423]
2019-03-22 14:22:58 -05:00

14 lines
292 B
C

#pragma once
#cmakedefine01 DEVICE_BACKEND_HIP
#cmakedefine01 DEVICE_BACKEND_CUDA
#if DEVICE_BACKEND_HIP
#include "hip/hip_runtime.h"
#include "hip/hip_fp16.h"
#elif DEVICE_BACKEND_CUDA
#include "cuda_runtime.h"
#include "cuda_fp16.h"
#include "nvToolsExt.h"
#include "helper_cuda.h"
#endif