Skip to content

Commit cf0acca

Browse files
fix: disable indirect detection, PVC
Related-To: NEO-13372, GSD-10403 Signed-off-by: Dominik Dabek <[email protected]> Source: 5167f34
1 parent 668fb75 commit cf0acca

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

shared/source/helpers/definitions/indirect_detection_versions.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
namespace NEO {
1313
namespace IndirectDetectionVersions {
14-
constexpr uint32_t requiredDetectIndirectVersionPVC = 3u;
14+
constexpr uint32_t disabled = std::numeric_limits<uint32_t>::max();
15+
constexpr uint32_t requiredDetectIndirectVersionPVC = disabled;
1516
constexpr uint32_t requiredDetectIndirectVersionBindless = 4u;
1617
constexpr uint32_t requiredDetectIndirectVersionVectorCompiler = 6u;
17-
constexpr uint32_t disabled = std::numeric_limits<uint32_t>::max();
1818
} // namespace IndirectDetectionVersions
1919
} // namespace NEO

shared/source/xe_hpc_core/pvc/os_agnostic_product_helper_pvc.inl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,11 @@ uint32_t ProductHelperHw<gfxProduct>::getRequiredDetectIndirectVersion() const {
203203
return IndirectDetectionVersions::requiredDetectIndirectVersionPVC;
204204
}
205205

206+
template <>
207+
uint32_t ProductHelperHw<gfxProduct>::getRequiredDetectIndirectVersionVC() const {
208+
return IndirectDetectionVersions::requiredDetectIndirectVersionPVC;
209+
}
210+
206211
template <>
207212
std::optional<aub_stream::ProductFamily> ProductHelperHw<gfxProduct>::getAubStreamProductFamily() const {
208213
return aub_stream::ProductFamily::Pvc;

0 commit comments

Comments
 (0)