Skip to content

Commit

Permalink
Prune known_failures.yaml & arg checks
Browse files Browse the repository at this point in the history
  • Loading branch information
pvelesko committed Oct 26, 2024
1 parent 5a92dba commit 81028d2
Show file tree
Hide file tree
Showing 3 changed files with 1,360 additions and 308 deletions.
5 changes: 4 additions & 1 deletion src/CHIPBackend.cc
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -807,6 +807,9 @@ int chipstar::Device::getAttr(hipDeviceAttribute_t Attr) const {
case hipDeviceAttributeUnifiedAddressing:
return Prop.unifiedAddressing;
break;
case hipDeviceAttributeMemoryPoolsSupported:
return Prop.memoryPoolsSupported;
break;
default:
CHIPERR_LOG_AND_THROW("Device::getAttr asked for an unkown attribute",
hipErrorInvalidValue);
Expand Down Expand Up @@ -1461,7 +1464,7 @@ chipstar::Queue *chipstar::Backend::findQueue(chipstar::Queue *ChipQueue) {
CHIPERR_LOG_AND_THROW("Backend::findQueue() was given a non-nullptr "
"queue but this queue "
"was not found among the backend queues.",
hipErrorTbd);
hipErrorContextIsDestroyed);
return *QueueFound;
}

Expand Down
Loading

0 comments on commit 81028d2

Please sign in to comment.