We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This should be flagged as failure because x is a local copy within the function :
#include "autodiff/forward/dual.hpp" #include <iostream> template<typename T1, typename T2> auto f(const T1 x, const T2 y){ return x*sin(y); }; int main(){ autodiff::dual2nd x = 3.8, y = 9.8; auto g = f(x, y); std::cout << g.l << std::endl; }
The text was updated successfully, but these errors were encountered:
Docs here: https://clang.llvm.org/docs/AddressSanitizer.html
Cannot reproduce with autodiff at the command line, but correctly flagged in Xcode
Sorry, something went wrong.
Enable the ability to run address sanitizer
aad0144
See #106
CLI docs here: https://github.com/google/sanitizers/wiki/AddressSanitizerFlags
No branches or pull requests
This should be flagged as failure because x is a local copy within the function :
The text was updated successfully, but these errors were encountered: