Цей коміт міститься в:
Alex Voicu
2017-11-20 15:34:50 +00:00
джерело f93859cdc2 e8ede28ec4
коміт c5f2b22d0d
65 змінених файлів з 320 додано та 265 видалено
+17
Переглянути файл
@@ -91,6 +91,7 @@ namespace hip_impl
const dim3& dimBlocks,
uint32_t sharedMemBytes,
hipStream_t stream,
<<<<<<< HEAD
void** kernarg)
{
const auto it0 = functions().find(function_address);
@@ -133,6 +134,22 @@ namespace hip_impl
nullptr,
kernarg);
}
=======
void* locked_stream,
const char* kernel_name,
hc::accelerator_view* acc_v)
{ // Precondition: acc_v is the accelerator_view associated with stream
// which is guarded by locked_stream;
// locked_stream is deletable.
using L = decltype(stream->lockopen_preKernelCommand());
stream->lockclose_postKernelCommand(kernel_name, acc_v);
delete static_cast<L*>(locked_stream);
locked_stream = nullptr;
if(HIP_PROFILE_API) {
MARKER_END();
>>>>>>> e8ede28ec4f5744185b171031e537237afb7affa
}
}
}