#!/bin/bashINTEL_MKL=${1:-""}# 0 or 1 to use intel_mklFEAT=""if["${INTEL_MKL}"="1"];thenFEAT="--features intel_mkl,local_sparse"fifor example in examples/*.rs;dofilename="$(basename"$example")"filekey="${filename%%.*}"cargo run --release$FEAT --example$filekeydone