File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ struct GEN10 {
2323};
2424
2525struct CNLFamily : public GEN10 {
26- using PARSE = CmdParse<CNL >;
26+ using PARSE = CmdParse<CNLFamily >;
2727 using GfxFamily = CNLFamily;
2828 using WALKER_TYPE = GPGPU_WALKER;
2929 static const GPGPU_WALKER cmdInitGpgpuWalker;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ struct GEN8 {
2222#include " runtime/gen8/hw_cmds_generated_patched.h"
2323};
2424struct BDWFamily : public GEN8 {
25- using PARSE = CmdParse<BDW >;
25+ using PARSE = CmdParse<BDWFamily >;
2626 using GfxFamily = BDWFamily;
2727 using WALKER_TYPE = GPGPU_WALKER;
2828 static const GPGPU_WALKER cmdInitGpgpuWalker;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ struct GEN9 {
2323};
2424
2525struct SKLFamily : public GEN9 {
26- using PARSE = CmdParse<SKL >;
26+ using PARSE = CmdParse<SKLFamily >;
2727 using GfxFamily = SKLFamily;
2828 using WALKER_TYPE = GPGPU_WALKER;
2929 static const GPGPU_WALKER cmdInitGpgpuWalker;
Original file line number Diff line number Diff line change 88#include " unit_tests/gen_common/gen_cmd_parse.h"
99#include " gtest/gtest.h"
1010using GenStruct = OCLRT::GEN10;
11- using GenGfxFamily = OCLRT::CNL ;
11+ using GenGfxFamily = OCLRT::CNLFamily ;
1212#include " unit_tests/gen_common/cmd_parse_base.inl"
1313#include " unit_tests/gen_common/cmd_parse_base_mi_arb.inl"
1414#include " unit_tests/gen_common/cmd_parse_gpgpu_walker.inl"
Original file line number Diff line number Diff line change 88#include " unit_tests/gen_common/gen_cmd_parse.h"
99#include " gtest/gtest.h"
1010using GenStruct = OCLRT::GEN8;
11- using GenGfxFamily = OCLRT::BDW ;
11+ using GenGfxFamily = OCLRT::BDWFamily ;
1212#include " unit_tests/gen_common/cmd_parse_base.inl"
1313#include " unit_tests/gen_common/cmd_parse_base_mi_arb.inl"
1414#include " unit_tests/gen_common/cmd_parse_gpgpu_walker.inl"
Original file line number Diff line number Diff line change 88#include " unit_tests/gen_common/gen_cmd_parse.h"
99#include " gtest/gtest.h"
1010using GenStruct = OCLRT::GEN9;
11- using GenGfxFamily = OCLRT::SKL ;
11+ using GenGfxFamily = OCLRT::SKLFamily ;
1212#include " unit_tests/gen_common/cmd_parse_base.inl"
1313#include " unit_tests/gen_common/cmd_parse_base_mi_arb.inl"
1414#include " unit_tests/gen_common/cmd_parse_gpgpu_walker.inl"
You can’t perform that action at this time.
0 commit comments