TransferBench.hpp 8.79 KB
Newer Older
Gilbert Lee's avatar
Gilbert Lee committed
1
/*
gilbertlee-amd's avatar
gilbertlee-amd committed
2
Copyright (c) 2019-2023 Advanced Micro Devices, Inc. All rights reserved.
Gilbert Lee's avatar
Gilbert Lee committed
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

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

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.
*/

#include <vector>
#include <sstream>
#include <chrono>
#include <cstdio>
#include <cstdlib>
#include <cstdint>
#include <set>
#include <unistd.h>
#include <map>
#include <iostream>
#include <sstream>
34

35
#include "Compatibility.hpp"
Gilbert Lee's avatar
Gilbert Lee committed
36
37

// Helper macro for catching HIP errors
gilbertlee-amd's avatar
gilbertlee-amd committed
38
39
40
41
42
43
44
45
46
#define HIP_CALL(cmd)                                                                   \
    do {                                                                                \
        hipError_t error = (cmd);                                                       \
        if (error != hipSuccess)                                                        \
        {                                                                               \
            std::cerr << "Encountered HIP error (" << hipGetErrorString(error)          \
                      << ") at line " << __LINE__ << " in file " << __FILE__ << "\n";   \
            exit(-1);                                                                   \
        }                                                                               \
Gilbert Lee's avatar
Gilbert Lee committed
47
48
    } while (0)

gilbertlee-amd's avatar
gilbertlee-amd committed
49
50
#include "EnvVars.hpp"

Gilbert Lee's avatar
Gilbert Lee committed
51
// Simple configuration parameters
Gilbert Lee's avatar
Gilbert Lee committed
52
size_t const DEFAULT_BYTES_PER_TRANSFER = (1<<26);  // Amount of data transferred per Transfer
Gilbert Lee's avatar
Gilbert Lee committed
53
54
55
56

// Different src/dst memory types supported
typedef enum
{
gilbertlee-amd's avatar
gilbertlee-amd committed
57
58
59
60
  MEM_CPU          = 0, // Coarse-grained pinned CPU memory
  MEM_GPU          = 1, // Coarse-grained global GPU memory
  MEM_CPU_FINE     = 2, // Fine-grained pinned CPU memory
  MEM_GPU_FINE     = 3, // Fine-grained global GPU memory
gilbertlee-amd's avatar
gilbertlee-amd committed
61
62
  MEM_CPU_UNPINNED = 4, // Unpinned CPU memory
  MEM_NULL         = 5, // NULL memory - used for empty
Gilbert Lee's avatar
Gilbert Lee committed
63
64
} MemType;

gilbertlee-amd's avatar
gilbertlee-amd committed
65
typedef enum
gilbertlee-amd's avatar
gilbertlee-amd committed
66
{
gilbertlee-amd's avatar
gilbertlee-amd committed
67
68
69
70
  EXE_CPU          = 0, // CPU executor              (subExecutor = CPU thread)
  EXE_GPU_GFX      = 1, // GPU kernel-based executor (subExecutor = threadblock/CU)
  EXE_GPU_DMA      = 2, // GPU SDMA-based executor   (subExecutor = streams)
} ExeType;
Gilbert Lee's avatar
Gilbert Lee committed
71

gilbertlee-amd's avatar
gilbertlee-amd committed
72
73
74
75
76
77
78
79
bool IsGpuType(MemType m) { return (m == MEM_GPU || m == MEM_GPU_FINE); }
bool IsCpuType(MemType m) { return (m == MEM_CPU || m == MEM_CPU_FINE || m == MEM_CPU_UNPINNED); };
bool IsGpuType(ExeType e) { return (e == EXE_GPU_GFX || e == EXE_GPU_DMA); };
bool IsCpuType(ExeType e) { return (e == EXE_CPU); };

char const MemTypeStr[7] = "CGBFUN";
char const ExeTypeStr[4] = "CGD";
char const ExeTypeName[3][4] = {"CPU", "GPU", "DMA"};
Gilbert Lee's avatar
Gilbert Lee committed
80

Gilbert Lee's avatar
Gilbert Lee committed
81
82
MemType inline CharToMemType(char const c)
{
gilbertlee-amd's avatar
gilbertlee-amd committed
83
  char const* val = strchr(MemTypeStr, toupper(c));
84
  if (val) return (MemType)(val - MemTypeStr);
gilbertlee-amd's avatar
gilbertlee-amd committed
85
86
  printf("[ERROR] Unexpected memory type (%c)\n", c);
  exit(1);
Gilbert Lee's avatar
Gilbert Lee committed
87
88
}

gilbertlee-amd's avatar
gilbertlee-amd committed
89
ExeType inline CharToExeType(char const c)
Gilbert Lee's avatar
Gilbert Lee committed
90
{
gilbertlee-amd's avatar
gilbertlee-amd committed
91
  char const* val = strchr(ExeTypeStr, toupper(c));
92
  if (val) return (ExeType)(val - ExeTypeStr);
gilbertlee-amd's avatar
gilbertlee-amd committed
93
94
95
  printf("[ERROR] Unexpected executor type (%c)\n", c);
  exit(1);
}
Gilbert Lee's avatar
Gilbert Lee committed
96

gilbertlee-amd's avatar
gilbertlee-amd committed
97
98
// Each Transfer performs reads from source memory location(s), sums them (if multiple sources are specified)
// then writes the summation to each of the specified destination memory location(s)
Gilbert Lee's avatar
Gilbert Lee committed
99
struct Transfer
Gilbert Lee's avatar
Gilbert Lee committed
100
{
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  int                        transferIndex;      // Transfer identifier (within a Test)
  ExeType                    exeType;            // Transfer executor type
  int                        exeIndex;           // Executor index (NUMA node for CPU / device ID for GPU)
  int                        numSubExecs;        // Number of subExecutors to use for this Transfer
  size_t                     numBytes;           // # of bytes requested to Transfer (may be 0 to fallback to default)
  size_t                     numBytesActual;     // Actual number of bytes to copy
  double                     transferTime;       // Time taken in milliseconds

  int                        numSrcs;            // Number of sources
  std::vector<MemType>       srcType;            // Source memory types
  std::vector<int>           srcIndex;           // Source device indice
  std::vector<float*>        srcMem;             // Source memory

  int                        numDsts;            // Number of destinations
  std::vector<MemType>       dstType;            // Destination memory type
  std::vector<int>           dstIndex;           // Destination device index
  std::vector<float*>        dstMem;             // Destination memory

  std::vector<SubExecParam>  subExecParam;       // Defines subarrays assigned to each threadblock
  SubExecParam*              subExecParamGpuPtr; // Pointer to GPU copy of subExecParam
121
  std::vector<int>           subExecIdx;         // Indicies into subExecParamGpu
122
123

  std::vector<double>        perIterationTime;   // Per-iteration timing
gilbertlee-amd's avatar
gilbertlee-amd committed
124
  std::vector<std::set<std::pair<int,int>>> perIterationCUs; // Per-iteration CU usage
125

gilbertlee-amd's avatar
gilbertlee-amd committed
126
127
128
129
  // Prepares src/dst subarray pointers for each SubExecutor
  void PrepareSubExecParams(EnvVars const& ev);

  // Prepare source arrays with input data
130
  bool PrepareSrc(EnvVars const& ev);
gilbertlee-amd's avatar
gilbertlee-amd committed
131
132
133
134
135
136
137
138
139
140

  // Validate that destination data contains expected results
  void ValidateDst(EnvVars const& ev);

  // Prepare reference buffers
  void PrepareReference(EnvVars const& ev, std::vector<float>& buffer, int bufferIdx);

  // String representation functions
  std::string SrcToStr() const;
  std::string DstToStr() const;
Gilbert Lee's avatar
Gilbert Lee committed
141
142
143
144
};

struct ExecutorInfo
{
gilbertlee-amd's avatar
gilbertlee-amd committed
145
146
147
  std::vector<Transfer*>   transfers;        // Transfers to execute
  size_t                   totalBytes;       // Total bytes this executor transfers
  int                      totalSubExecs;    // Total number of subExecutors to use
Gilbert Lee's avatar
Gilbert Lee committed
148
149

  // For GPU-Executors
gilbertlee-amd's avatar
gilbertlee-amd committed
150
  SubExecParam*            subExecParamGpu;  // GPU copy of subExecutor parameters
Gilbert Lee's avatar
Gilbert Lee committed
151
152
153
154
155
156
157
158
  std::vector<hipStream_t> streams;
  std::vector<hipEvent_t>  startEvents;
  std::vector<hipEvent_t>  stopEvents;

  // Results
  double totalTime;
};

gilbertlee-amd's avatar
gilbertlee-amd committed
159
typedef std::pair<ExeType, int> Executor;
Gilbert Lee's avatar
Gilbert Lee committed
160
typedef std::map<Executor, ExecutorInfo> TransferMap;
Gilbert Lee's avatar
Gilbert Lee committed
161
162
163
164
165
166
167
168

// Display usage instructions
void DisplayUsage(char const* cmdName);

// Display detected GPU topology / CPU numa nodes
void DisplayTopology(bool const outputToCsv);

// Build array of test sizes based on sampling factor
Gilbert Lee's avatar
Gilbert Lee committed
169
void PopulateTestSizes(size_t const numBytesPerTransfer, int const samplingFactor,
Gilbert Lee's avatar
Gilbert Lee committed
170
171
172
                       std::vector<size_t>& valuesofN);

void ParseMemType(std::string const& token, int const numCpus, int const numGpus,
gilbertlee-amd's avatar
gilbertlee-amd committed
173
174
175
                  std::vector<MemType>& memType, std::vector<int>& memIndex);
void ParseExeType(std::string const& token, int const numCpus, int const numGpus,
                  ExeType& exeType, int& exeIndex);
Gilbert Lee's avatar
Gilbert Lee committed
176

Gilbert Lee's avatar
Gilbert Lee committed
177
void ParseTransfers(char* line, int numCpus, int numGpus,
Gilbert Lee's avatar
Gilbert Lee committed
178
179
                    std::vector<Transfer>& transfers);

gilbertlee-amd's avatar
gilbertlee-amd committed
180
void ExecuteTransfers(EnvVars const& ev, int const testNum, size_t const N,
gilbertlee-amd's avatar
gilbertlee-amd committed
181
182
                      std::vector<Transfer>& transfers, bool verbose = true,
                      double* totalBandwidthCpu = nullptr);
Gilbert Lee's avatar
Gilbert Lee committed
183
184
185

void EnablePeerAccess(int const deviceId, int const peerDeviceId);
void AllocateMemory(MemType memType, int devIndex, size_t numBytes, void** memPtr);
gilbertlee-amd's avatar
gilbertlee-amd committed
186
void DeallocateMemory(MemType memType, void* memPtr, size_t const size = 0);
Gilbert Lee's avatar
Gilbert Lee committed
187
void CheckPages(char* byteArray, size_t numBytes, int targetId);
188
void RunTransfer(EnvVars const& ev, int const iteration, ExecutorInfo& exeInfo, int const transferIdx);
gilbertlee-amd's avatar
gilbertlee-amd committed
189
void RunPeerToPeerBenchmarks(EnvVars const& ev, size_t N);
190
void RunScalingBenchmark(EnvVars const& ev, size_t N, int const exeIndex, int const maxSubExecs);
gilbertlee-amd's avatar
gilbertlee-amd committed
191
void RunSweepPreset(EnvVars const& ev, size_t const numBytesPerTransfer, int const numGpuSubExec, int const numCpuSubExec, bool const isRandom);
gilbertlee-amd's avatar
gilbertlee-amd committed
192
void RunAllToAllBenchmark(EnvVars const& ev, size_t const numBytesPerTransfer, int const numSubExecs);
Gilbert Lee's avatar
Gilbert Lee committed
193
194

std::string GetLinkTypeDesc(uint32_t linkType, uint32_t hopCount);
gilbertlee-amd's avatar
gilbertlee-amd committed
195
196

int RemappedIndex(int const origIdx, bool const isCpuType);
gilbertlee-amd's avatar
gilbertlee-amd committed
197
void LogTransfers(FILE *fp, int const testNum, std::vector<Transfer> const& transfers);
gilbertlee-amd's avatar
gilbertlee-amd committed
198
std::string PtrVectorToStr(std::vector<float*> const& strVector, int const initOffset);