/* Copyright (c) 2015-2025 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. */ #include #include #include #include #include // hip header file #include #include #include #include #include #include #include namespace { using auto_lock_t = std::unique_lock; auto print_mutex = std::mutex{}; auto global_kern_num = std::atomic{0}; } // namespace template void check(T result, char const* const func, const char* const file, int const line) { if(result) { fprintf(stderr, "Hip error at %s:%d code=%d(%s) \"%s\" \n", file, line, static_cast(result), hipGetErrorName(result), func); exit(EXIT_FAILURE); } } #define checkHipErrors(val) check((val), #val, __FILE__, __LINE__) __global__ void kernel_foo(const int devid, const int kernid, const int kernid_global, const volatile int* streamid) { printf("[hip-graph][device %2i][stream %2i] Kernel foo | %2i | %2i executing...\n", devid, *streamid, kernid, kernid_global); } __global__ void kernel_bar(const int devid, const int kernid, const int kernid_global, const volatile int* streamid) { printf("[hip-graph][device %2i][stream %2i] Kernel bar | %2i | %2i executing...\n", devid, *streamid, kernid, kernid_global); } void run(uint64_t devid, uint64_t nstream, uint64_t nkernel_per_stream, std::atomic* progress, const std::shared_future& future) { auto prefix = [devid]() { auto ss = std::stringstream{}; ss << "[hip-graph][device " << std::setw(2) << devid << "] "; return ss.str(); }(); auto log_message = [&prefix](const auto& msg) { auto _lk = auto_lock_t{print_mutex}; std::cout << prefix << msg << "..." << std::endl; }; log_message("setting device"); checkHipErrors(hipSetDevice(devid)); auto streams = std::vector(nstream, nullptr); auto stream_num = std::vector(nstream, nullptr); log_message("creating streams"); for(auto& itr : streams) checkHipErrors(hipStreamCreate(&itr)); log_message("allocating data"); for(uint64_t i = 0; i < nstream; ++i) { auto& itr = stream_num.at(i); auto* str = streams.at(i); auto val = i; checkHipErrors(hipMallocAsync(&itr, sizeof(int), str)); checkHipErrors(hipMemcpyAsync(itr, &val, sizeof(int), hipMemcpyHostToDevice, str)); } auto graphs = std::vector(nstream); auto execs = std::vector(nstream, nullptr); uint64_t kern_num = 0; for(uint64_t i = 0; i < nstream; ++i) { checkHipErrors(hipStreamBeginCapture(streams.at(i), hipStreamCaptureModeGlobal)); for(uint64_t j = 0; j < nkernel_per_stream; ++j) { auto kern_num_v = kern_num++; auto glob_kern_num_v = global_kern_num++; auto kernel = (j % 2 == 0) ? kernel_foo : kernel_bar; hipLaunchKernelGGL(kernel, dim3(1), dim3(1), 0, streams.at(i), devid, kern_num_v, glob_kern_num_v, stream_num.at(i)); checkHipErrors(hipGetLastError()); } checkHipErrors(hipStreamEndCapture(streams.at(i), &graphs.at(i))); checkHipErrors(hipGraphInstantiate(&execs.at(i), graphs.at(i), nullptr, nullptr, 0)); } if(progress) progress->fetch_add(1); future.wait(); log_message("launching graph"); for(uint64_t i = 0; i < nstream; ++i) checkHipErrors(hipGraphLaunch(execs.at(i), streams.at(i))); for(uint64_t i = 0; i < nstream; ++i) checkHipErrors(hipStreamSynchronize(streams.at(i))); log_message("destroying graph"); for(uint64_t i = 0; i < nstream; ++i) checkHipErrors(hipGraphDestroy(graphs.at(i))); log_message("freeing data"); for(auto& itr : stream_num) checkHipErrors(hipFree(itr)); log_message("returning"); } int main(int argc, char* argv[]) { std::cout << "[" << basename(argv[0]) << "] executing..." << std::endl; int ndevice_real = 0; checkHipErrors(hipGetDeviceCount(&ndevice_real)); uint64_t nstream = 1; uint64_t nkernel_per_stream = 12; uint64_t ndevice = ndevice_real; if(argc > 1) nstream = std::stoul(argv[1]); if(argc > 2) nkernel_per_stream = std::stoul(argv[2]); if(argc > 3) ndevice = std::stoul(argv[3]); ndevice = std::min(ndevice, ndevice_real); auto progress = std::atomic{0}; auto promise = std::promise{}; auto future = promise.get_future().share(); auto threads = std::vector{}; threads.reserve(ndevice); for(uint64_t i = 0; i < ndevice; ++i) threads.emplace_back(run, i, nstream, nkernel_per_stream, &progress, future); // wait for all threads to reach designated progress point while(progress < ndevice) { std::this_thread::yield(); std::this_thread::sleep_for(std::chrono::milliseconds{1}); } // release the threads promise.set_value(); for(auto& itr : threads) itr.join(); for(uint64_t i = 0; i < ndevice; ++i) { checkHipErrors(hipSetDevice(i)); checkHipErrors(hipDeviceSynchronize()); } std::cout << "[" << basename(argv[0]) << "] complete" << std::endl; return 0; }