Open SteveBronder opened 1 week ago
@SteveBronder, thanks for putting up this issue. I think the issue itself could use a few more details on the technical side in order to be fully specified and implementable.
Before that, a couple of questions:
stan/math/rev/core.hpp
or unexpected has instantiated something improperly.)To go with your example, if log1p_exp
compiles with a Stan type, then all the sub functions (+
, *
, log1p
, exp
) have been instantiated with the Stan type. If exp
was instantiated with prim version and not the specialized version, that would mean that the specialized version wasn't included by the time log1p_exp
was instantiated.
I can see that happening if someone were using Math library by trying to selectively include functions, but if we're including any of the top-level includes such as stan/math/rev.hpp
then we shouldn't have this problem by construction. For any rev
specialization, this file would be included in rev.hpp
and all the functions that have specializations would also be included in the proper order.
I think if we have the problem now, it'll still be a problem if we implemented this change. I think it would come from an improper include somewhere in something like core.hpp
, which is absolutely possible.
Have you seen this problem recently?
Description
When we do not have a reverse or forward mode specialization for a function we default to the function available in prim. When we write functions with no reverse or forward mode specializations we assume the sub functions (or sub sub functions) that make up that larger function will then use reverse or forward mode specializations. Take the
log1p_exp
example below, Stan has reverse and forward mode for this function but I'm just using it as an example. This log1p function is generically templated so that it would acceptdouble
,var
, andfvar<T>
types.If the forward and reverse mode functions for
log1p
andexp
are not included beforehand, Stan would eitherTo make sure those includes come in correctly, for each file in prim that does not already have a specialization in rev or fwd we should have a file in the equivalent path of rev/fwd. That file will contain includes for any sub functions used in the prim function that have specializations in rev/(fwd). The final include will include the prim function that will then have the specializations for its sub-functions available to it. This will also simplify our include scheme for fwd/prim/rev as well. The new rules will be that all includes in rev(fwd) must come from rev(fwd), besides a prim implementation of the same file name.
For feature requests:
Given log1p above, it's rev file would look like the following
Current Version:
v4.9.0