Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/barrier.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
#include "util/trees.h"
#include "util/memfence.h"

#include <shmem.h>

static int tree_degree_barrier = 2;
static int knomial_tree_radix_barrier = 2;

Expand Down
2 changes: 2 additions & 0 deletions src/reduction.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
#include <stdlib.h>
#include <limits.h>

#include <shmem.h>

/*
* Local reduce helper
*/
Expand Down
4 changes: 2 additions & 2 deletions src/shcoll.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
#ifndef _SHCOLL_H
#define _SHCOLL_H 1

#include <shmem.h>
/* #include <shmem.h> */

#include <shcoll/common.h>
// #include <shcoll/compat.h>
/* #include <shcoll/compat.h> */

#include <shcoll/alltoall.h>
#include <shcoll/alltoalls.h>
Expand Down
1 change: 1 addition & 0 deletions src/util/broadcast-size.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "trees.h"
#include "../shcoll.h"

#include <shmem.h>

const int binomial_tree_radix = 8;

Expand Down
2 changes: 2 additions & 0 deletions src/util/scan.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#include "../shcoll.h"
#include "scan.h"

#include <shmem.h>

void
exclusive_prefix_sum(size_t *dest, size_t value, int PE_start, int logPE_stride, int PE_size, long *pSync)
{
Expand Down