47 строки
1.3 KiB
C
47 строки
1.3 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
* All rights reserved.
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
* 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$
|
|
*/
|
|
|
|
#include "ompi_config.h"
|
|
#include <stdio.h>
|
|
#include "qsnet/fence.h"
|
|
#include "ptl_elan.h"
|
|
#include "ptl_elan_priv.h"
|
|
#include "test_util.h"
|
|
|
|
extern mca_ptl_elan_module_1_0_0_t mca_ptl_elan_module;
|
|
|
|
int main (int argc, char ** argv)
|
|
{
|
|
bool allow_threads;
|
|
bool have_hidden_threads;
|
|
int input;
|
|
int num;
|
|
|
|
/* Get some environmental variables set for Open MPI, OOB */
|
|
env_init_for_elan();
|
|
|
|
/* Initialization test */
|
|
mca_ptl_elan_module_open();
|
|
mca_ptl_elan_module_init(&num, &allow_threads, &have_hidden_threads);
|
|
mca_ptl_elan_module_control(1, &input, 4);
|
|
mca_ptl_elan_module_close();
|
|
|
|
/* Tell alive */
|
|
fprintf(stdout, "I am still alive\n");
|
|
fflush(stdout);
|
|
return 0;
|
|
}
|