mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 09:58:55 +08:00
add support for packed simd1 dispatch
Change-Id: I3f2bf8e62e0a38d358fb87f02c88c387c874f6b3 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
2eafa99342
commit
51dcf2b6d2
@@ -59,6 +59,12 @@ TEST(LocalID, PerThreadSizeLocalIDs_SIMD32) {
|
||||
EXPECT_EQ(6 * sizeof(GRF), getPerThreadSizeLocalIDs(simd));
|
||||
}
|
||||
|
||||
TEST(LocalID, PerThreadSizeLocalIDs_SIMD1) {
|
||||
uint32_t simd = 1;
|
||||
|
||||
EXPECT_EQ(sizeof(GRF), getPerThreadSizeLocalIDs(simd));
|
||||
}
|
||||
|
||||
struct LocalIDFixture : public ::testing::TestWithParam<std::tuple<int, int, int, int>> {
|
||||
void SetUp() override {
|
||||
simd = std::get<0>(GetParam());
|
||||
|
||||
Reference in New Issue
Block a user