add BashiRow#93
Merged
SimeonEhrig merged 2 commits intoalpaka-group:mainfrom Apr 27, 2026
Merged
Conversation
BashiRow works like an parameter-value-tuple with one exception. If an parameter is accessed, which is not in the parameter-value-tuple a dummy object is return instead throwing an error. The dummy object can be used to compare the value-name or value-version. The comparision will return `False` every time. Therefore the following expression in a filter rule can be compressed: `HOST_COMPILER in row and row[HOST_COMPILER].name == NVCC` -> `row[HOST_COMPILER].name == NVCC`
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #93 +/- ##
==========================================
+ Coverage 93.18% 93.20% +0.02%
==========================================
Files 34 35 +1
Lines 1482 1516 +34
Branches 354 357 +3
==========================================
+ Hits 1381 1413 +32
- Misses 63 64 +1
- Partials 38 39 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
BashiRow works like an parameter-value-tuple with one exception. If an parameter is accessed, which is not in the parameter-value-tuple a dummy object is return instead throwing an error. The dummy object can be used to compare the value-name or value-version. The comparision will return
Falseevery time. Therefore the following expression in a filter rule can be compressed:HOST_COMPILER in row and row[HOST_COMPILER].name == NVCC->row[HOST_COMPILER].name == NVCC