Amit Gupta
Amit Gupta
@allanleal Just one more clarification, can I use `Map` on `double *` ? I mean what is the most efficient way for going from `double *` memory block to `VectorXreal`?...
My actual problem is to port an existing library to have gradients (currently it uses numerical gradients). For that I would like to keep the interface for calculations same. Hence...
Hi @michaelmacisaac , yes. Currently we have really early stage version which can support almost any TorchScript model directly using a dedicated KIM model driver. Hoping to release it for...
Yes. This is my current implementation of multispecies SiC Model as of now. ```python N1 = 10 N2 = 10 model_si = Sequential(Linear(51, N1), Tanh(), Linear(N1, N2), Tanh(), Linear(N2, 1))...
Sorry, I am having same issue, in a small example I was creating to ask unrelated question. Why is the minimal function below gives same error? https://fwd.gymni.ch/NzHCYv ``` int __enzyme_const,...
This is embarrassing! I was using `__enzyme_autodiff` properly, and was trying to see if its name change will affect the compilation. But completely forgot about `enzyme_dup`, I was really sure...