[GPU] Update to use immad with oneDNN test case. (#11808)
Update correct test case Signed-off-by: hyunback <hyunback.kim@intel.com>
This commit is contained in:
@@ -32,7 +32,7 @@ class ConcatOneDNNFusingTest : public ::BaseFusingTest<concat_test_params> {
|
||||
public:
|
||||
void execute(concat_test_params& p) {
|
||||
// Onednn post operation has issue in a machine that does not support imad.
|
||||
if (!engine.get_device_info().supports_imad)
|
||||
if (!engine.get_device_info().supports_immad)
|
||||
return;
|
||||
|
||||
auto input0_prim = get_mem(get_input_layout(p));
|
||||
|
||||
@@ -220,7 +220,7 @@ class WeightsPrimitiveFusingTestOneDNN : public BaseFusingTest<convolution_test_
|
||||
public:
|
||||
void execute(convolution_test_params& p) {
|
||||
// Onednn post operation has issue in a machine that does not support imad.
|
||||
if (!engine.get_device_info().supports_imad)
|
||||
if (!engine.get_device_info().supports_immad)
|
||||
return;
|
||||
|
||||
auto input_prim = p.data_type == data_types::u8 ? get_mem(get_input_layout(p), 0, 10) : get_mem(get_input_layout(p));
|
||||
|
||||
@@ -98,7 +98,7 @@ class FullyConnectedFusingTestOneDNN : public BaseFusingTest<fully_connected_tes
|
||||
public:
|
||||
void execute(fully_connected_test_params& p) {
|
||||
// Onednn post operation has issue in a machine that does not support imad.
|
||||
if (!engine.get_device_info().supports_imad)
|
||||
if (!engine.get_device_info().supports_immad)
|
||||
return;
|
||||
|
||||
auto input_prim = p.data_type == data_types::u8 ? get_mem(get_input_layout(p), 0, 10) : get_mem(get_input_layout(p));
|
||||
|
||||
@@ -518,7 +518,7 @@ class PoolingOneDNNFusingTest : public ::BaseFusingTest<pooling_test_params> {
|
||||
public:
|
||||
void execute(pooling_test_params& p) {
|
||||
// Onednn post operation has issue in a machine that does not support imad.
|
||||
if (!engine.get_device_info().supports_imad)
|
||||
if (!engine.get_device_info().supports_immad)
|
||||
return;
|
||||
|
||||
auto input_prim = get_mem(get_input_layout(p));
|
||||
|
||||
@@ -3570,7 +3570,7 @@ public:
|
||||
void execute(gemm_params& p) {
|
||||
#ifdef ENABLE_ONEDNN_FOR_GPU
|
||||
auto& engine = get_onednn_test_engine();
|
||||
if (!engine.get_device_info().supports_imad)
|
||||
if (!engine.get_device_info().supports_immad)
|
||||
return;
|
||||
#else
|
||||
auto& engine = get_test_engine();
|
||||
|
||||
Reference in New Issue
Block a user