As this snippet shows, HCC is no longer supported by roctracer:

#if HIP_VDI
...
#else
#error HCC support dropped
#endif

Removed HIP_VDI from the CMakeLists.txt, and the source code.

Change-Id: Ib273da2a5af6d67fa1b021a7eca3ff785c8b9c73
Αυτή η υποβολή περιλαμβάνεται σε:
Laurent Morichetti
2021-04-15 19:37:29 -07:00
υποβλήθηκε από Laurent Morichetti
γονέας faada3e569
υποβολή 8fb3cdb30b
6 αρχεία άλλαξαν με 4 προσθήκες και 32 διαγραφές
@@ -567,14 +567,6 @@ void hip_api_flush_cb(hip_api_trace_entry_t* entry) {
cxx_demangle(entry->name),
data->args.hipExtModuleLaunchKernel.hStream);
break;
#if !HIP_VDI
case HIP_API_ID_hipHccModuleLaunchKernel:
fprintf(hip_api_file_handle, "%s(kernel(%s) stream(%p))\n",
oss.str().c_str(),
cxx_demangle(entry->name),
data->args.hipHccModuleLaunchKernel.hStream);
break;
#endif
default:
fprintf(hip_api_file_handle, "%s()\n", oss.str().c_str());
}