Skip to content

BufferizedNDArray Doesn't Support Matmul #351

@kylebd99

Description

@kylebd99

Minimal Error Example:

import finchlite
import numpy as np

A = np.ones((2,2))
A = finchlite.asarray(A)
A@A

Unless I've missed something, it seems like this should pass. For example, the alternative version does not error:

import finchlite
import numpy as np

A = np.ones((2,2))
A = finchlite.asarray(A)
finchlite.matmul(A,A)

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions