GPU plugin has two types of tests: functional and unit tests. This article is about the latter.
- The functional test is testing a single layer, behavior, subgraph and low-precision transformation on inference engine level for various layout and data types, such as FP16 and FP32.
- The unit test is testing clDNN primitive and core-type modules on GPU plugin level. Unlike the functional test, it is possible to test by explicitly specifying the format of the input, such as
bfyx
orb_fs_yx_fsv16
.
Intel GPU unit test (aka clDNN unit test) is a set of unit tests, each of which is for testing all primitives, fusions, and fundamental core types of GPU plugin. There are four subcategories of unit tests as below.
openvino/src/plugins/intel_gpu/tests - root of Intel GPU unit test
|── fusions
|── module_tests
|── test_cases
└── test_utils
-
- Fusion is an algorithm that fuses several operations into one optimized operation. For example, two nodes of
conv -> relu
may be fused into a single node ofconv
. - Fusion unit tests checks whether the fusion is done as expected.
- fusion_test_common.cpp
- The base class for a fusing test, that is, BaseFusingTest, is implemented here. It tests whether the fusing is successful or not by comparing the execution results of the two networks, one is the fused network, the other is non-fused network for the same topology.
- BaseFusingTest has an important method called
compare()
. compare()
method has the following three tasks:- Execute two networks (fused network and not fused network)
- Compare the actual number of executed primitives with the expected number of executed primitives in test params
- Compare the results between fused network and non fused network
- BaseFusingTest has an important method called
- The base class for a fusing test, that is, BaseFusingTest, is implemented here. It tests whether the fusing is successful or not by comparing the execution results of the two networks, one is the fused network, the other is non-fused network for the same topology.
- eltwise_fusing_test.cpp
- Checks whether or not eltwise is fused to other primitives as expected
- [primitive_name]_fusion_test.cpp
- Checks that nodes such as eltwise or activation are fusing to the [primitive_name] as expected
- The detail of how to add each instance is described below.
- Fusion is an algorithm that fuses several operations into one optimized operation. For example, two nodes of
-
- It is mainly checking whether clDNN primitives and topology creation are working as designed.
- It also checks configurations for OpenCL functionalities such as cl_cache, cl_mem allocation and cl_command_queue modes
-
- Unit tests for fundamental core modules such as
ocl_user_events
, format, layout, and USM memory:- check whether
ocl_user_event
is working as expected, - check whether all format is converted to the string and trait,
- check whether various layouts are created as expected,
- check
usm_host
and USM device memory buffer creation and read/write functionality.
- check whether
- Unit tests for fundamental core modules such as
-
- Define base functions of a unit test, such as
get_test_engine()
, which returnscldnn::engine
- Utility functions such as
Float16
,random_gen
anduniform_quantized_real_distribution
- Define base functions of a unit test, such as
-
Turn on
ENABLE_TESTS
andENABLE_CLDNN_TESTS
in cmake option:cmake -DCMAKE_BUILD_TYPE=Release \ -DENABLE_TESTS=ON \ -DENABLE_CLDNN_TESTS=ON \ -DENABLE_CLDNN=ON ..
-
Build
make clDNN_unit_tests
-
You can find
clDNN_unit_tests64
in bin directory after build
You can run clDNN_unit_tests64
in bin directory which is the output of OpenVINO build
If you want to run a specific unit test, you can use gtest_filter
option as follows:
./clDNN_unit_tests64 --gtest_filter='*filter_name*'
Then, you can get the result similar to:
openvino/bin/intel64/Release$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD
openvino/bin/intel64/Release$ ./clDNN_unit_tests64 --gtest_filter='*fusings_gpu/conv_fp32_reorder_fsv16_to_bfyx.basic/0*'
Running main() from /home/openvino/thirdparty/gtest/gtest/googletest/src/gtest_main.cc
Note: Google Test filter = *fusings_gpu/conv_fp32_reorder_fsv16_to_bfyx.basic/0*
[==========] Running 1 test from 1 test suite.
[----------] Global test environment set-up.
[----------] 1 test from fusings_gpu/conv_fp32_reorder_fsv16_to_bfyx
[ RUN ] fusings_gpu/conv_fp32_reorder_fsv16_to_bfyx.basic/0
[ OK ] fusings_gpu/conv_fp32_reorder_fsv16_to_bfyx.basic/0 (84 ms)
[----------] 1 test from fusings_gpu/conv_fp32_reorder_fsv16_to_bfyx (84 ms total)
[----------] Global test environment tear-down
[==========] 1 test from 1 test suite ran. (85 ms total)
[ PASSED ] 1 test.
GPU unit tests are using two types of test macros (TEST and TEST_P) in GoogleTest (aka gtest)
-
-
TEST is a simple test case macro.
-
To make a test-case using TEST, define an individual test named
TestName
in the test suiteTestSuiteName
TEST(TestSuiteName, TestName) { ... test body ... }
-
The test body can be any code under the test. To determine the outcome within the test body, use assertion types, such as
EXPECT_EQ
andASSERT_NE
.
-
-
-
TEST_P is used to set a test case using test parameter sets
-
To make a test case using TEST_P, define an individual value-parameterized test named
TestName
that uses the test fixture classTestFixtureName
, which is the test suite name:TEST_P(TestFixtureName, TestName) { ... statements ... }
-
Then, instantiates the value-parameterized test suite
TestSuiteName
, which is defined with TEST_PINSTANTIATE_TEST_SUITE_P(InstantiationName,TestSuiteName,param_generator)
-
-
module_test and test_cases are testing GPU plugin using both TEST_P and TEST.
-
Refer to the fusion test for the test case based on TEST_P
-
TEST checks the test result by comparing the execution results with expected values after running network created from the target topology to check.
- It is important to generate test input and expected output result in TEST
- You can create input data and expected output data using these three approaches:
- Generate simple input data and calculate the expected output data from input data manually, like basic_deformable_convolution_def_group1_2
- Generate random input and get the expected output, using reference function, which is made in the test codes like mvn_test_across_channels_outside_sqrt_bfyx
- Generate random input and get the expected output from another reference kernel which exists in clDNN kernels like mvn_random_test_bsv32
-
When you allocate input data, keep in mind that the layout order in
engine.allocation_memory
is notbfyx
butbfxy
. For example, if input is{1,1,4,5}
, the layout should be as below:auto input = engine.allocate_memory({ data_types::f32, format::bfyx, { 1, 1, 5, 4 } });
- It is implemented based on TEST_P because there are many cases where multiple layouts are tested in the same topology.
- If the fusing test class already exists, you can use it. Otherwise, you should make a new fusing test class, which is inherited BaseFusingTest.
- The new fusing test class should create the
execute()
method, which creates fused / non-fused networks and callscompare
method after setting input.
- The new fusing test class should create the
- Create a test case, using TEST_P:
- You can make the desired networks using create_topologies.
flowchart LR
nodeA1(bias) --> nodeA2(conv_prim)
nodeA3(input) --> nodeA2(conv_prim)
nodeA4(weights) --> nodeA2(conv_prim)
nodeA2(conv_prim) --> nodeA5(eltwise2_mul)
nodeA6(eltwise1_data) --> nodeA7(eltwise1_add)
nodeA2(conv_prim) --> nodeA7(eltwise1_add)
nodeA7(eltwise1_add) --> nodeA8(activation)
nodeA8(activation) --> nodeA5(eltwise2_mul)
nodeA9(eltwise2_data) --> nodeA10(eltwise3_div)
nodeA11(eltwise4_data) --> nodeA12(eltwise4_add)
nodeA5(eltwise2_mul) --> nodeA10(eltwise3_div)
nodeA10(eltwise3_div) --> nodeA12(eltwise4_add)
nodeA12(eltwise4_add) --> nodeA13(reorder_bfyx)
classDef no-bg-color fill:none,stroke-width:0px
classDef moss1 fill:#D7F3A2, stroke: #B1D272, color: #262626
classDef steel1 fill:#B9D6E5, stroke: #86B3CA, color: #262626
classDef daisy1 fill:#FFE17A, stroke: #FEC91B, color: #262626
classDef coral1 fill:#FFB6B9, stroke: #FF848A, color: #262626
classDef carbon1 fill:#E9E9E9, stroke: #AEAEAE, color: #262626
class nodeA7,nodeA5,nodeA10,nodeA12 coral1
class nodeA2,nodeA13 daisy1
class nodeA3 moss1
class nodeA8 steel1
class nodeA4,nodeA1,nodeA6,nodeA9,nodeA11 carbon1
-
For example, if you design the networks like the one above, you can make the test code as follows:
class conv_fp32_multi_eltwise_4_clamp : public ConvFusingTest {}; TEST_P(conv_fp32_multi_eltwise_4_clamp, basic) { if (engine.get_device_info().supports_immad) { return; } auto p = GetParam(); create_topologies( input_layout("input", get_input_layout(p)), data("eltwise1_data", get_mem(get_output_layout(p))), data("eltwise2_data", get_mem(get_output_layout(p))), data("eltwise4_data", get_mem(get_output_layout(p))), data("bias", get_mem(get_bias_layout(p))), data("weights", get_mem(get_weights_layout(p))), convolution("conv_prim", "input", { "weights" }, { "bias" }, p.groups, p.stride, p.pad, p.dilation), eltwise("eltwise1_add", "conv_prim", "eltwise1_data", eltwise_mode::sum), activation("activation", "eltwise1_add", activation_func::clamp, { 0.5f, 2.5f }), eltwise("eltwise2_mul", "activation", "conv_prim", eltwise_mode::prod), eltwise("eltwise3_div", "eltwise2_mul", "eltwise2_data", eltwise_mode::prod), eltwise("eltwise4_add", "eltwise3_div", "eltwise4_data", eltwise_mode::sum), reorder("reorder_bfyx", "eltwise4_add", p.default_format, data_types::f32) ); implementation_desc conv_impl = { format::b_fs_yx_fsv16, "" }; bo_fused.set_option(build_option::force_implementations({ { "conv_prim", conv_impl } })); tolerance = 1e-5f; execute(p); }
-
If you want to change some node's layout format to a specific format, you can change it using
build_option::force_implementations
.- In the sample codes,
conv_prim
is set toformat::b_fs_yx_fsv16
bybuild_option::force_implementations
.
- In the sample codes,
-
tolerance
is used as a threshold to check whether or not the output results are the same between a fused network and a non-fused network in thecompare
function. -
After the test case is implemented, use
INSTANTIATE_TEST_SUITE_P
to set the test suite for each parameter case as follows.- Check all variables in
convolution_test_params
to makeCASE_CONV_FP32_2
.- In
convolution_test_params
, all tensor, format, anddata_types
are used in common in all convolution fusing tests. Therefore, you can defineCASE_CONV_FP32_2
with all variables exceptexpected_fused_primitives
andexpected_not_fused_primitives
.
- In
- Check all variables in
struct convolution_test_params {
tensor in_shape;
tensor out_shape;
tensor kernel;
tensor stride;
tensor pad;
tensor dilation;
uint32_t groups;
data_types data_type;
format input_format;
data_types weights_type;
format weights_format;
data_types default_type;
format default_format;
size_t expected_fused_primitives;
size_t expected_not_fused_primitives;
};
// in_shape; out_shape; kernel; stride; pad; dilation; groups; data_type; input_format; weights_type; weights_format; default_type; default_format;
#define CASE_CONV_FP32_2 { 1, 16, 4, 5 }, { 1, 32, 2, 3 }, { 1, 1, 3, 3 }, tensor{ 1 }, tensor{ 0 }, tensor{ 1 }, 1, data_types::f32, format::b_fs_yx_fsv16, data_types::f32, format::os_is_yx_isv16_osv16, data_types::f32, format::bfyx
INSTANTIATE_TEST_SUITE_P(fusings_gpu, conv_fp32_scale, ::testing::ValuesIn(std::vector<convolution_test_params>{
convolution_test_params{ CASE_CONV_FP32_2, 2, 3 }, // CASE_CONV_FP32_2, # of fused executed primitives, # of non fused networks
convolution_test_params{ CASE_CONV_FP32_3, 2, 3 },
}));