-
Notifications
You must be signed in to change notification settings - Fork 174
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
Duplication of entry points #2220
Comments
Is there any way to work around this in the futhark code, by type ascriptions or such? |
Don't call entry points directly; use a wrapper function (it can be a trivial one, e.g. |
This is another symptom of the arguable misdesign that our entry points are too implicit. We should probably have made them a more distinguished thing requiring explicit descriptions of the external interface. We've had lots of bugs related to the fact that they are functions with special properties tacked on. |
How about using attributes to designate entry points? It doesn't have any conflict (obvious to me) with the current system. In principle it could even be used to create multiple entry points from one function. It could also remove potential conflicts in naming between the futhark and the C backend, by placing the entry point name in the attribute rather than using the function name directly. for example something like
equivalent to
Perhaps there could be functionality to instantiate a whole module as entry points with consistent types(such that you can easily pass values between the functions). I think there are probably much bigger fish to fry, but it would be nice to eventually have a more powerful system for this. |
From #2218. It is not so difficult to fix this with a quick workaround, at the cost of more duplications of size-polymorphic functions. A better solution is for monomorphisation to be slightly smarter about when a specific use of a size-polymorphic function is an instance of the general case. Actually, it is pretty rare that functions should be monomorphised based on sizes - in practice, probably only for sizes in instantiations of lifted type parameters.
The text was updated successfully, but these errors were encountered: