Scaling.hpp 4.5 KB
Newer Older
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
/*
Copyright (c) 2024 Advanced Micro Devices, Inc. All rights reserved.

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

#ifndef SCALING_PRESET_HPP
#define SCALING_PRESET_HPP

#include "EnvVars.hpp"

#include <algorithm>
#include <cstddef>
#include <cstdint>
#include <string>
#include <vector>


void ScalingPreset(EnvVars& ev,
                   size_t const numBytesPerTransfer,
                   [[maybe_unused]] std::string const presetName)
{
    int numDetectedCpus = TransferBench::GetNumExecutors(EXE_CPU);
    int numDetectedGpus = TransferBench::GetNumExecutors(EXE_GPU_GFX);

    // Collect env vars for this preset
    int localIdx      = EnvVars::GetEnvVar("LOCAL_IDX", 0);
    int numCpuDevices = EnvVars::GetEnvVar("NUM_CPU_DEVICES", numDetectedCpus);
    int numGpuDevices = EnvVars::GetEnvVar("NUM_GPU_DEVICES", numDetectedGpus);
    int sweepMax      = EnvVars::GetEnvVar("SWEEP_MAX", 32);
    int sweepMin      = EnvVars::GetEnvVar("SWEEP_MIN", 1);
    int useFineGrain  = EnvVars::GetEnvVar("USE_FINE_GRAIN", 0);

    // Display environment variables
    ev.DisplayEnvVars();
    if (!ev.hideEnv) {
        int outputToCsv = ev.outputToCsv;
        if (!outputToCsv) { printf("[Schmoo Related]\n"); }
        ev.Print("LOCAL_IDX", localIdx, "Local GPU index");
        ev.Print("SWEEP_MAX", sweepMax, "Max number of subExecutors to use");
        ev.Print("SWEEP_MIN", sweepMin, "Min number of subExecutors to use");
        printf("\n");
    }

    // Validate env vars
    if (localIdx >= numDetectedGpus) {
        printf("[ERROR] Cannot execute scaling test with local GPU device %d\n", localIdx);
        exit(1);
    }

    TransferBench::ConfigOptions cfg = ev.ToConfigOptions();
    TransferBench::TestResults results;

    char separator = (ev.outputToCsv ? ',' : ' ');
    int numDevices = numCpuDevices + numGpuDevices;

    printf("GPU-GFX Scaling benchmark:\n");
    printf("==========================\n");
    printf("- Copying %lu bytes from GPU %d to other devices\n", numBytesPerTransfer, localIdx);
    printf("- All numbers reported as GB/sec\n\n");
    printf("NumCUs");
    for (int i = 0; i < numDevices; i++) {
        printf("%c  %s%02d     ",
               separator,
               i < numCpuDevices ? "CPU" : "GPU",
               i < numCpuDevices ? i : i - numCpuDevices);
    }
    printf("\n");

    std::vector<std::pair<double, int>> bestResult(numDevices);

    std::vector<Transfer> transfers(1);
    Transfer& t   = transfers[0];
    t.exeDevice   = {EXE_GPU_GFX, localIdx};
    t.exeSubIndex = -1;
    t.numBytes    = numBytesPerTransfer;
    t.srcs        = {{MEM_GPU, localIdx}};

    for (int numSubExec = sweepMin; numSubExec <= sweepMax; numSubExec++) {
        t.numSubExecs = numSubExec;
        printf("%4d  ", numSubExec);

        for (int i = 0; i < numDevices; i++) {
            t.dsts = {
                {i < numCpuDevices ? MEM_CPU : MEM_GPU, i < numCpuDevices ? i : i - numCpuDevices}};
            if (!RunTransfers(cfg, transfers, results)) {
                PrintErrors(results.errResults);
                exit(1);
            }
            double bw = results.tfrResults[0].avgBandwidthGbPerSec;
            printf("%c%7.2f     ", separator, bw);

            if (bw > bestResult[i].first) {
                bestResult[i].first  = bw;
                bestResult[i].second = numSubExec;
            }
        }
        printf("\n");
    }

    printf(" Best ");
    for (int i = 0; i < numDevices; i++) {
        printf("%c%7.2f(%3d)", separator, bestResult[i].first, bestResult[i].second);
    }
    printf("\n");
}


#endif    // SCALING_PRESET_HPP