/* * Copyright (C) 2014-2019 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 "KFDGWSTest.hpp" #include "PM4Queue.hpp" #include "PM4Packet.hpp" #include "Dispatch.hpp" /* Shader to initialize gws counter to 1 */ static const char* GwsInitIsa_gfx9_10 = R"( .text s_mov_b32 m0, 0 s_nop 0 s_load_dword s16, s[0:1], 0x0 glc s_waitcnt 0 v_mov_b32 v0, s16 s_waitcnt 0 ds_gws_init v0 offset:0 gds s_waitcnt 0 s_endpgm )"; /* Atomically increase a value in memory * This is expected to be executed from * multiple work groups simultaneously. * GWS semaphore is used to guarantee * the operation is atomic. */ static const char* AtomicIncreaseIsa_gfx9 = R"( .text // Assume src address in s0, s1 s_mov_b32 m0, 0 s_nop 0 ds_gws_sema_p offset:0 gds s_waitcnt 0 s_load_dword s16, s[0:1], 0x0 glc s_waitcnt 0 s_add_u32 s16, s16, 1 s_store_dword s16, s[0:1], 0x0 glc s_waitcnt lgkmcnt(0) ds_gws_sema_v offset:0 gds s_waitcnt 0 s_endpgm )"; static const char* AtomicIncreaseIsa_gfx10 = R"( .text // Assume src address in s0, s1 s_mov_b32 m0, 0 s_mov_b32 exec_lo, 0x1 v_mov_b32 v0, s0 v_mov_b32 v1, s1 ds_gws_sema_p offset:0 gds s_waitcnt 0 flat_load_dword v2, v[0:1] glc dlc s_waitcnt 0 v_add_nc_u32 v2, v2, 1 flat_store_dword v[0:1], v2 s_waitcnt_vscnt null, 0 ds_gws_sema_v offset:0 gds s_waitcnt 0 s_endpgm )"; void KFDGWSTest::SetUp() { ROUTINE_START KFDBaseComponentTest::SetUp(); ROUTINE_END } void KFDGWSTest::TearDown() { ROUTINE_START KFDBaseComponentTest::TearDown(); ROUTINE_END } TEST_F(KFDGWSTest, Allocate) { TEST_START(TESTPROFILE_RUNALL); HSAuint32 firstGWS; PM4Queue queue; int defaultGPUNode = m_NodeInfo.HsaDefaultGPUNode(); ASSERT_GE(defaultGPUNode, 0) << "failed to get default GPU Node"; const HsaNodeProperties *pNodeProperties = m_NodeInfo.HsaDefaultGPUNodeProperties(); if (!pNodeProperties || !pNodeProperties->NumGws) { LOG() << "Skip test: GPU node doesn't support GWS" << std::endl; return; } ASSERT_SUCCESS(queue.Create(defaultGPUNode)); ASSERT_SUCCESS(hsaKmtAllocQueueGWS(queue.GetResource()->QueueId, pNodeProperties->NumGws,&firstGWS)); EXPECT_EQ(0, firstGWS); EXPECT_SUCCESS(queue.Destroy()); TEST_END } TEST_F(KFDGWSTest, Semaphore) { TEST_START(TESTPROFILE_RUNALL); int defaultGPUNode = m_NodeInfo.HsaDefaultGPUNode(); ASSERT_GE(defaultGPUNode, 0) << "failed to get default GPU Node"; const HsaNodeProperties *pNodeProperties = m_NodeInfo.HsaDefaultGPUNodeProperties(); HSAuint32 firstGWS; HSAuint32 numResources = 1; PM4Queue queue; if (!pNodeProperties || !pNodeProperties->NumGws) { LOG() << "Skip test: GPU node doesn't support GWS" << std::endl; return; } HsaMemoryBuffer isaBuffer(PAGE_SIZE, defaultGPUNode, true/*zero*/, false/*local*/, true/*exec*/); HsaMemoryBuffer buffer(PAGE_SIZE, defaultGPUNode, true, false, false); ASSERT_SUCCESS(queue.Create(defaultGPUNode)); ASSERT_SUCCESS(hsaKmtAllocQueueGWS(queue.GetResource()->QueueId, pNodeProperties->NumGws,&firstGWS)); EXPECT_EQ(0, firstGWS); ASSERT_SUCCESS(m_pAsm->RunAssembleBuf(GwsInitIsa_gfx9_10, isaBuffer.As())); Dispatch dispatch0(isaBuffer); buffer.Fill(numResources, 0, 4); dispatch0.SetArgs(buffer.As(), NULL); dispatch0.Submit(queue); dispatch0.Sync(); const char *pAtomicIncreaseIsa; if (m_FamilyId <= FAMILY_AL) pAtomicIncreaseIsa = AtomicIncreaseIsa_gfx9; else pAtomicIncreaseIsa = AtomicIncreaseIsa_gfx10; ASSERT_SUCCESS(m_pAsm->RunAssembleBuf(pAtomicIncreaseIsa, isaBuffer.As())); Dispatch dispatch(isaBuffer); dispatch.SetArgs(buffer.As(), NULL); dispatch.SetDim(1024, 16, 16); dispatch.Submit(queue); dispatch.Sync(); EXPECT_EQ(1024*16*16+1, *buffer.As()); EXPECT_SUCCESS(queue.Destroy()); TEST_END }