Conversation
|
We should support this, so if anything raise a NotImplementedError |
|
If the model wasn't frozen, we should be able to get away with some shape changes though? I guess we could check if the tensor type shapes match? |
Doesn't nutpie freeze the model by default now? |
|
The default is to freeze jax models, but not numba models. |
|
If the model isn't frozen, changing any shared variable that doesn't have static shape (all by default), should work fine. Something in nutpie is likely hardcoding the shape after freezing though, because in my MWE I'm not using jax backend |
Check thoroughly if the dims of shared variables change when
with_datamethod is called on aCompiledModel, and if so, throw an informative error. Should fix #267.