Skip to content

Commit

Permalink
Merge pull request #950 from CHIP-SPV/prune-failures
Browse files Browse the repository at this point in the history
Prune known_failures.yaml & arg checks
  • Loading branch information
pvelesko authored Oct 27, 2024
2 parents 5a92dba + 82ceedf commit fa82b1b
Show file tree
Hide file tree
Showing 3 changed files with 1,358 additions and 307 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 fa82b1b

Please sign in to comment.