-
-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
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
Allow complex promotion in functions, not just operators #999
Conversation
@SteveBronder this is now getting failures on C++ compile:
Do we need to do something on the c++ side to allow complex promotion in UDFs? |
Marked as a draft until C++ compilation is resolved. @SteveBronder - feel free to work on this branch as well if you get the opportunity |
I'll look at it today! |
Thanks! |
Will do! Trying to finish up some of the adjoint ODE fix today then I will look at this |
Oh, this is a little tricky. So int -> double works in signatures since int is implicitly convertible to double but the same is not true for https://godbolt.org/z/ov184n6do So, I think what we need to do here is handle promotion ourselves and that means before printing the C++ we need to look at the functions {
// For this signature
vector blah(complex x, array[] complex y);
}
transformed data {
// called as
real yy[10] yy = fill_in_y(10, 10);
complex whatever = blah(1, yy);
} The cpp is pseudo like // function decl
template <typename T1, typename T2>
auto blah(std::complex<T1> x, std::vector<std::complex<T2>> y) {
/// stuff
}
// l8r in the model
std::vector<double> yy = fill_in_y(10, 10);
// call site
std::complex<double> whatever = blah(std::complex<double>(1),
stan::math::promote_scalar_t<std::complex<double>, std::vector<double>>(yy)); But Do we allow for The Q I'm thinking about is where should that happen? Like looking at | FunApp (UserDefined (f, suffix), es) ->
pp_user_defined_fun ppf (f, suffix, es) So I think we would have to do this in transformed mir at the least right? Because then I have access to the functions block to lookup the signatures (or can I actually get the signature from UserDefined somehow). What if we add a Also I just realized idt we can generate functions that take in an array of array of complex types? |
Why not?
We don't, but we should. It's semantically valid, and we allow it during assignment, just not during function calls. Long been on @bob-carpenter's wishlist I think that generating a |
How do you write the signature? I think the C++ always gens I'll take a stab at the compiler internal promotion type tmrw. That feels like the cleanest way imo |
Does Edit: Compiles to template <typename T0__>
void
foo(const std::vector<std::vector<std::vector<std::complex<T0__>>>>& zs,
std::ostream* pstream__) {
... seems fine? |
Oh whoops nvm! |
Working on this rn, but just a sanity check, should we allow for promotions from double to complex for UDF functions in the language? tmk everything in the math library has explicit function signatures for combinations of double and complex. For UDFs, it feels kind of inefficient to promote a double to a complex. Though of course that requires folks to write two different functions. I think its sort of a question on whether we should force users to write things efficiently or be nice and allow implicit promotions. For instance a promotion from It almost feels like when we do this we should also throw a warning in line of something like,
|
I think users will just call |
Reading your message again: I don’t think we need to do conversation from real[] to complex[] in this PR unless you’d really like to - we don’t do it for int [] to real[] during function calls at the moment anyway (but we do let you assign up, which should probably be the same here) |
The backend for this is pretty much the same whether I do the big or small thing so I'm just going to the full promotion thing |
Yes! We should be promoting When we do vectors and matrices, we'll want those to have covariance, too, so that We also need to promote during brace construction so that this works:
I'm not sure we ever extended the array construction logic to complex numbers. |
P.S. We should not be throwing a warning in any of these situations any more than we should warn people about promoting integers to reals or reals to complex. There's probably not going to be a whole lot of places where people are going to want to promote real containers to complex containers if we get all the heterogeneous operators working. |
Array literal promotion for complex works in Stan, I’ll need to check that the C++ compiles and that we have it in the test |
Superseded by #1004 |
This address the first portion of #998. We still need to do static casting in the code generation so the C++ will compile.
Currently, things like
throw signature errors because we're not properly allowing promotion for functions.
Partially this was caused by the fact that we have different systems for checking functions and checking operators, but this does not fix that issue, just repair this symptom for now.
However, this now fails at C++ time.
So does something like
proj(1.0)
.Submission Checklist
Release notes
Fixed an issue with calling functions that expect complex arguments with reals or integers.
Copyright and Licensing
By submitting this pull request, the copyright holder is agreeing to
license the submitted work under the BSD 3-clause license (https://opensource.org/licenses/BSD-3-Clause)