2004-09-05 20:05:37 +04:00
|
|
|
# -*- text -*-
|
|
|
|
#
|
2005-11-05 22:57:48 +03:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
# University Research and Technology
|
|
|
|
# Corporation. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. All rights
|
|
|
|
# reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2008-06-23 20:14:05 +04:00
|
|
|
# Copyright (c) 2008 Cisco Systems, Inc. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-09-05 20:05:37 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
# This is the US/English help file for Open MPI MCA error messages.
|
|
|
|
#
|
|
|
|
[find-available:none-found]
|
|
|
|
No available %s components were found!
|
|
|
|
|
|
|
|
This means that there are no components of this type installed on your
|
|
|
|
system or all the components reported that they could not be used.
|
|
|
|
|
|
|
|
This is a fatal error; your MPI process is likely to abort. Check the
|
|
|
|
output of the "ompi_info" command and ensure that components of this
|
|
|
|
type are available on your system. You may also wish to check the
|
|
|
|
value of the "component_path" MCA parameter and ensure that it has at
|
|
|
|
least one directory that contains valid MCA components.
|
2008-06-23 20:14:05 +04:00
|
|
|
#
|
2005-07-12 22:06:31 +04:00
|
|
|
[find-available:not-valid]
|
2008-06-23 20:14:05 +04:00
|
|
|
A requested component was not found, or was unable to be opened. This
|
|
|
|
means that this component is either not installed or is unable to be
|
|
|
|
used on your system (e.g., sometimes this means that shared libraries
|
|
|
|
that the component requires are unable to be found/loaded). Note that
|
|
|
|
Open MPI stopped checking at the first component that it did not find.
|
|
|
|
|
|
|
|
Host: %s
|
|
|
|
Framework: %s
|
|
|
|
Component: %s
|
|
|
|
#
|
2006-07-19 18:19:44 +04:00
|
|
|
[framework-param:too-many-negates]
|
|
|
|
MCA framework parameters can only take a single negation operator
|
|
|
|
("^"), and it must be at the beginning of the value. The following
|
|
|
|
value violates this rule:
|
|
|
|
|
|
|
|
%s
|
|
|
|
|
|
|
|
When used, the negation operator sets the "exclusive" behavior mode,
|
|
|
|
meaning that it will exclude all specified components (and implicitly
|
|
|
|
include all others). If the negation operator is not specified, the
|
|
|
|
"inclusive" mode is assumed, meaning that all specified components
|
|
|
|
will be included (and implicitly exclude all others).
|
|
|
|
|
|
|
|
For example, "^a,b" specifies the exclusive behavior and means "use
|
|
|
|
all components *except* a and b", while "c,d" specifies the inclusive
|
|
|
|
behavior and means "use *only* components c and d."
|
|
|
|
|
|
|
|
You cannot mix inclusive and exclusive behavior.
|