Skip to content

Memory Leak in Python Interface

There is a memory leak in the python interface to xerus. Minimal working example:

import xerus as xe

i, = xe.indices(1)
d = xe.Tensor.random([100]*3)
while True:
    d_tmp = xe.Tensor()
    d_tmp(i&0) << d(i&0)