mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-19 12:30:16 +00:00
14 lines
286 B
C
14 lines
286 B
C
#pragma once
|
|
#cmakedefine01 DEVICE_BACKEND_HIP
|
|
#cmakedefine01 DEVICE_BACKEND_CUDA
|
|
|
|
#if DEVICE_BACKEND_HIP
|
|
#include "hip/hip_runtime.h"
|
|
#include "half.hpp"
|
|
#elif DEVICE_BACKEND_CUDA
|
|
#include "cuda_runtime.h"
|
|
#include "nvToolsExt.h"
|
|
#include "helper_cuda.h"
|
|
#include "cuda_fp16.h"
|
|
#endif
|