kunzmi / managedCuda

ManagedCUDA aims an easy integration of NVidia's CUDA in .net applications written in C#, Visual Basic or any other .net language.
Other
440 stars 79 forks source link

Possible Inconsistency in ActivationForward methods #27

Closed cbovar closed 7 years ago

cbovar commented 7 years ago

Hi, Thanks for your work!

double version of ActivationForward is: public void ActivationForward(cudnnActivationDescriptor activationDesc, [...]

whereas float version is: public void ActivationForward(ActivationDescriptor activationDesc, [...]

Shouldn't the double version accept an ActivationDescriptor rather than cudnnActivationDescriptor?