78 lines
4.4 KiB
C++
78 lines
4.4 KiB
C++
/*
|
|
Copyright (c) 2015 - present Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include <set>
|
|
#include <map>
|
|
#include "Statistics.h"
|
|
|
|
// Maps CUDA header names to HIP header names
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_INCLUDE_MAP;
|
|
// Maps the names of CUDA DRIVER API types to the corresponding HIP types
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_DRIVER_TYPE_NAME_MAP;
|
|
// Maps the names of CUDA DRIVER API functions to the corresponding HIP functions
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_DRIVER_FUNCTION_MAP;
|
|
// Maps the names of CUDA RUNTIME API types to the corresponding HIP types
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_RUNTIME_TYPE_NAME_MAP;
|
|
// Maps the names of CUDA Complex API types to the corresponding HIP types
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_COMPLEX_TYPE_NAME_MAP;
|
|
// Maps the names of CUDA Complex API functions to the corresponding HIP functions
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_COMPLEX_FUNCTION_MAP;
|
|
// Maps the names of CUDA RUNTIME API functions to the corresponding HIP functions
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_RUNTIME_FUNCTION_MAP;
|
|
// Maps the names of CUDA BLAS API types to the corresponding HIP types
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_BLAS_TYPE_NAME_MAP;
|
|
// Maps the names of CUDA BLAS API functions to the corresponding HIP functions
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_BLAS_FUNCTION_MAP;
|
|
// Maps the names of CUDA RAND API types to the corresponding HIP types
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_RAND_TYPE_NAME_MAP;
|
|
// Maps the names of CUDA RAND API functions to the corresponding HIP functions
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_RAND_FUNCTION_MAP;
|
|
// Maps the names of CUDA DNN API types to the corresponding HIP types
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_DNN_TYPE_NAME_MAP;
|
|
// Maps the names of CUDA DNN API functions to the corresponding HIP functions
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_DNN_FUNCTION_MAP;
|
|
// Maps the names of CUDA FFT API types to the corresponding HIP types
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_FFT_TYPE_NAME_MAP;
|
|
// Maps the names of CUDA FFT API functions to the corresponding HIP functions
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_FFT_FUNCTION_MAP;
|
|
// Maps the names of CUDA SPARSE API types to the corresponding HIP types
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_SPARSE_TYPE_NAME_MAP;
|
|
// Maps the names of CUDA SPARSE API functions to the corresponding HIP functions
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_SPARSE_FUNCTION_MAP;
|
|
// Maps the names of CUDA CAFFE2 API types to the corresponding HIP types
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_CAFFE2_TYPE_NAME_MAP;
|
|
// Maps the names of CUDA CAFFE2 API functions to the corresponding HIP functions
|
|
extern const std::map<llvm::StringRef, hipCounter> CUDA_CAFFE2_FUNCTION_MAP;
|
|
|
|
/**
|
|
* The union of all the above maps, except includes.
|
|
*
|
|
* This should be used rarely, but is still needed to convert macro definitions (which can
|
|
* contain any combination of the above things). AST walkers can usually get away with just
|
|
* looking in the lookup table for the type of element they are processing, however, saving
|
|
* a great deal of time.
|
|
*/
|
|
const std::map<llvm::StringRef, hipCounter>& CUDA_RENAMES_MAP();
|