Brian Ward
Brian Ward
You're right, I meant ordered simplex. And while those are treated as types in the syntax, in the implementation both of them just declare variables with the underlying type and...
@bob-carpenter's suggested c++ code is very similar to what I implemented in #971 (the `if (sigma
@lu1and10 no, that seems to have fixed it (sorry for not chasing through enough `**kwarg` doc to find that option). So this issue can be re-worded as a feature request:...
I think there would certainly be users if this was implemented. In the mean time, @eickenberg and I still plan on writing out the derivatives in terms of other transforms,...
@dfm I think that is similar to what we currently do in pytorch_finufft, except in the case where you are requesting derivatives with respect to both the NU points and...
I suspect the windows failure is from the CTypesExtension and build_ext changes. These override `get_export_symbols` to make it so that `PyInit_ModuleName` is no longer a required export symbol. This would...
That would work, but I think you can still just remove the CtypesExtension class and extra logic, it is not really buying you anything here. The intention of the class...
The wheels being generic for any Python version is provided by `bdist_wheel_abi_none`, not the CtypesExtension
Ah, I understand. You could of course avoid having to import the library at all and locate it without `importlib`, but at that point you might as well avoid using...