Skip to content
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

Open
athas opened this issue Feb 10, 2025 · 4 comments
Open

Duplication of entry points #2220

athas opened this issue Feb 10, 2025 · 4 comments

Comments

@athas
Copy link
Member

athas commented Feb 10, 2025

-- Duplication of entry points because monomorphisation thought the
-- second use had a different type (because it is a more specific size
-- instantiation).

entry foo [n] [m] (A: [n][m]i32) = A

entry bar [n] (B: [n][n]i32) = foo B

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.

@FluxusMagna
Copy link

Is there any way to work around this in the futhark code, by type ascriptions or such?

@athas
Copy link
Member Author

athas commented Feb 10, 2025

Don't call entry points directly; use a wrapper function (it can be a trivial one, e.g. def foo = bar).

@athas
Copy link
Member Author

athas commented Feb 10, 2025

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.

@FluxusMagna
Copy link

FluxusMagna commented Feb 11, 2025

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

#[entry dot_f32 [n] : [n]f32 ->  [n]f32 -> f32 ]
#[entry dot_f64 [n] : [n]f64 ->  [n]f64 -> f64 ]
def dot as bs = map2 (+) as bs |> reduce  (+) 0

equivalent to

entry dot [n] (as:[n]f64) (bs:[n]f32) : f32 = map2 (+) as bs |> reduce  (+) 0

entry dot [n] (as:[n]f64) (bs:[n]f32) : f64 = map2 (+) as bs |> reduce  (+) 0

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants