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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
/*
* Copyright (c) 2017-2019 Intel Corporation. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this source tree, or the
* BSD license below:
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
*
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#pragma once
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <unistd.h>
#include <rdma/fabric.h>
#include <rdma/fi_trigger.h>
#include <sys/uio.h>
#include <sys/socket.h>
#include "pattern.h"
#define PM_DEFAULT_OOB_PORT (8228)
enum multi_xfer{
multi_msg,
multi_rma,
};
enum multi_pattern {
PATTERN_MESH,
PATTERN_RING,
PATTERN_GATHER,
PATTERN_BROADCAST,
};
enum multi_pm_type {
PM_NONE,
PM_PMIX,
PM_PMI,
};
struct multi_xfer_method {
char* name;
int (*send)(void);
int (*recv)(void);
int (*wait)(void);
};
struct pm_job_info {
size_t my_rank;
size_t num_ranks;
int sock;
int *clients; //only valid for server
struct fi_rma_iov *multi_iovs;
struct sockaddr_storage oob_server_addr;
size_t server_addr_len;
void *names;
size_t name_len;
fi_addr_t *fi_addrs;
enum multi_xfer transfer_method;
enum multi_pattern pattern;
enum multi_pm_type pm;
};
struct multinode_xfer_state {
int iter;
size_t recvs_posted;
size_t sends_posted;
size_t tx_window;
size_t rx_window;
/* pattern iterator state */
int cur_source;
int cur_target;
bool all_recvs_posted;
bool all_sends_posted;
bool all_completions_done;
uint64_t tx_flags;
uint64_t rx_flags;
};
extern struct pm_job_info pm_job;
static inline int timer_index(int iter, int dest_rank)
{
return iter * pm_job.num_ranks + dest_rank;
}
#ifndef _WIN32
static inline void log_print(FILE *f, char *fmt, ...)
{
va_list args;
if (!pm_job.clients)
return;
va_start(args, fmt);
vfprintf(f, fmt, args);
va_end(args);
}
#define PRINTF(fmt, args...) log_print(stdout, fmt, ## args)
#define EPRINTF(fmt, args...) log_print(stderr, fmt, ## args)
#else
#define PRINTF(fmt, ...) fprintf(stdout, fmt, __VA_ARGS__)
#define EPRINTF(fmt, ...) fprintf(stderr, fmt, __VA_ARGS__)
#endif /* _WIN32 */
int multinode_run_tests(int argc, char **argv);
int pm_allgather(void *my_item, void *items, int item_size);
ssize_t socket_send(int sock, void *buf, size_t len, int flags);
int socket_recv(int sock, void *buf, size_t len, int flags);
void pm_barrier(void);
int multi_msg_send(void);
int multi_msg_recv(void);
int multi_msg_wait(void);
int multi_rma_write(void);
int multi_rma_recv(void);
int multi_rma_wait(void);
|