Revert "Add xe_hp_sdv unit test target + minor test fixes"

This reverts commit 6f75d67406.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2021-08-01 10:25:35 +02:00
committed by Compute-Runtime-Automation
parent 0dc33b19e9
commit 1f4a835314
18 changed files with 44 additions and 88 deletions

View File

@@ -95,7 +95,6 @@ class HwHelper {
virtual const StackVec<uint32_t, 6> getThreadsPerEUConfigs() const = 0;
virtual bool getEnableLocalMemory(const HardwareInfo &hwInfo) const = 0;
virtual std::string getExtensions() const = 0;
virtual std::string getDeviceMemoryName() const = 0;
static uint32_t getMaxThreadsForVfe(const HardwareInfo &hwInfo);
virtual uint32_t getMetricsLibraryGenId() const = 0;
virtual uint32_t getMocsIndex(const GmmHelper &gmmHelper, bool l3enabled, bool l1enabled) const = 0;
@@ -274,8 +273,6 @@ class HwHelperHw : public HwHelper {
std::string getExtensions() const override;
std::string getDeviceMemoryName() const override;
uint32_t getMetricsLibraryGenId() const override;
uint32_t getMocsIndex(const GmmHelper &gmmHelper, bool l3enabled, bool l1enabled) const override;

View File

@@ -139,9 +139,4 @@ bool HwHelperHw<GfxFamily>::additionalPipeControlArgsRequired() const {
return false;
}
template <typename GfxFamily>
std::string HwHelperHw<GfxFamily>::getDeviceMemoryName() const {
return "DDR";
}
} // namespace NEO

View File

@@ -193,9 +193,4 @@ inline bool HwHelperHw<GfxFamily>::preferSmallWorkgroupSizeForKernel(const size_
return true;
}
template <typename GfxFamily>
std::string HwHelperHw<GfxFamily>::getDeviceMemoryName() const {
return "HBM";
}
} // namespace NEO