1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
|
Source: intel-mkl
Section: non-free/science
Homepage: https://software.intel.com/en-us/mkl
Priority: optional
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/science-team/intel-mkl
Vcs-Git: https://salsa.debian.org/science-team/intel-mkl.git
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Uploaders: Mo Zhou <lumin@debian.org>,
Build-Depends: debhelper-compat (= 13),
python3 (>= 3.6),
rpm,
cpio,
rpm2cpio,
debconf,
po-debconf,
Rules-Requires-Root: no
XS-Autobuild: yes
# [ References ]
# 1. https://github.com/intel/mkl-dnn/issues/206
# 2. https://software.intel.com/en-us/mkl-linux-developer-guide-dynamic-libraries-in-the-lib-intel64-lin-directory
# 3. https://software.intel.com/en-us/articles/intel-mkl-link-line-advisor
# [ Binary Package Index ]
# * Root Meta Packages
# + intel-mkl
# - basic set of MKL dev files and libraries
# - top-level meta package for i386 architecture
# + intel-mkl-cluster [amd64]
# - = basic set + cluster support
# + intel-mkl-full [amd64]
# - = basic set + cluster support + i386 libs (multiarch)
# - should pull all files provided by MKL except for the filtered ones.
# * Tool Packages
# + MKL Link Tool
# * Development Packages
# + Common Development Files (C/Fortran)
# - libmkl-dev
# + Static Libs
# - divided by layer
# + Cluster Libraries
# - libmkl_{scalapack*,cdft,blacs*}.a
# + Benchmark Files
# - ignored. Too problematic as reported by lintian.
# * Shared Object Packages
# + SDL (IMPORTANT!)
# - libmkl_rt
# + Interface Layer
# - libmkl_{intel*,gf*}
# + Threading Layer
# - libmkl_{intel,tbb,gnu,pgi}_thread
# + Computational Layer
# - libmkl_{core,def,mc*,avx*,vml*}
# + Cluster Libraries
# - libmkl_{scalapack*,cdft*,blacs*}.so
# [ Meta Packages ] ###########################################################
Package: intel-mkl
Section: non-free/metapackages
Architecture: amd64 i386
Multi-Arch: same
Depends: ${misc:Depends},
libmkl-dev (= ${binary:Version}),
Description: Intel® Math Kernel Library (Intel® MKL)
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance. The library provides Fortran and C programming language
interfaces. Intel® MKL C language interfaces can be called from applications
written in either C or C++, as well as in any other language that can
reference a C interface.
.
This package pulls the basic set of development files and libraries of MKL
in the present architecture. Cluster support is not included.
.
Note that MKL's performance on AMD CPUs is not guaranteed.
Package: intel-mkl-cluster
Section: non-free/metapackages
# There is no cluster support for i386
Architecture: amd64
Multi-Arch: same
Depends: ${misc:Depends},
intel-mkl (= ${binary:Version}),
libmkl-meta-cluster (= ${binary:Version}),
Recommends: mpich,
libopenmpi-dev,
Description: Intel® Math Kernel Library (Intel® MKL) (Cluster)
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance. The library provides Fortran and C programming language
interfaces. Intel® MKL C language interfaces can be called from applications
written in either C or C++, as well as in any other language that can
reference a C interface.
.
This package pulls the development files and libraries of MKL in the present
architecture, including Cluster support.
Package: intel-mkl-doc
Section: non-free/doc
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends},
libjs-jquery,
Description: Intel® Math Kernel Library (Intel® MKL) (Doc)
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance. The library provides Fortran and C programming language
interfaces. Intel® MKL C language interfaces can be called from applications
written in either C or C++, as well as in any other language that can
reference a C interface.
.
This package ships several document files, but not a complete copy of MKL doc.
Please go to the homepage for the full documentation.
https://software.intel.com/en-us/mkl
Package: intel-mkl-full
Section: non-free/metapackages
Architecture: amd64
Multi-Arch: same
Depends: ${misc:Depends},
intel-mkl (= ${binary:Version}),
intel-mkl-cluster (= ${binary:Version}),
libmkl-full-dev (= ${binary:Version}),
intel-mkl-doc (= ${source:Version}),
Recommends: intel-mkl-linktool (= ${binary:Version}),
Suggests: hpcc,
Description: Intel® Math Kernel Library (Intel® MKL) (Full)
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance. The library provides Fortran and C programming language
interfaces. Intel® MKL C language interfaces can be called from applications
written in either C or C++, as well as in any other language that can
reference a C interface.
.
This package pulls the full version of MKL, including several i386 packages.
# [ Tool Packages ] ###########################################################
Package: intel-mkl-linktool
Section: non-free/utils
Architecture: i386
# Multi-Arch: This tool (pre-built binary) can be used on amd64 too.
Multi-Arch: foreign
Depends: ${misc:Depends},
${shlibs:Depends},
Description: Intel® Math Kernel Library (Intel® MKL) Link Tool v4.7
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package provides a command line tool which suggests compiler argument
for linking against MKL.
# [ Development Packages ] ####################################################
Package: libmkl-full-dev
Section: non-free/libdevel
Architecture: amd64
Multi-Arch: foreign
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-dev (= ${binary:Version}),
libmkl-rt (= ${binary:Version}),
libmkl-interface-dev (= ${binary:Version}),
libmkl-threading-dev (= ${binary:Version}),
libmkl-computational-dev (= ${binary:Version}),
Recommends: intel-mkl-doc (= ${source:Version}),
libmkl-rt:i386 (= ${binary:Version}),
libmkl-interface-dev:i386 (= ${binary:Version}),
libmkl-threading-dev:i386 (= ${binary:Version}),
libmkl-computational-dev:i386 (= ${binary:Version}),
# Copied from here: https://software.intel.com/en-us/mkl-linux-developer-guide-2019-beta
# Upstream revision: 062
Description: Intel® Math Kernel Library (Intel® MKL) (Full Version Dev)
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance. The library provides Fortran and C programming language
interfaces. Intel® MKL C language interfaces can be called from applications
written in either C or C++, as well as in any other language that can
reference a C interface.
.
Intel® MKL provides comprehensive functionality support in these major areas
of computation:
.
* BLAS (level 1, 2, and 3) and LAPACK linear algebra routines, offering
vector, vector-matrix, and matrix-matrix operations.
* ScaLAPACK distributed processing linear algebra routines, as well as the
Basic Linear Algebra Communications Subprograms (BLACS) and the Parallel
Basic Linear Algebra Subprograms (PBLAS).
* Intel® MKL PARDISO (a direct sparse solver based on Parallel Direct Sparse
Solver PARDISO*), an iterative sparse solver, and supporting sparse BLAS
(level 1, 2, and 3) routines for solving sparse systems of equations, as
well as a distributed version of Intel® MKL PARDISO solver provided for
use on clusters.
* Fast Fourier transform (FFT) functions in one, two, or three dimensions
with support for mixed radices (not limited to sizes that are powers of 2),
as well as distributed versions of these functions provided for use on
clusters.
* Vector Mathematics (VM) routines for optimized mathematical operations
on vectors.
* Vector Statistics (VS) routines, which offer high-performance vectorized
random number generators (RNG) for several probability distributions,
convolution and correlation routines, and summary statistics functions.
* Data Fitting Library, which provides capabilities for spline-based
approximation of functions, derivatives and integrals of functions, and
search.
* Extended Eigensolver, a shared memory programming (SMP) version of an
eigensolver based on the Feast Eigenvalue Solver.
* Deep Neural Network (DNN) primitive functions with C language interface.
.
This package pulls all the header files, static and shared objects of MKL.
Package: libmkl-dev
Section: non-free/libdevel
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-rt (= ${binary:Version}),
libmkl-interface-dev (= ${binary:Version}),
libmkl-threading-dev (= ${binary:Version}),
libmkl-computational-dev (= ${binary:Version}),
pkg-config,
libblas-dev | libblas.so,
liblapack-dev | liblapack.so,
Recommends:
# for iomp (but its debian packaging is not multi-arch installable
libomp-dev | libomp-11-dev | libomp-12-dev | libomp-13-dev | libomp-14-dev | libomp-x.y-dev,
# for gomp
libgcc-10-dev | libgcc-11-dev | libgcc-12-dev,
# for tbb
libtbb-dev
Enhances: libblas.so, libblas64.so,
liblapack.so, liblapack64.so,
Suggests: intel-mkl-doc (= ${source:Version}),
Description: Intel® Math Kernel Library (Intel® MKL) (Dev)
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance. The library provides Fortran and C programming language
interfaces. Intel® MKL C language interfaces can be called from applications
written in either C or C++, as well as in any other language that can
reference a C interface.
.
This package pulls the headers of MKL.
Package: libmkl-interface-dev
Section: non-free/libdevel
Architecture: amd64 i386
Multi-Arch: same
Depends: ${misc:Depends},
libmkl-meta-interface (= ${binary:Version}),
Description: Static libs of intel-MKL: Interface Layer
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package ships the static libraries of Interface Layer.
Package: libmkl-threading-dev
Section: non-free/libdevel
Architecture: amd64 i386
Multi-Arch: same
Depends: ${misc:Depends},
libmkl-meta-threading (= ${binary:Version}),
Recommends: libtbb-dev, libomp-dev | libomp-x.y-dev,
Description: Static libs of intel-MKL: Threading Layer
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package ships the static libraries of Threading Layer.
Package: libmkl-computational-dev
Section: non-free/libdevel
Architecture: amd64 i386
Multi-Arch: same
Depends: ${misc:Depends},
libmkl-meta-computational (= ${binary:Version}),
Description: Static libs of intel-MKL: Computational Layer
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package ships the static libraries of Computational Layer.
Package: libmkl-cluster-dev
Section: non-free/libdevel
Architecture: amd64
Multi-Arch: same
Depends: ${misc:Depends},
libmkl-meta-cluster (= ${binary:Version}),
mpi-default-dev,
mpi-default-bin,
Description: Static libs of intel-MKL: Cluster
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package ships the static libraries for Cluster.
# [ Shared Object Packages ] ##################################################
Package: libmkl-locale
Section: non-free/misc
Architecture: amd64 i386
Multi-Arch: foreign
Depends: ${misc:Depends},
Description: Intel® MKL: Locale Files Used by All Shared Objects
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package ships the message catalog file for shared objects from MKL.
# [ Shared Object Packages ] -- SDL: Single Dymamic Library ###################
Package: libmkl-rt
Section: non-free/libs
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
debconf,
# This library automatically selects shared objects from the three layers
libmkl-meta-interface (= ${binary:Version}),
libmkl-meta-threading (= ${binary:Version}),
libmkl-meta-computational (= ${binary:Version}),
libmkl-locale (= ${binary:Version}),
libblas3 | libblas.so.3,
liblapack3 | liblapack.so.3,
Recommends:
# for iomp (but its debian packaging is not multi-arch installable
libomp-dev | libomp-11-dev | libomp-12-dev | libomp-13-dev | libomp-14-dev | libomp-x.y-dev,
# for gomp
libgcc-10-dev | libgcc-11-dev | libgcc-12-dev,
# for tbb
libtbb-dev
Enhances: libblas.so.3, libblas64.so.3,
liblapack.so.3, liblapack64.so.3,
Description: Intel® MKL: Single Dynamic Library (SDL)
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the Single Dynamic Library (SDL) of MKL.
# [ Shared Object Packages ] -- Interface Layer ###############################
Package: libmkl-meta-interface
Section: non-free/metapackages
Architecture: amd64 i386
Multi-Arch: same
Depends: ${misc:Depends},
libmkl-intel-lp64 (= ${binary:Version}) [amd64],
libmkl-intel-ilp64 (= ${binary:Version}) [amd64],
libmkl-gf-lp64 (= ${binary:Version}) [amd64],
libmkl-gf-ilp64 (= ${binary:Version}) [amd64],
libmkl-intel (= ${binary:Version}) [i386],
libmkl-gf (= ${binary:Version}) [i386],
Description: Metapackage of intel-MKL: Shared Objects of Interface Layer
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package pulls shared objects in the Interface Layer.
Package: libmkl-intel-lp64
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: LP64 interface library for the Intel® compilers
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains LP64 interface library for the Intel® compilers. Also
use for other supported compilers that do not have a specialized Intel® MKL
interface library.
It belongs to the Interface Layer of MKL.
Package: libmkl-intel-ilp64
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: ILP64 interface library for the Intel® compilers
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains ILP64 interface library for the Intel® compilers. Also
use for other supported compilers that do not have a specialized Intel® MKL
interface library.
It belongs to the Interface Layer of MKL.
Package: libmkl-intel
Section: non-free/libs
Architecture: i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: (ia32) Interface library for the Intel® compilers
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains Interface library for the Intel® compilers. Also use for
other supported compilers that do not have a specialized Intel® MKL interface
library.
It belongs to the Interface Layer of MKL.
Package: libmkl-gf-lp64
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: LP64 interface library for the GNU Fortran compilers
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains LP64 interface library for the GNU Fortran compilers.
It belongs to the Interface Layer of MKL.
Package: libmkl-gf-ilp64
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: ILP64 interface library for the GNU Fortran compilers
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains ILP64 interface library for the GNU Fortran compilers.
It belongs to the Interface Layer of MKL.
Package: libmkl-gf
Section: non-free/libs
Architecture: i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: (ia32) Interface library for the GNU Fortran compiler
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains Interface library for the GNU Fortran compiler.
It belongs to the Interface Layer of MKL.
# [ Shared Object Packages ] -- Threading Layer ###############################
Package: libmkl-meta-threading
Section: non-free/metapackages
Architecture: amd64 i386
Multi-Arch: same
Depends: ${misc:Depends},
libmkl-intel-thread (= ${binary:Version}),
libmkl-gnu-thread (= ${binary:Version}),
libmkl-sequential (= ${binary:Version}),
# libmkl-tbb-thread (= ${binary:Version}),
libmkl-pgi-thread (= ${binary:Version}) [amd64],
Description: Metapackage of intel-MKL: Shared Objects of Threading Layer
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package pulls shared objects in the Threading Layer.
Package: libmkl-intel-thread
Section: non-free/libs
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: OpenMP threading library for the Intel® compilers
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains OpenMP threading library for the Intel® compilers.
It belongs to the Threading Layer of MKL.
#Package: libmkl-tbb-thread
#Section: non-free/libs
#Architecture: amd64 i386
#Multi-Arch: same
#Depends: ${shlibs:Depends},
# ${misc:Depends},
# libmkl-locale (= ${binary:Version}),
#Description: Intel® MKL: Intel® TBB threading library for the Intel® compilers
# Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
# optimized, extensively threaded routines for applications that require
# maximum performance.
# .
# This package contains Intel® TBB threading library for the Intel® compilers.
# It belongs to the Threading Layer of MKL.
Package: libmkl-gnu-thread
Section: non-free/libs
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: OpenMP threading library for GNU Fortran/C compilers
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains OpenMP threading library for the GNU Fortran/C compilers.
It belongs to the Threading Layer of MKL.
Package: libmkl-pgi-thread
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: OpenMP threading library for the PGI compiler
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains OpenMP threading library for the PGI compiler.
It belongs to the Threading Layer of MKL.
Package: libmkl-sequential
Section: non-free/libs
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: Sequential library
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains Sequential library.
It belongs to the Threading Layer of MKL.
# [ Shared Object Packages ] -- Computational Layer ###########################
Package: libmkl-meta-computational
Section: non-free/metapackages
Architecture: amd64 i386
Multi-Arch: same
Depends: ${misc:Depends},
libmkl-avx (= ${binary:Version}),
libmkl-avx2 (= ${binary:Version}),
libmkl-avx512 (= ${binary:Version}),
libmkl-avx512-mic (= ${binary:Version}) [amd64],
libmkl-core (= ${binary:Version}),
libmkl-def (= ${binary:Version}) [amd64],
libmkl-mc (= ${binary:Version}) [amd64],
libmkl-mc3 (= ${binary:Version}) [amd64],
libmkl-p4 (= ${binary:Version}) [i386],
libmkl-p4m (= ${binary:Version}) [i386],
libmkl-p4m3 (= ${binary:Version}) [i386],
libmkl-vml-avx (= ${binary:Version}),
libmkl-vml-avx2 (= ${binary:Version}),
libmkl-vml-avx512 (= ${binary:Version}),
libmkl-vml-avx512-mic (= ${binary:Version}) [amd64],
libmkl-vml-cmpt (= ${binary:Version}),
libmkl-vml-def (= ${binary:Version}) [amd64],
libmkl-vml-ia (= ${binary:Version}) [i386],
libmkl-vml-mc (= ${binary:Version}) [amd64],
libmkl-vml-mc2 (= ${binary:Version}) [amd64],
libmkl-vml-mc3 (= ${binary:Version}) [amd64],
libmkl-vml-p4 (= ${binary:Version}) [i386],
libmkl-vml-p4m (= ${binary:Version}) [i386],
libmkl-vml-p4m2 (= ${binary:Version}) [i386],
libmkl-vml-p4m3 (= ${binary:Version}) [i386],
Description: Metapackage of intel-MKL: Shared Objects for Computaional Layer
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package pulls shared objects in the Computational Layer.
Package: libmkl-core
Section: non-free/libs
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
# Let's at least add the default candidate library as Depends
libmkl-def (= ${binary:Version}) [amd64],
libmkl-vml-def (= ${binary:Version}) [amd64],
libmkl-p4 (= ${binary:Version}) [i386],
libmkl-vml-p4 (= ${binary:Version}) [i386],
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: Library dispatcher of Computational Layer
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the Library dispatcher for dynamic load of
processor-specific kernel.
It belongs to the Computational Layer of MKL.
Package: libmkl-def
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: Default kernel library
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the Default kernel library.
It belongs to the Computational Layer of MKL.
Package: libmkl-mc
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: Kernel library for Intel® SSSE3 enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the Kernel library for Intel® Supplemental Streaming
SIMD Extensions 3 (Intel® SSSE3) enabled processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-mc3
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: Kernel library for Intel® SSE4.2 enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the Kernel library for Intel® Streaming SIMD
Extensions 4.2 (Intel® SSE4.2) enabled processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-avx
Section: non-free/libs
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: Kernel library for Intel® AVX enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the Kernel library for Intel® Advanced Vector
Extensions (Intel® AVX) enabled processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-avx2
Section: non-free/libs
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: Kernel library for Intel® AVX2 enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the Kernel library for Intel® Advanced Vector
Extensions 2 (Intel® AVX2) enabled processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-avx512
Section: non-free/libs
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL: Kernel library for Intel® AVX-512 enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the Kernel library for dispatching Intel® Advanced
Vector Extensions 512 (Intel® AVX-512) on Intel® Xeon® processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-avx512-mic
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : Kernel library for Intel® AVX-512 Xeon Phi™ processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the Kernel library for dispatching Intel® Advanced
Vector Extensions 512 (Intel® AVX-512) on Intel® Xeon Phi™ processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-def
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF part of default kernels
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the Vector Mathematics (VM)/Vector Statistics (VS)/Data
Fitting (DF) part of default kernels.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-mc
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF for Intel® SSSE3 enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the VM/VS/DF for Intel® SSSE3 enabled processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-mc2
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF for 45nm Hi-k Core™2 and Xeon® processor
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the VM/VS/DF for 45nm Hi-k Intel® Core™2 and
Intel® Xeon® processor families.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-mc3
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF for Intel® SSE4.2 enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the VM/VS/DF for Intel® SSE4.2 enabled processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-avx
Section: non-free/libs
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF optimized for Intel® AVX enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the VM/VS/DF optimized for Intel® AVX enabled processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-avx2
Section: non-free/libs
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF optimized for Intel® AVX2 enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the VM/VS/DF optimized for Intel® AVX2 enabled processors
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-avx512
Section: non-free/libs
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF optimized for AVX-512 on Xeon® processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the VM/VS/DF optimized for Intel® AVX-512 on
Intel® Xeon® processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-avx512-mic
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF optimized for AVX-512 on Xeon Phi™ processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the VM/VS/DF optimized for Intel® AVX-512 on
Intel® Xeon Phi™ processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-cmpt
Section: non-free/libs
Architecture: amd64 i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF for conditional numerical reproducibility
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains the VM/VS/DF library for conditional numerical
reproducibility.
It belongs to the Computational Layer of MKL.
Package: libmkl-p4
Section: non-free/libs
Architecture: i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : Pentium 4 processor kernel library
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains Pentium® 4 processor kernel library.
It belongs to the Computational Layer of MKL.
Package: libmkl-p4m
Section: non-free/libs
Architecture: i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : Kernel library for Intel® SSSE3 enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains Kernel library for Intel® Supplemental Streaming SIMD
Extensions 3 (Intel® SSSE3) enabled processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-p4m3
Section: non-free/libs
Architecture: i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : Kernel library for Intel® SSE4.2 enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains Kernel library for Intel® Streaming SIMD Extensions 4.2
(Intel® SSE4.2) enabled processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-ia
Section: non-free/libs
Architecture: i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF default kernel for newer Intel® architecture
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains VM/VS/DF default kernel for newer Intel® architecture
processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-p4
Section: non-free/libs
Architecture: i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF part of Pentium 4 processor kernel
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains Vector Mathematics (VM)/Vector Statistics (VS)/Data
Fitting (DF) part of Pentium® 4 processor kernel.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-p4m
Section: non-free/libs
Architecture: i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF for Intel® SSSE3 enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains VM/VS/DF for Intel® SSSE3 enabled processors.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-p4m2
Section: non-free/libs
Architecture: i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF for 45nm Hi-k Core™2 and Intel® Xeon® processor
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains VM/VS/DF for 45nm Hi-k Intel® Core™2 and Intel® Xeon
processor families.
It belongs to the Computational Layer of MKL.
Package: libmkl-vml-p4m3
Section: non-free/libs
Architecture: i386
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : VM/VS/DF for Intel® SSE4.2 enabled processors
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains VM/VS/DF for Intel® SSE4.2 enabled processors.
It belongs to the Computational Layer of MKL.
# [ Shared Object Packages ] -- Cluster Libraries #############################
Package: libmkl-meta-cluster
Section: non-free/metapackages
Architecture: amd64
Multi-Arch: same
Depends: ${misc:Depends},
libmkl-scalapack-lp64 (= ${binary:Version}),
libmkl-scalapack-ilp64 (= ${binary:Version}),
libmkl-cdft-core (= ${binary:Version}),
libmkl-blacs-intelmpi-lp64 (= ${binary:Version}),
libmkl-blacs-intelmpi-ilp64 (= ${binary:Version}),
libmkl-blacs-openmpi-lp64 (= ${binary:Version}),
libmkl-blacs-openmpi-ilp64 (= ${binary:Version}),
libmkl-blacs-sgimpt-lp64 (= ${binary:Version}),
libmkl-blacs-sgimpt-ilp64 (= ${binary:Version}),
# cluster libraries are built upon interface, threading and computational layers
libmkl-meta-interface (= ${binary:Version}),
libmkl-meta-threading (= ${binary:Version}),
libmkl-meta-computational (= ${binary:Version}),
Description: Metapackage for Intel-MKL: Shared Object for Cluster
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package pulls shared objects for Cluster support.
Package: libmkl-scalapack-lp64
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : ScaLAPACK routine library supporting LP64 interface
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains ScaLAPACK routine library supporting the LP64 interface.
It belongs to the Cluster Libraries of MKL.
Package: libmkl-scalapack-ilp64
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : ScaLAPACK routine library supporting ILP64 interface
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains ScaLAPACK routine library supporting ILP64 interface.
It belongs to the Cluster Libraries of MKL.
Package: libmkl-cdft-core
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : Cluster version of FFT functions
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains Cluster version of FFT functions.
It belongs to the Cluster Libraries of MKL.
Package: libmkl-blacs-intelmpi-lp64
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : LP64 BLACS routines for Intel® MPI and MPICH2+
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains LP64 version of BLACS routines for Intel® MPI Library
and MPICH2 or higher.
It belongs to the Cluster Libraries of MKL.
Package: libmkl-blacs-intelmpi-ilp64
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : ILP64 BLACS routines for Intel® MPI and MPICH2+
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains ILP64 version of BLACS routines for Intel® MPI Library
and MPICH2 or higher.
It belongs to the Cluster Libraries of MKL.
Package: libmkl-blacs-openmpi-lp64
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : LP64 version of BLACS routines for Open MPI
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains LP64 version of BLACS routines for Open MPI.
It belongs to the Cluster Libraries of MKL.
Package: libmkl-blacs-openmpi-ilp64
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : ILP64 version of BLACS routines for Open MPI
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains ILP64 version of BLACS routines for Open MPI.
It belongs to the Cluster Libraries of MKL.
Package: libmkl-blacs-sgimpt-lp64
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : LP64 version of BLACS routines for SGI MPI Toolkit
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains LP64 version of BLACS routines for SGI MPI Toolkit.
It belongs to the Cluster Libraries of MKL.
Package: libmkl-blacs-sgimpt-ilp64
Section: non-free/libs
Architecture: amd64
Multi-Arch: same
Depends: ${shlibs:Depends},
${misc:Depends},
libmkl-locale (= ${binary:Version}),
Description: Intel® MKL : ILP64 version of BLACS routines for SGI MPT
Intel® Math Kernel Library (Intel® MKL) is a computing math library of highly
optimized, extensively threaded routines for applications that require
maximum performance.
.
This package contains ILP64 version of BLACS routines for SGI MPT.
It belongs to the Cluster Libraries of MKL.
|