1
1
openmpi/orte/mca/ras/base/Makefile.am
Tim Prins ade94b523b Fixed a number of issues related to resource allocation:
- Simplified the logic of the ras modules by moving the attribute handling into the base allocation function. This allows us to decide how to allocate based on the situation, and solves some of the allocation problems we were having with comm_spawn.
- moved the proxy component into the base. This was done because we always want to call the proxy functions if we are not on a HNP regardless of the attributes passed. 
- Got rid of the hostfile component. What little logic was in it was moved into the base to deal with other circumstances. The hostfile information is currently being propagated into the registry by the RDS, so we just use what is already in the registry.
- renamed some slurm function so that they have the proper prefix. Not strictly necessary as they were static, but it makes debugging much easier.
- fixed a buglet in the round_robin rmaps where we would return an error when really no error occured.

I tried to make proper corrections to all the ras modules, but I cannot test all of them.

This commit was SVN r12202.
2006-10-19 23:33:51 +00:00

42 строки
1.5 KiB
Makefile

#
# 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.
# 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$
#
headers += \
base/base.h \
base/ras_private.h \
base/proxy/ras_base_proxy.h
libmca_ras_la_SOURCES += \
base/ras_base_alloc.c \
base/ras_base_allocate.c \
base/ras_base_close.c \
base/ras_base_find_available.c \
base/ras_base_node.c \
base/ras_base_no_ops.c \
base/ras_base_open.c \
base/ras_base_receive.c \
base/data_type_support/ras_data_type_compare_fns.c \
base/data_type_support/ras_data_type_copy_fns.c \
base/data_type_support/ras_data_type_packing_fns.c \
base/data_type_support/ras_data_type_print_fns.c \
base/data_type_support/ras_data_type_release_fns.c \
base/data_type_support/ras_data_type_size_fns.c \
base/data_type_support/ras_data_type_unpacking_fns.c \
base/proxy/ras_base_proxy.c \
base/proxy/ras_base_proxy_component.c