-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
good first issueGood for newcomersGood for newcomers💎 enhancementNew feature or requestNew feature or request🪲 bugSomething isn't workingSomething isn't working
Description
Describe the bug
The chip was not automatically matched to a TDP value.
What happened?
I received an error and the value fell back to default.
What should have happened?
The correct TDP value should have been automatically inferred.
Reproduction of the problem
def 'Should match model' () {
setup:
String modelName = 'THE MODEL NAME'
Matrix model = new TDPDataMatrix(
[
[42, 10**3, 2*10**3],
],
['tdp (W)', 'cores', 'threads'] as LinkedHashSet,
[modelName] as LinkedHashSet,
)
when:
DataMatrix modelRes = df.matchModel(modelName)
then:
modelRes == model
modelRes.get(0, "tdp (W)", true) == 42
}In what computing environment did the problem occur?
- Plugin version: 1.0.0 onwards
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers💎 enhancementNew feature or requestNew feature or request🪲 bugSomething isn't workingSomething isn't working