Skip to content
Merged
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: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.67])
AC_INIT([codes], [1.4.1], [http://trac.mcs.anl.gov/projects/codes/newticket],[],[http://www.mcs.anl.gov/projects/codes/])
AC_INIT([codes], [1.4.2], [http://trac.mcs.anl.gov/projects/codes/newticket],[],[http://www.mcs.anl.gov/projects/codes/])
LT_INIT

AC_CANONICAL_TARGET
Expand Down
6 changes: 3 additions & 3 deletions src/network-workloads/model-net-mpi-replay.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ tw_stime soft_delay_mpi = 2500;
tw_stime nic_delay = 1000;
tw_stime copy_per_byte_eager = 0.55;

struct codes_jobmap_ctx *jobmap_ctx;
struct codes_jobmap_params_list jobmap_p;
struct codes_jobmap_params_identity jobmap_ident_p; // for if an alloc file isn't supplied.
static struct codes_jobmap_ctx *jobmap_ctx;
static struct codes_jobmap_params_list jobmap_p;
static struct codes_jobmap_params_identity jobmap_ident_p; // for if an alloc file isn't supplied.


/* Variables for Cortex Support */
Expand Down
6 changes: 3 additions & 3 deletions src/network-workloads/model-net-synthetic-slimfly.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ void init_worst_case_mapping();
/* Global variables for worst-case workload pairing */
static int num_local_channels;
static int num_global_channels;
int *X;
int *X_prime;
int X_size;
static int *X;
static int *X_prime;
static int X_size;

/* type of events */
enum svr_event
Expand Down