mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 21:09:03 +02:00

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>
213 B
Executable File
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