![Josh Hursey](/assets/img/avatar_default.png)
and implementation. This has shown drastic performance benefit when transferring Many files at roughly the same time. I tested this for many different filem operations and everything was working fine. Let me know if you have any problems with this functionality. Some Notes: - opal-checkpoint now has a 'quiet' flag to keep it from being too verbose. - FileM RSH component is fully non-blocking. - FileM RSH component has incomming connection throttling since by default ssh only allows 10 concurrent scp connections to any single host. This default can be adjusted via an MCA parameter. {{{-mca filem_rsh_max_incomming 10}}} - There is an MCA parameter for max outgoing connections, but it is currently not implemented. If someone needs it then it should not be hard to implement. {{{-mca filem_rsh_max_outgoing 10}}} - Changed the FileM request structure so that it is a bit more explicit and flexible. - Moved the 'preload-binary' and 'preload-files' functionality into odls/base allowing for code reuse in the 'process' and 'default' ODLS components. - Fixed a bug in the process name resolution which broke the 'preload-*' functionality due to GPR table structure changes. - The FileM RSH component might be able to see even more speedup from using a thread pool to operate on the work_pool structures, but that is for future work. - Added a 'opal-show-help' file to ODLS Base This commit was SVN r16252.
38 строки
1.3 KiB
Makefile
38 строки
1.3 KiB
Makefile
#
|
|
# Copyright (c) 2004-2007 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.
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
# University of Stuttgart. All rights reserved.
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
dist_pkgdata_DATA += base/help-orte-odls-base.txt
|
|
|
|
headers += \
|
|
base/odls_private.h \
|
|
base/base.h
|
|
|
|
libmca_odls_la_SOURCES += \
|
|
base/odls_base_close.c \
|
|
base/odls_base_open.c \
|
|
base/odls_base_select.c \
|
|
base/odls_base_state.c \
|
|
base/odls_base_purge_params.c \
|
|
base/data_type_support/odls_compare_fns.c \
|
|
base/data_type_support/odls_copy_fns.c \
|
|
base/data_type_support/odls_packing_fns.c \
|
|
base/data_type_support/odls_print_fns.c \
|
|
base/data_type_support/odls_release_fns.c \
|
|
base/data_type_support/odls_size_fns.c \
|
|
base/data_type_support/odls_unpacking_fns.c
|