Files
rocm-systems/rocclr/runtime/device/pal/palcounters.cpp
T
foreman b48cac624d P4 to Git Change 1358001 by skudchad@skudchad_test_win_opencl2 on 2017/01/03 15:05:28
SWDEV-107271 - [OpenCL][GFXIP9 Bring up] add support for Raven(gfx901)
	- Add perf counter blocks in PAL backend.

	ReviewBoardURL = http://ocltc.amd.com/reviews/r/12108/diff/

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palcounters.cpp#7 edit
... //depot/stg/opencl/drivers/opencl/tests/ocltst/module/runtime/OCLPerfCounters.cpp#36 edit
2017-01-03 15:18:03 -05:00

532 rindas
15 KiB
C++

//
// Copyright (c) 2015 Advanced Micro Devices, Inc. All rights reserved.
//
#include "device/pal/palcounters.hpp"
#include "device/pal/palvirtual.hpp"
#include <array>
namespace pal {
PalCounterReference*
PalCounterReference::Create(VirtualGPU& gpu)
{
Pal::Result result;
// Create performance experiment
Pal::PerfExperimentCreateInfo createInfo = {};
createInfo.optionFlags.sampleInternalOperations = 1;
createInfo.optionFlags.cacheFlushOnCounterCollection = 1;
createInfo.optionFlags.sqShaderMask = 1;
createInfo.optionValues.sampleInternalOperations = true;
createInfo.optionValues.cacheFlushOnCounterCollection = true;
createInfo.optionValues.sqShaderMask = Pal::PerfShaderMaskCs;
size_t palExperSize = gpu.dev().iDev()->GetPerfExperimentSize(
createInfo, &result);
if (result != Pal::Result::Success) {
return nullptr;
}
PalCounterReference* memRef = new (palExperSize) PalCounterReference(gpu);
if (memRef != nullptr) {
result = gpu.dev().iDev()->CreatePerfExperiment(createInfo,
&memRef[1], &memRef->perfExp_);
if (result != Pal::Result::Success) {
memRef->release();
return nullptr;
}
}
return memRef;
}
PalCounterReference::~PalCounterReference()
{
// The counter object is always associated with a particular queue,
// so we have to lock just this queue
amd::ScopedLock lock(gpu_.execution());
if (layout_ != nullptr) {
delete layout_;
}
if (memory_ != nullptr) {
delete memory_;
}
if (nullptr != iPerf()) {
iPerf()->Destroy();
}
}
uint64_t PalCounterReference::result(int index)
{
if (index < 0) {
// These are counters that have no corresponding PalSample created
return 0;
}
if (layout_ != nullptr) {
assert(index <= static_cast<int>(layout_->sampleCount) && "index not in range");
const Pal::GlobalSampleLayout& sample = layout_->samples[index];
if (sample.dataType == Pal::PerfCounterDataType::Uint32) {
uint32_t beginVal = *reinterpret_cast<uint32_t*>(reinterpret_cast<char*>(cpuAddr_) + sample.beginValueOffset);
uint32_t endVal = *reinterpret_cast<uint32_t*>(reinterpret_cast<char*>(cpuAddr_) + sample.endValueOffset);
return (endVal - beginVal);
}
else if (sample.dataType == Pal::PerfCounterDataType::Uint64) {
uint64_t beginVal = *reinterpret_cast<uint64_t*>(reinterpret_cast<char*>(cpuAddr_) + sample.beginValueOffset);
uint64_t endVal = *reinterpret_cast<uint64_t*>(reinterpret_cast<char*>(cpuAddr_) + sample.endValueOffset);
return (endVal - beginVal);
}
else {
assert(0 && "dataType should be either Uint32 or Uint64");
return 0;
}
}
return 0;
}
bool PalCounterReference::finalize()
{
Pal::Result result;
iPerf()->Finalize();
// Acquire GPU memory for the query from the pool and bind it.
Pal::GpuMemoryRequirements gpuMemReqs = {};
iPerf()->GetGpuMemoryRequirements(&gpuMemReqs);
memory_ = new Memory(gpu().dev(), amd::alignUp(gpuMemReqs.size, gpuMemReqs.alignment));
if (nullptr == memory_) {
return false;
}
if (!memory_->create(Resource::Remote)) {
return false;
}
cpuAddr_ = memory_->cpuMap(gpu_);
if (nullptr == cpuAddr_) {
return false;
}
gpu_.queue(gpu_.engineID_).addMemRef(memory_->iMem());
result = iPerf()->BindGpuMemory(memory_->iMem(), 0);
if (result == Pal::Result::Success) {
Pal::GlobalCounterLayout layout = {};
iPerf()->GetGlobalCounterLayout(&layout);
assert(layout.sampleCount == numExpCounters_);
size_t size = sizeof(Pal::GlobalCounterLayout) + (sizeof(Pal::GlobalSampleLayout) * (layout.sampleCount - 1));
layout_ = reinterpret_cast<Pal::GlobalCounterLayout*>(new char[size]);
if (layout_ != nullptr) {
layout_->sampleCount = layout.sampleCount;
iPerf()->GetGlobalCounterLayout(layout_);
}
return true;
}
else {
return false;
}
}
// Converting from ORCA cmndefs.h to PAL palPerfExperiment.h
static const
std::array<std::pair<int, int>, 83> ciBlockIdOrcaToPal =
{{
{0x0F, 0}, // CB0
{0x0F, 1}, // CB1
{0x0F, 2}, // CB2
{0x0F, 3}, // CB3
{0x01, 0}, // CPF
{0x0E, 0}, // DB0
{0x0E, 1}, // DB1
{0x0E, 2}, // DB2
{0x0E, 3}, // DB3
{0x12, 0}, // GRBM
{0x13, 0}, // GRBMSE
{0x04, 0}, // PA_SU
{0x04, 0}, // PA_SC
{0x06, 0}, // SPI
{0x07, 0}, // SQ
{0x07, 0}, // SQ_ES
{0x07, 0}, // SQ_GS
{0x07, 0}, // SQ_VS
{0x07, 0}, // SQ_PS
{0x07, 0}, // SQ_LS
{0x07, 0}, // SQ_HS
{0x07, 0}, // SQ_CS
{0x08, 0}, // SX
{0x09, 0}, // TA0
{0x09, 1}, // TA1
{0x09, 2}, // TA2
{0x09, 3}, // TA3
{0x09, 4}, // TA4
{0x09, 5}, // TA5
{0x09, 6}, // TA6
{0x09, 7}, // TA7
{0x09, 8}, // TA8
{0x09, 9}, // TA9
{0x09, 0x0a}, // TA10
{0x0D, 0}, // TCA0
{0x0D, 1}, // TCA1
{0x0C, 0}, // TCC0
{0x0C, 1}, // TCC1
{0x0C, 2}, // TCC2
{0x0C, 3}, // TCC3
{0x0C, 4}, // TCC4
{0x0C, 5}, // TCC5
{0x0C, 6}, // TCC6
{0x0C, 7}, // TCC7
{0x0C, 8}, // TCC8
{0x0C, 9}, // TCC9
{0x0C, 0x0a}, // TCC10
{0x0C, 0x0b}, // TCC11
{0x0C, 0x0c}, // TCC12
{0x0C, 0x0d}, // TCC13
{0x0C, 0x0e}, // TCC14
{0x0C, 0x0f}, // TCC15
{0x0A, 0}, // TD0
{0x0A, 1}, // TD1
{0x0A, 2}, // TD2
{0x0A, 3}, // TD3
{0x0A, 4}, // TD4
{0x0A, 5}, // TD5
{0x0A, 6}, // TD6
{0x0A, 7}, // TD7
{0x0A, 8}, // TD8
{0x0A, 9}, // TD9
{0x0A, 0x0a}, // TD10
{0x0B, 0}, // TCP0
{0x0B, 1}, // TCP1
{0x0B, 2}, // TCP2
{0x0B, 3}, // TCP3
{0x0B, 4}, // TCP4
{0x0B, 5}, // TCP5
{0x0B, 6}, // TCP6
{0x0B, 7}, // TCP7
{0x0B, 8}, // TCP8
{0x0B, 9}, // TCP9
{0x0B, 0x0a}, // TCP10
{0x10, 0}, // GDS
{0x03, 0}, // VGT
{0x02, 0}, // IA
{0x16, 0}, // MC
{0x11, 0}, // SRBM
{0x1a, 0}, // TCS
{0x19, 0}, // WD
{0x17, 0}, // CPG
{0x18, 0}, // CPC
}};
static const
std::array<std::pair<int, int>, 97> viBlockIdOrcaToPal =
{{
{0x0F, 0}, // CB0
{0x0F, 1}, // CB1
{0x0F, 2}, // CB2
{0x0F, 3}, // CB3
{0x01, 0}, // CPF
{0x0E, 0}, // DB0
{0x0E, 1}, // DB1
{0x0E, 2}, // DB2
{0x0E, 3}, // DB3
{0x12, 0}, // GRBM
{0x13, 0}, // GRBMSE
{0x04, 0}, // PA_SU
{0x04, 0}, // PA_SC
{0x06, 0}, // SPI
{0x07, 0}, // SQ
{0x07, 0}, // SQ_ES
{0x07, 0}, // SQ_GS
{0x07, 0}, // SQ_VS
{0x07, 0}, // SQ_PS
{0x07, 0}, // SQ_LS
{0x07, 0}, // SQ_HS
{0x07, 0}, // SQ_CS
{0x08, 0}, // SX
{0x09, 0}, // TA0
{0x09, 1}, // TA1
{0x09, 2}, // TA2
{0x09, 3}, // TA3
{0x09, 4}, // TA4
{0x09, 5}, // TA5
{0x09, 6}, // TA6
{0x09, 7}, // TA7
{0x09, 8}, // TA8
{0x09, 9}, // TA9
{0x09, 0x0a}, // TA10
{0x09, 0x0b}, // TA11
{0x09, 0x0c}, // TA12
{0x09, 0x0d}, // TA13
{0x09, 0x0e}, // TA14
{0x09, 0x0f}, // TA15
{0x0D, 0}, // TCA0
{0x0D, 1}, // TCA1
{0x0C, 0}, // TCC0
{0x0C, 1}, // TCC1
{0x0C, 2}, // TCC2
{0x0C, 3}, // TCC3
{0x0C, 4}, // TCC4
{0x0C, 5}, // TCC5
{0x0C, 6}, // TCC6
{0x0C, 7}, // TCC7
{0x0C, 8}, // TCC8
{0x0C, 9}, // TCC9
{0x0C, 0x0a}, // TCC10
{0x0C, 0x0b}, // TCC11
{0x0C, 0x0c}, // TCC12
{0x0C, 0x0d}, // TCC13
{0x0C, 0x0e}, // TCC14
{0x0C, 0x0f}, // TCC15
{0x0A, 0}, // TD0
{0x0A, 1}, // TD1
{0x0A, 2}, // TD2
{0x0A, 3}, // TD3
{0x0A, 4}, // TD4
{0x0A, 5}, // TD5
{0x0A, 6}, // TD6
{0x0A, 7}, // TD7
{0x0A, 8}, // TD8
{0x0A, 9}, // TD9
{0x0A, 0x0a}, // TD10
{0x0A, 0x0b}, // TD11
{0x0A, 0x0c}, // TD12
{0x0A, 0x0d}, // TD13
{0x0A, 0x0e}, // TD14
{0x0A, 0x0f}, // TD15
{0x0B, 0}, // TCP0
{0x0B, 1}, // TCP1
{0x0B, 2}, // TCP2
{0x0B, 3}, // TCP3
{0x0B, 4}, // TCP4
{0x0B, 5}, // TCP5
{0x0B, 6}, // TCP6
{0x0B, 7}, // TCP7
{0x0B, 8}, // TCP8
{0x0B, 9}, // TCP9
{0x0B, 0x0a}, // TCP10
{0x0B, 0x0b}, // TCP11
{0x0B, 0x0c}, // TCP12
{0x0B, 0x0d}, // TCP13
{0x0B, 0x0e}, // TCP14
{0x0B, 0x0f}, // TCP15
{0x10, 0}, // GDS
{0x03, 0}, // VGT
{0x02, 0}, // IA
{0x16, 0}, // MC
{0x11, 0}, // SRBM
{0x19, 0}, // WD
{0x17, 0}, // CPG
{0x18, 0}, // CPC
}};
// The number of counters per block has been increased for gfx9 but this table may not reflect all of them
// as compute may not use all of them.
static const
std::array<std::pair<int, int>, 104> gfx9BlockIdPal =
{{
{ 0x0F, 0 }, // CB0
{ 0x0F, 1 }, // CB1
{ 0x0F, 2 }, // CB2
{ 0x0F, 3 }, // CB3
{ 0x01, 0 }, // CPF0
{ 0x01, 1 }, // CPF1
{ 0x0E, 0 }, // DB0
{ 0x0E, 1 }, // DB1
{ 0x0E, 2 }, // DB2
{ 0x0E, 3 }, // DB3
{ 0x12, 0 }, // GRBM0
{ 0x12, 1 }, // GRBM1
{ 0x13, 0 }, // GRBMSE0
{ 0x04, 0 }, // PA_SU
{ 0x04, 0 }, // PA_SC
{ 0x06, 0 }, // SPI
{ 0x07, 0 }, // SQ0
{ 0x07, 1 }, // SQ1
{ 0x07, 0 }, // SQ_ES
{ 0x07, 0 }, // SQ_GS
{ 0x07, 0 }, // SQ_VS
{ 0x07, 0 }, // SQ_PS
{ 0x07, 0 }, // SQ_LS
{ 0x07, 0 }, // SQ_HS
{ 0x07, 0 }, // SQ_CS0
{ 0x07, 1 }, // SQ_CS1
{ 0x08, 0 }, // SX
{ 0x09, 0 }, // TA0
{ 0x09, 1 }, // TA1
{ 0x09, 2 }, // TA2
{ 0x09, 3 }, // TA3
{ 0x09, 4 }, // TA4
{ 0x09, 5 }, // TA5
{ 0x09, 6 }, // TA6
{ 0x09, 7 }, // TA7
{ 0x09, 8 }, // TA8
{ 0x09, 9 }, // TA9
{ 0x09, 0x0a }, // TA10
{ 0x09, 0x0b }, // TA11
{ 0x09, 0x0c }, // TA12
{ 0x09, 0x0d }, // TA13
{ 0x09, 0x0e }, // TA14
{ 0x09, 0x0f }, // TA15
{ 0x0D, 0 }, // TCA0
{ 0x0D, 1 }, // TCA1
{ 0x0C, 0 }, // TCC0
{ 0x0C, 1 }, // TCC1
{ 0x0C, 2 }, // TCC2
{ 0x0C, 3 }, // TCC3
{ 0x0C, 4 }, // TCC4
{ 0x0C, 5 }, // TCC5
{ 0x0C, 6 }, // TCC6
{ 0x0C, 7 }, // TCC7
{ 0x0C, 8 }, // TCC8
{ 0x0C, 9 }, // TCC9
{ 0x0C, 0x0a }, // TCC10
{ 0x0C, 0x0b }, // TCC11
{ 0x0C, 0x0c }, // TCC12
{ 0x0C, 0x0d }, // TCC13
{ 0x0C, 0x0e }, // TCC14
{ 0x0C, 0x0f }, // TCC15
{ 0x0A, 0 }, // TD0
{ 0x0A, 1 }, // TD1
{ 0x0A, 2 }, // TD2
{ 0x0A, 3 }, // TD3
{ 0x0A, 4 }, // TD4
{ 0x0A, 5 }, // TD5
{ 0x0A, 6 }, // TD6
{ 0x0A, 7 }, // TD7
{ 0x0A, 8 }, // TD8
{ 0x0A, 9 }, // TD9
{ 0x0A, 0x0a }, // TD10
{ 0x0A, 0x0b }, // TD11
{ 0x0A, 0x0c }, // TD12
{ 0x0A, 0x0d }, // TD13
{ 0x0A, 0x0e }, // TD14
{ 0x0A, 0x0f }, // TD15
{ 0x0B, 0 }, // TCP0
{ 0x0B, 1 }, // TCP1
{ 0x0B, 2 }, // TCP2
{ 0x0B, 3 }, // TCP3
{ 0x0B, 4 }, // TCP4
{ 0x0B, 5 }, // TCP5
{ 0x0B, 6 }, // TCP6
{ 0x0B, 7 }, // TCP7
{ 0x0B, 8 }, // TCP8
{ 0x0B, 9 }, // TCP9
{ 0x0B, 0x0a }, // TCP10
{ 0x0B, 0x0b }, // TCP11
{ 0x0B, 0x0c }, // TCP12
{ 0x0B, 0x0d }, // TCP13
{ 0x0B, 0x0e }, // TCP14
{ 0x0B, 0x0f }, // TCP15
{ 0x10, 0 }, // GDS0
{ 0x10, 1 }, // GDS1
{ 0x03, 0 }, // VGT
{ 0x02, 0 }, // IA
{ 0x16, 0 }, // MC
{ 0x11, 0 }, // SRBM
{ 0x19, 0 }, // WD
{ 0x17, 0 }, // CPG0
{ 0x17, 1 }, // CPG1
{ 0x18, 0 }, // CPC0
{ 0x18, 1 }, // CPC1
}};
void PerfCounter::convertInfo()
{
switch (dev().ipLevel()) {
case Pal::GfxIpLevel::GfxIp7:
if (info_.blockIndex_ < ciBlockIdOrcaToPal.size()) {
auto p = ciBlockIdOrcaToPal[info_.blockIndex_];
info_.blockIndex_ = std::get<0>(p);
info_.counterIndex_ = std::get<1>(p);
}
break;
case Pal::GfxIpLevel::GfxIp8:
if (info_.blockIndex_ < viBlockIdOrcaToPal.size()) {
auto p = viBlockIdOrcaToPal[info_.blockIndex_];
info_.blockIndex_ = std::get<0>(p);
info_.counterIndex_ = std::get<1>(p);
}
break;
case Pal::GfxIpLevel::GfxIp9:
if (info_.blockIndex_ < gfx9BlockIdPal.size()) {
auto p = gfx9BlockIdPal[info_.blockIndex_];
info_.blockIndex_ = std::get<0>(p);
info_.counterIndex_ = std::get<1>(p);
}
break;
default:
Unimplemented();
break;
}
}
PerfCounter::~PerfCounter()
{
if (palRef_ == nullptr) {
return;
}
// Release the counter reference object
palRef_->release();
}
bool
PerfCounter::create()
{
palRef_->retain();
// Initialize the counter
Pal::PerfCounterInfo counterInfo = {};
counterInfo.counterType = Pal::PerfCounterType::Global;
counterInfo.block = static_cast<Pal::GpuBlock>(info_.blockIndex_);
counterInfo.instance = info_.counterIndex_;
counterInfo.eventId = info_.eventIndex_;
Pal::Result result = iPerf()->AddCounter(counterInfo);
if (result == Pal::Result::Success) {
index_ = palRef_->getPalCounterIndex();
return true;
}
else {
// Get here when there's no HW PerfCounter matching the counterInfo
index_ = -1;
return false;
}
}
uint64_t
PerfCounter::getInfo(uint64_t infoType) const
{
switch (infoType) {
case CL_PERFCOUNTER_GPU_BLOCK_INDEX: {
// Return the GPU block index
return info()->blockIndex_;
}
case CL_PERFCOUNTER_GPU_COUNTER_INDEX: {
// Return the GPU counter index
return info()->counterIndex_;
}
case CL_PERFCOUNTER_GPU_EVENT_INDEX: {
// Return the GPU event index
return info()->eventIndex_;
}
case CL_PERFCOUNTER_DATA: {
return palRef_->result(index_);
}
default:
LogError("Wrong PerfCounter::getInfo parameter");
}
return 0;
}
} // namespace pal