blob: 97d9c03c8542f734510a31f9f0e11e0a9492ed4b (
plain)
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
|
.\" Copyright 2006-2009 Gentoo Foundation
.\" Distributed under the terms of the GNU General Public License v2
.\" $Id$
.\"
.TH blas.eselect 5 "May 2009" "Gentoo Linux" eselect
.SH NAME
blas.eselect \- The BLAS management module for Gentoo's eselect
.SH SYNOPSIS
.B eselect blas
.RB [ help | usage | version ]
.br
.B eselect blas list
.RI [ options ]
.br
.B eselect blas add
.br
.B eselect blas set
.I implementation
.RI [ options ]
.br
.B eselect blas show
.RI [ options ]
.SH DESCRIPTION
.B eselect
is Gentoo's configuration and management tool. It features modules
that care for the individual administrative tasks.
.SH ACTION: LIST
.B eselect blas list
.RI [ options ]
.br
Display an ordered list of installed BLAS implementations.
It distinguishes between versions with different Application Binary
Interfaces (e.g. x86/AMD64). Furthermore, it also distinguishes
between interfaces to high-level programming languages. Each line
holds a number and the implementation's name. An asterisk next to one
of the list elements denotes an active implementation.
# eselect blas list
.br
Installed BLAS for libdir lib
.br
[1] atlas *
[2] reference
Possible
.I options
to the
.B list
action are restrictions to handle only certain ABI\-specific library
directories. For example,
.B eselect blas list lib64
lists only BLAS implementations found in
.BR /usr/lib64 .
.SH ACTION: SHOW
.B eselect blas show
.RI [ options ]
.br
Show your system's currently active BLAS implementations.
# eselect blas show
.br
lib: atlas
.br
lib64: reference
The same
.I options
that apply to the
.B list
action can be used with the
.B show
action to restrict it to given ABIs.
.SH ACTION: SET
.B eselect blas set
.I implementation
.RI [ options ]
.br
Set your system's currently active BLAS implementations to
.IR implementation .
The same
.I options
that apply to the
.B list
action can be used with the
.B set
action to restrict it to given ABIs.
# eselect blas set atlas
.SH AUTHOR
Danny van Dyk <kugelfang@gentoo.org>
.br
Donnie Berkholz <dberkholz@gentoo.org>
.SH SEE ALSO
.BR eselect (1)
.SH REVISION
$Id$
|