1#pragma once
2// this file is to avoid circular dependency between CUDAFunctions.h and
3// CUDAExceptions.h
4
5#include <c10/cuda/CUDAMacros.h>
6
7#include <mutex>
8
9namespace c10 {
10namespace cuda {
11C10_CUDA_API const char* get_cuda_check_suffix() noexcept;
12C10_CUDA_API std::mutex* getFreeMutex();
13} // namespace cuda
14} // namespace c10
15