mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Related-To: NEO-4499 Change-Id: I0949f6fd9897b970314a82db7bae6f700fbf31d3 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
13 lines
328 B
C++
13 lines
328 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/test/unit_test/aub/aub_helper_tests.inl"
|
|
|
|
TEST(AubHelper, GivenHwInfoWhenGetMemBankSizeIsCalledThenItReturnsCorrectValue) {
|
|
EXPECT_EQ(2 * MemoryConstants::gigaByte, AubHelper::getMemBankSize(defaultHwInfo.get()));
|
|
}
|