mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
refactor: correct naming of enum class constants 9/n
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
c612a86d28
commit
a6458433dc
@@ -105,9 +105,9 @@ void BcsSplit::releaseResources() {
|
||||
}
|
||||
|
||||
std::vector<CommandQueue *> &BcsSplit::getCmdQsForSplit(NEO::TransferDirection direction) {
|
||||
if (direction == NEO::TransferDirection::HostToLocal) {
|
||||
if (direction == NEO::TransferDirection::hostToLocal) {
|
||||
return this->h2dCmdQs;
|
||||
} else if (direction == NEO::TransferDirection::LocalToHost) {
|
||||
} else if (direction == NEO::TransferDirection::localToHost) {
|
||||
return this->d2hCmdQs;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user