Gregory Dushkin

Results 4 issues of Gregory Dushkin

Example code: ```cpp void f() { auto const& ref(Namespace::Class::instance().getter()); char const *sql = R""( select JOHN from DOE )""; } ``` Produces AST with an error that messes up syntax...

Hello! I'm trying to get into Enzyme and use it with Eigen (and potentially some other libraries in the future, but that's not important). To understand what's going on, I...

Related issue: #1904 There are still some fixes that need to be implemented (autodiff on a function pointer doesn't work for some reason, I'll write about it in the issue)...

Hello! Playing with C++ interface trying to get it to work and this simple program: ```cpp #include #include using Flt = double; using Vec = std::vector; Flt sum(const Vec& x)...