CNTK
CNTK copied to clipboard
how to build on aarch?
I build cntk on arm marchine,when using ./configure ,it saied that you should specify --with-openblas or --with-mkl,because of that arm cpu can not use mkl,so i specify --with-openblas. I set the right openblas path ,but it always saied that invalied openblas path.
This is a bug of configure script
I comment configure script like as follows.
--with-openblas*)
have_openblas=yes
mathlib=openblas
# if test x$optarg = x
# then
openblas_path=$(find_openblas)
# if test x$openblas_path = x
# then
# echo "Cannot find openblas directory"
# echo "Please specify a value for --with-openblas"
# exit 1
# fi
# else
# if test $(check_dir $optarg $openblas_check) = yes
# then
# openblas_path=$optarg
# else
# echo "Invalid openblas directory $optarg"
# exit 1
# fi
# fi
# ;;