Skip to content

Commit 735b0b9

Browse files
committed
opal_datatype_module.c: reset opal_cuda_verbose
999de13 accidentally reset opal_cuda_verbose's default value. This commit puts it back. Signed-off-by: Jeff Squyres <[email protected]> (cherry picked from commit 2713a24)
1 parent bd91e8b commit 735b0b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opal/datatype/opal_datatype_module.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* University of Stuttgart. All rights reserved.
1111
* Copyright (c) 2004-2006 The Regents of the University of California.
1212
* All rights reserved.
13-
* Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
13+
* Copyright (c) 2007-2018 Cisco Systems, Inc. All rights reserved
1414
* Copyright (c) 2009 Sun Microsystems, Inc. All rights reserved.
1515
* Copyright (c) 2009 Oak Ridge National Labs. All rights reserved.
1616
* Copyright (c) 2013 Los Alamos National Security, LLC. All rights
@@ -191,7 +191,7 @@ int opal_datatype_register_params(void)
191191
/* Set different levels of verbosity in the cuda related code. */
192192
ret = mca_base_var_register ("opal", "opal", NULL, "cuda_verbose",
193193
"Set level of opal cuda verbosity",
194-
MCA_BASE_VAR_TYPE_INT, NULL, -1, MCA_BASE_VAR_FLAG_SETTABLE,
194+
MCA_BASE_VAR_TYPE_INT, NULL, 0, MCA_BASE_VAR_FLAG_SETTABLE,
195195
OPAL_INFO_LVL_8, MCA_BASE_VAR_SCOPE_LOCAL,
196196
&opal_cuda_verbose);
197197
if (0 > ret) {

0 commit comments

Comments
 (0)