You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the join implementation in futhark/join.fut does redudant sorting.
Ideally we would sort once when we combine the tables. In this implementation we would simply need to first sort by the column value being merged on and than by table.
Currently we use partition in the generate_pair function. This would not be neccesary if the lists were pre sorted. However this extra work may be insignificant. (need to test this).
The text was updated successfully, but these errors were encountered:
the join implementation in futhark/join.fut does redudant sorting.
Ideally we would sort once when we combine the tables. In this implementation we would simply need to first sort by the column value being merged on and than by table.
Currently we use partition in the generate_pair function. This would not be neccesary if the lists were pre sorted. However this extra work may be insignificant. (need to test this).
The text was updated successfully, but these errors were encountered: