gpu_copy_bw_performance.py 1.28 KB
Newer Older
1
2
3
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.

4
"""Micro benchmark example for GPU copy bandwidth performance.
5
6

Commands to run:
7
  python3 examples/benchmarks/gpu_copy_bw_performance.py
8
9
10
11
12
13
14
"""

from superbench.benchmarks import BenchmarkRegistry, Platform
from superbench.common.utils import logger

if __name__ == '__main__':
    context = BenchmarkRegistry.create_benchmark_context(
15
16
17
        'gpu-copy-bw',
        platform=Platform.CUDA,
        parameters='--mem_type htod dtoh dtod one_to_all all_to_one all_to_all --copy_type sm dma'
18
19
20
    )
    # For ROCm environment, please specify the benchmark name and the platform as the following.
    # context = BenchmarkRegistry.create_benchmark_context(
21
    #     'gpu-copy-bw', platform=Platform.ROCM, parameters='--mem_type htod dtoh dtod --copy_type sm dma'
22
    # )
23
24
    # For bidirectional test, please specify parameters as the following.
    # parameters='--mem_type htod dtod --copy_type sm dma --bidirectional'
25
    # To enable data checking, please add '--check_data'.
26
27
28
29
30
31
32
33

    benchmark = BenchmarkRegistry.launch_benchmark(context)
    if benchmark:
        logger.info(
            'benchmark: {}, return code: {}, result: {}'.format(
                benchmark.name, benchmark.return_code, benchmark.result
            )
        )