Skip to content

Create numpy check #641

@victorusu

Description

@victorusu

EasyBuild runs the following test to check Python's performance after compiling numpy

python -m timeit -n 3 -r 3 -s "import numpy; x = numpy.random.random((3000, 3000))" "b = numpy.dot(x, x.T);

One possible test to run is a dot product and a matrix inversion

import numpy
x = numpy.random.random((3000, 3000))
b = numpy.dot(x, x.T)
c = numpy.linalg.inv(b)

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions