meta-intel/recipes-core/mkl-dnn/files/run-ptest
Naveen Saini 41967144c4 mkl-dnn: add ptest
Added api-c & test_c_symbols testcases under ptest.

Shipping benchdnn, which is a standalone correctness and performance
benchmark for Intel(R) Math Kernel Library for Deep
Neural Networks (Intel(R) MKL-DNN).

Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
2019-07-04 10:17:36 +08:00

213 B
Executable File

#!/bin/sh

cd tests ./api-c if [ $? -eq 0 ]; then echo 'PASS: api-c' else echo 'FAIL: api-c' fi ./test_c_symbols-c if [ $? -eq 0 ]; then echo 'PASS: test_c_symbols-c' else echo 'FAIL: test_c_symbols-c' fi