You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- while read OBJ; do
-
- if echo "$OBJ"|grep "_$" >/dev/null
- then
- [ "$OBJ" = "caxpyc_" ] && continue
- [ "$OBJ" = "zaxpyc_" ] && continue
- [ "$OBJ" = "blas_thread_shutdown_" ] && continue
-
- O1=$(echo "$OBJ"|sed -e 's/_$//' )
-
- if grep -w "$O1" exports/gensymbol >/dev/null
- then
- true
- else
- echo "$O1"
- fi
- continue
- fi
-
- if echo "$OBJ"|grep "^cblas" >/dev/null
- then
-
- if grep -w "$OBJ" exports/gensymbol >/dev/null
- then
- true
- else
- echo "$OBJ"
- fi
- continue
- fi
-
- if echo "$OBJ"|grep "^LAPACKE" >/dev/null
- then
-
- if grep -w "$OBJ" exports/gensymbol >/dev/null
- then
- true
- else
- echo "$OBJ"
- fi
- continue
- fi
-
- if echo "$OBJ"|grep "^lapack" >/dev/null
- then
-
- if grep -w "$OBJ" exports/gensymbol >/dev/null
- then
- true
- else
- echo "$OBJ"
- fi
- fi
-
-
-
-
- done
|