Replies: 1 comment 2 replies
-
I am missing some context, but this should be a good starting point: https://fwd.gymni.ch/YcMwSq |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there everyone !
I was wondering if the following is possible,
lets say we have a function of the following format:
`
double generateGbmMatricesPtr ( double* Ints, double* instantaneousInts, double* vols, , int cols ) {
`
Is there a way that Enzyme can differentiate the function with respect to all input vairables labelled
double* Ints, double* instantaneousInts, double* vols,
i.e there will be 120 inputs for all variables ? and we want to store the derivative values of those variables in a return double* array using the reverse mode ? I assume that the Forward mode would be executed thread wise with respect to one input variable, but in this instance we want to differentiate the function w.r.t all 120 Interest rates and volatilities in one go.
Looking forward to hearing from you !
Beta Was this translation helpful? Give feedback.
All reactions