4a5b1d98c2
Migrates profiler_serializer class in QueueController to have an instance per-agent instead of one globally. Other changes in this commit are to allow for maps of the queues associated with each agent to be passed to profiler_serializer when it is turned on/off. Existing test cases cover whether or not the kernels are serialized (multistream app). New test case added to show that this serialization only occurs on a per device level with a kernel launched on one device waiting for a value to be set on the other.
72 строки
3.0 KiB
C++
72 строки
3.0 KiB
C++
// MIT License
|
|
//
|
|
// Copyright (c) 2023 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 <hip/hip_runtime.h>
|
|
|
|
#include "client.hpp"
|
|
|
|
#define HIP_CALL(call) \
|
|
do \
|
|
{ \
|
|
hipError_t err = call; \
|
|
if(err != hipSuccess) \
|
|
{ \
|
|
fprintf(stderr, "%s\n", hipGetErrorString(err)); \
|
|
abort(); \
|
|
} \
|
|
} while(0)
|
|
|
|
__global__ void
|
|
kernelA(int* wait_on, int value, int* no_opt)
|
|
{
|
|
while(*wait_on != value)
|
|
{
|
|
(*no_opt)++;
|
|
};
|
|
(*wait_on)--;
|
|
}
|
|
|
|
int
|
|
main(int, char**)
|
|
{
|
|
int ntotdevice = 0;
|
|
HIP_CALL(hipGetDeviceCount(&ntotdevice));
|
|
if(ntotdevice < 2) return 0;
|
|
|
|
start();
|
|
int* check_value = nullptr;
|
|
int* no_opt = nullptr;
|
|
HIP_CALL(hipMallocManaged(&check_value, sizeof(*check_value)));
|
|
HIP_CALL(hipMallocManaged(&no_opt, sizeof(*no_opt)));
|
|
*no_opt = 0;
|
|
*check_value = 1;
|
|
// Will hang if per-device serialization is not functional
|
|
HIP_CALL(hipSetDevice(0));
|
|
hipLaunchKernelGGL(kernelA, dim3(1), dim3(1), 0, 0, check_value, 0, no_opt);
|
|
HIP_CALL(hipSetDevice(1));
|
|
hipLaunchKernelGGL(kernelA, dim3(1), dim3(1), 0, 0, check_value, 1, no_opt);
|
|
HIP_CALL(hipSetDevice(0));
|
|
HIP_CALL(hipDeviceSynchronize());
|
|
|
|
std::cerr << "Run complete\n";
|
|
}
|