Add option to pass names to HCC dispatch API (for debug)

[ROCm/hip commit: 176ff824d1]
Этот коммит содержится в:
Ben Sander
2017-06-23 10:39:16 -05:00
родитель ed1f242c60
Коммит 0f2fd1372f
+7 -1
Просмотреть файл
@@ -451,7 +451,13 @@ hipError_t ihipModuleLaunchKernel(hipFunction_t f,
hc::completion_future cf;
lp.av->dispatch_hsa_kernel(&aql, config[1] /* kernarg*/, kernArgSize,
(startEvent || stopEvent) ? &cf : nullptr);
(startEvent || stopEvent) ? &cf : nullptr
#define USE_NAMED_KERNEL 0
#if USE_NAMED_KERNEL
, f->_name.c_str()
#endif
);
if (startEvent) {