-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibhpx.c
26 lines (23 loc) · 877 Bytes
/
libhpx.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// =============================================================================
// High Performance ParalleX Library (libhpx)
//
// Copyright (c) 2013-2016, Trustees of Indiana University,
// All rights reserved.
//
// This software may be modified and distributed under the terms of the BSD
// license. See the COPYING file for details.
//
// This software was created at the Indiana University Center for Research in
// Extreme Scale Technologies (CREST).
// =============================================================================
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <libhpx/debug.h>
#include <libhpx/libhpx.h>
#include <libhpx/locality.h>
const libhpx_config_t *libhpx_get_config(void) {
dbg_assert_str(here, "libhpx not initialized\n");
dbg_assert_str(here->config, "libhpx config not available yet\n");
return here->config;
}