This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
Implement forward tensor division. #48
Labels
good first issue
Good for newcomers
🐇 performance
Areas where we would like diffkt to take less time or use less memory.
Currently forward tensor elementwise division is implemented so that
x / y
is evaluated asx * y.pow(-1)
. That isn't very efficient, among other reasons it creates an intermediate tensor fory.pow(-1)
. Please implement it properly. It has already been done for scalars, and that could be used as a reference.The text was updated successfully, but these errors were encountered: