SWDEV-374370 - Propogate element size to blit kernel.

Change-Id: I8a3355c62947265be34e6a2befd26f86b3dc6cd2
This commit is contained in:
Jaydeep Patel
2022-12-26 09:28:34 +00:00
committed by Jaydeepkumar Patel
parent a643c199de
commit f2b0542442
3 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ hipError_t ihipMemsetCommand(std::vector<amd::Command*>& commands, void* dst, in
size_t valueSize, size_t sizeBytes, amd::HostQueue* queue);
hipError_t ihipMemset3DCommand(std::vector<amd::Command*>& commands, hipPitchedPtr pitchedDevPtr,
int value, hipExtent extent, amd::HostQueue* queue);
int value, hipExtent extent, amd::HostQueue* queue, size_t elementSize = 1);
hipError_t ihipMemcpySymbol_validate(const void* symbol, size_t sizeBytes, size_t offset,
size_t& sym_size, hipDeviceptr_t& device_ptr);
+6 -6
View File
@@ -1438,7 +1438,7 @@ class hipGraphMemsetNode : public hipGraphNode {
if (pMemsetParams_->height == 1) {
sizeBytes = pMemsetParams_->width * pMemsetParams_->elementSize;
} else {
sizeBytes = pMemsetParams_->width * pMemsetParams_->height;
sizeBytes = pMemsetParams_->width * pMemsetParams_->height * pMemsetParams_->elementSize;
}
}
@@ -1468,7 +1468,7 @@ class hipGraphMemsetNode : public hipGraphNode {
if (pMemsetParams_->height == 1) {
sizeBytes = pMemsetParams_->width * pMemsetParams_->elementSize;
} else {
sizeBytes = pMemsetParams_->width * pMemsetParams_->height;
sizeBytes = pMemsetParams_->width * pMemsetParams_->height * pMemsetParams_->elementSize;
}
label = std::to_string(GetID()) + "\n" + label_ + "\n(" +
std::to_string(pMemsetParams_->value) + "," + std::to_string(sizeBytes) + ")";
@@ -1496,9 +1496,9 @@ class hipGraphMemsetNode : public hipGraphNode {
} else {
hipError_t status = ihipMemset3DCommand(
commands_,
{pMemsetParams_->dst, pMemsetParams_->pitch, pMemsetParams_->width,
{pMemsetParams_->dst, pMemsetParams_->pitch, pMemsetParams_->width * pMemsetParams_->elementSize,
pMemsetParams_->height},
pMemsetParams_->value, {pMemsetParams_->width, pMemsetParams_->height, 1}, queue);
pMemsetParams_->value, {pMemsetParams_->width * pMemsetParams_->elementSize, pMemsetParams_->height, 1}, queue, pMemsetParams_->elementSize);
}
return status;
}
@@ -1520,8 +1520,8 @@ class hipGraphMemsetNode : public hipGraphNode {
} else {
sizeBytes = params->width * params->height * 1;
hip_error =
ihipMemset3D_validate({params->dst, params->pitch, params->width, params->height},
params->value, {params->width, params->height, 1}, sizeBytes);
ihipMemset3D_validate({params->dst, params->pitch, params->width * params->elementSize, params->height},
params->value, {params->width * params->elementSize, params->height, 1}, sizeBytes);
}
if (hip_error != hipSuccess) {
return hip_error;
+3 -3
View File
@@ -2920,12 +2920,12 @@ hipError_t ihipMemset3D_validate(hipPitchedPtr pitchedDevPtr, int value, hipExte
}
hipError_t ihipMemset3DCommand(std::vector<amd::Command*> &commands, hipPitchedPtr pitchedDevPtr,
int value, hipExtent extent, amd::HostQueue* queue) {
int value, hipExtent extent, amd::HostQueue* queue, size_t elementSize = 1) {
size_t offset = 0;
auto sizeBytes = extent.width * extent.height * extent.depth;
amd::Memory* memory = getMemoryObject(pitchedDevPtr.ptr, offset);
if (pitchedDevPtr.pitch == extent.width) {
return ihipMemsetCommand(commands, pitchedDevPtr.ptr, value, sizeof(int8_t),
return ihipMemsetCommand(commands, pitchedDevPtr.ptr, value, elementSize,
static_cast<size_t>(sizeBytes), queue);
}
// Workaround for cases when pitch > row until fill kernel will be updated to support pitch.
@@ -2943,7 +2943,7 @@ hipError_t ihipMemset3DCommand(std::vector<amd::Command*> &commands, hipPitchedP
amd::FillMemoryCommand* command;
command = new amd::FillMemoryCommand(
*queue, CL_COMMAND_FILL_BUFFER, amd::Command::EventWaitList{}, *memory->asBuffer(),
&value, sizeof(int8_t), origin, region, surface);
&value, elementSize, origin, region, surface);
commands.push_back(command);
return hipSuccess;
}