Revert "Use igc interface to get max param size"

This reverts commit a04d206fdd.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2021-08-07 08:11:36 +02:00
committed by Compute-Runtime-Automation
parent 2f0fcf4aee
commit d81c637b96
8 changed files with 1 additions and 47 deletions

View File

@@ -78,7 +78,7 @@ void MockCompilerEnableGuard::Enable() {
if (fclDebugVars == nullptr) {
fclDebugVars.reset(new MockCompilerDebugVars);
}
if (igcDebugVars == nullptr) {
if (fclDebugVars == nullptr) {
igcDebugVars.reset(new MockCompilerDebugVars);
}

View File

@@ -91,10 +91,6 @@ class MockDevice : public RootDevice {
}
}
size_t getMaxParameterSizeFromIGC() const override {
return maxParameterSizeFromIGC;
}
const char *getProductAbbrev() const;
template <typename T>
@@ -157,7 +153,6 @@ class MockDevice : public RootDevice {
bool isDebuggerActiveParentCall = true;
bool isDebuggerActiveReturn = false;
size_t maxParameterSizeFromIGC = 0u;
};
template <>