[ToDo]
- Add new markers
CUDA_C, CUDA_CPP, HIP_C, HIP_CPP, maybe ROC_C and ROC_CPP as well to the API matching entities, where we have such information
- If the above additional information is absent, the different number of arguments should be taken into account
[IMP]
[Example]
CUDA C API:
extern __host__ cudaError_t CUDARTAPI cudaEventCreate(cudaEvent_t *event);
HIP API:
hipError_t hipEventCreate(hipEvent_t* event);
CUDA C++ API:
static __inline__ __host__ cudaError_t cudaEventCreate(cudaEvent_t *event, unsigned int flags);
HIP API:
hipError_t hipEventCreateWithFlags(hipEvent_t* event, unsigned flags);
[ToDo]
CUDA_C,CUDA_CPP,HIP_C,HIP_CPP, maybeROC_CandROC_CPPas well to the API matching entities, where we have such information[IMP]
1-to-Nconditional matcher #782[Example]
CUDA C API:
HIP API:
CUDA C++ API:
HIP API: