diff --git a/Jenkinsfile b/Jenkinsfile index a5b8b937b3..f9e2383e7f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,5 +7,5 @@ * */ -dependenciesRevision='b74884742b0b6a1333713313c53a45b62312869c-2046' +dependenciesRevision='6a64bb27c1e36b51ff17335f34aa92b2e15fbd4c-2047' kernelVersion='dev-4653' diff --git a/manifests/manifest.yml b/manifests/manifest.yml index 6a302f2c7b..944fcd1ca9 100644 --- a/manifests/manifest.yml +++ b/manifests/manifest.yml @@ -3,7 +3,7 @@ components: branch: master dest_dir: aub_stream repository: https://github.com/intel/aubstream - revision: f3d48d13148542a14b21559d25ca13f2b112f0d2 + revision: fab6b560ba8890fa4f1dc64e06fd96af9b341f64 type: git gmmlib: asset_name: gmmlib @@ -41,7 +41,7 @@ components: dest_dir: kernels_bin type: git branch: kernels_bin - revision: 2046-635 + revision: 2047-636 kmdaf: branch: kmdaf dest_dir: kmdaf @@ -84,5 +84,5 @@ components: dest_dir: wsl revision: 56430997dac34ca0e9e18c177636234cac26ad54 type: git -converter: M-2046 +converter: M-2047 version: '1' diff --git a/third_party/aub_stream/aubstream/product_family.h b/third_party/aub_stream/aubstream/product_family.h index 2d7cfebf12..45018ead07 100644 --- a/third_party/aub_stream/aubstream/product_family.h +++ b/third_party/aub_stream/aubstream/product_family.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 Intel Corporation + * Copyright (C) 2022-2023 Intel Corporation * * SPDX-License-Identifier: MIT * @@ -11,22 +11,22 @@ namespace aub_stream { enum class ProductFamily : uint32_t { - Bdw, - Skl, - Kbl, - Cfl, - Bxt, - Glk, - Icllp, - Tgllp, - Adls, - Adlp, - Adln, - Dg1, - XeHpSdv, - Dg2, - Pvc, - Mtl, + Bdw = 0u, + Skl = 1u, + Kbl = 2u, + Cfl = 3u, + Bxt = 4u, + Glk = 5u, + Icllp = 6u, + Tgllp = 7u, + Adls = 8u, + Adlp = 9u, + Adln = 10u, + Dg1 = 11u, + XeHpSdv = 12u, + Dg2 = 13u, + Pvc = 14u, + Mtl = 15u, MaxProduct, }; } // namespace aub_stream