File: reachable_base_alloc.c

package info (click to toggle)
openmpi 5.0.8-4
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 201,684 kB
  • sloc: ansic: 613,078; makefile: 42,353; sh: 11,194; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,179; python: 1,859; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (60 lines) | stat: -rw-r--r-- 1,583 bytes parent folder | download | duplicates (4)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 * Copyright (c) 2017      Amazon.com, Inc. or its affiliates.
 *                         All Rights reserved.
 * $COPYRIGHT$
 *
 * Additional copyrights may follow
 *
 * $HEADER$
 */

#include "opal_config.h"

#include "opal/class/opal_object.h"

#include "opal/mca/reachable/base/base.h"
#include "opal/mca/reachable/reachable.h"

static void opal_reachable_construct(opal_reachable_t *reachable)
{
    reachable->weights = NULL;
}

static void opal_reachable_destruct(opal_reachable_t *reachable)
{
    if (NULL != reachable->memory) {
        free(reachable->memory);
    }
}

opal_reachable_t *opal_reachable_allocate(unsigned int num_local, unsigned int num_remote)
{
    char *memory;
    unsigned int i;
    opal_reachable_t *reachable = OBJ_NEW(opal_reachable_t);

    reachable->num_local = num_local;
    reachable->num_remote = num_remote;

    /* allocate all the pieces of the two dimensional array in one
       malloc, rather than a bunch of little allocations */
    memory = malloc(sizeof(int *) * num_local + num_local * (sizeof(int) * num_remote));
    if (memory == NULL) {
        OBJ_RELEASE(reachable);
        return NULL;
    }

    reachable->memory = (void *) memory;
    reachable->weights = (int **) reachable->memory;
    memory += (sizeof(int *) * num_local);

    for (i = 0; i < num_local; i++) {
        reachable->weights[i] = (int *) memory;
        memory += (sizeof(int) * num_remote);
    }

    return reachable;
}

OBJ_CLASS_INSTANCE(opal_reachable_t, opal_object_t, opal_reachable_construct,
                   opal_reachable_destruct);