Skip to content

Missing chips / CPUs / GPUs #190

@JosuaCarl

Description

@JosuaCarl

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions