test: add QRB4210 board support 27/268627/1
authorInki Dae <inki.dae@samsung.com>
Tue, 28 Dec 2021 08:28:30 +0000 (17:28 +0900)
committerInki Dae <inki.dae@samsung.com>
Tue, 28 Dec 2021 08:28:30 +0000 (17:28 +0900)
[Version] 0.3.0-0
[Issue type] new feature

Added DA's target board(QRB4210) support.

Change-Id: I9ece225085946340a33dc13826b3acfae8cd1d32
Signed-off-by: Inki Dae <inki.dae@samsung.com>
packaging/inference-engine-interface.spec
test/src/inference_engine_test_common.cpp
test/src/inference_engine_test_common.h

index 0fd9281..6b32047 100644 (file)
@@ -1,6 +1,6 @@
 Name:        inference-engine-interface
 Summary:     Interface of inference engines
-Version:     0.2.1
+Version:     0.3.0
 Release:     0
 Group:       Multimedia/Framework
 License:     Apache-2.0
index 3033bc6..67036d2 100644 (file)
@@ -49,6 +49,7 @@ static MachineCapacity MachineCap[] = {
        { true, true, false },      // ODROID
        { true, true, true },      // VIM3
        { true, true, false },      // NIKE-M
+       { true, true, true },     // QRB4210
        { false, false, false }     // MAX
 };
 
@@ -58,7 +59,8 @@ static std::map<std::string, int> Machine_Idx = {
        { "Hardkernel Odroid XU3", MACHINE_NAME_ODROID },
        { "Hardkernel Odroid XU4", MACHINE_NAME_ODROID },
        { "Samsung BEYOND1LTE EUR OPEN 22 board based on EXYNOS9820", MACHINE_NAME_TM4 },
-       { "Samsung DTV based on Nike-M SoC", MACHINE_NAME_NIKE_M }
+       { "Samsung DTV based on Nike-M SoC", MACHINE_NAME_NIKE_M },
+       { "Qualcomm Technologies, Inc. QRB4210 Samsung VR9500C", MACHINE_NAME_QRB4210 }
        // TODO.
 };
 
index 3904a22..403fecf 100644 (file)
@@ -35,6 +35,7 @@ enum {
        MACHINE_NAME_ODROID,
        MACHINE_NAME_VIM3,
        MACHINE_NAME_NIKE_M,
+       MACHINE_NAME_QRB4210,
        MACHINE_NAME_MAX,
 };