JamesYang007 / FastAD

FastAD is a C++ implementation of automatic differentiation both forward and reverse mode.
MIT License
103 stars 3 forks source link

ProdNode can feval and beval be separated? #18

Closed JamesYang007 closed 4 years ago

JamesYang007 commented 4 years ago

To forward evaluate, feval is called, and then backward evaluation requires another feval before a beval. Can we manage Vec such that we can separate these calls?