ricosjp / monolish

monolish: MONOlithic LInear equation Solvers for Highly-parallel architecture
Apache License 2.0
195 stars 12 forks source link

Can't call create_precond more than once #93

Closed t-hishinuma closed 2 years ago

t-hishinuma commented 2 years ago

This is due to the fact that resize() is not allowed on the GPU. The first time, the memory is allocated by resize() and then send() is performed. The second time, it is already sent, so an error occurs.