SWDEV-452538 - Cast functions directly to void *
This fix build errors in some builds Change-Id: I1b8c9fa7186b60a20e8dfb86599c348455620c32
Этот коммит содержится в:
коммит произвёл
AlexBin Xie
родитель
19b8430f9d
Коммит
26223a792b
@@ -312,19 +312,19 @@ TEST_CASE("Unit_hipCGGridGroupType_Basic") {
|
||||
return;
|
||||
}
|
||||
|
||||
void* (*kernel_func)(void);
|
||||
void* kernel_func;
|
||||
|
||||
SECTION("Default grid group API test") {
|
||||
kernel_func = reinterpret_cast<void* (*)()>(kernel_cg_grid_group_type);
|
||||
kernel_func = reinterpret_cast<void*>(kernel_cg_grid_group_type);
|
||||
}
|
||||
#if HT_AMD
|
||||
SECTION("Base type grid group API test") {
|
||||
kernel_func = reinterpret_cast<void* (*)()>(kernel_cg_grid_group_type_via_base_type);
|
||||
kernel_func = reinterpret_cast<void*>(kernel_cg_grid_group_type_via_base_type);
|
||||
}
|
||||
#endif
|
||||
|
||||
SECTION("Public API grid group test") {
|
||||
kernel_func = reinterpret_cast<void* (*)()>(kernel_cg_grid_group_type_via_public_api);
|
||||
kernel_func = reinterpret_cast<void*>(kernel_cg_grid_group_type_via_public_api);
|
||||
}
|
||||
|
||||
// Test for block_size in powers of 2
|
||||
|
||||
Ссылка в новой задаче
Block a user