File: libmkl-rt.config.in

package info (click to toggle)
intel-mkl 2020.4.304-7
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 566,272 kB
  • sloc: xml: 3,919; sh: 798; python: 252; cpp: 211; ansic: 169; lisp: 145; awk: 117; makefile: 46
file content (23 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/sh
set -e

# source debconf library
. /usr/share/debconf/confmodule

db_settitle libmkl-rt/title

# potential license violation
db_input critical libmkl-rt/use-as-default-blas-lapack || true
db_go

# select the exact symlinks that should point to MKL. This won't pop up
# if the user rejects to use MKL as default BLAS/LAPACK.
db_get libmkl-rt/use-as-default-blas-lapack
if [ "$RET" = "true" ]; then
  db_input high libmkl-rt/exact-so-3-selections || true
  db_go
fi

#DEBHELPER#

exit 0