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
Produces this internal compiler error (with futhark cuda)
Internal compiler error. Please report this:
https://github.com/diku-dk/futhark/issues
Type error after pass 'tile loops':
In expression of statement
{defunc_2_map_res_30456 : ({}, [3i64][3i64]f64)}
in body of last case
In expression of statement
{defunc_2_map_res_47235 : ({}, [3i64][3i64]f64)}
Inside the loop body
In expression of statement
{x_47240 : ({}, [3i64][3i64]f64)}
in body of case {true}
In expression of statement
{x_47245 : ({}, [3i64][3i64]f64)}
In expression of statement
{tiled_inside_loop_57581 : ({}, [tile_size_52178][5i64]f64)}
Inside the loop body
In expression of statement
{accs_55773 : ({}, [tile_size_52178]f64)}
Inside the loop body
In expression of statement
{full_tile_54587 : ({}, [tile_size_52178]f64)}
In expression of statement
{dotprod_arg_54599 : ({defunc_2_map_res_47795}, [i_47826]f64)}
Use of unknown variable defunc_2_map_res_47795.
The text was updated successfully, but these errors were encountered:
The root of our issue was an insistence on not duplicating code (even
if we did duplicate computation). That forced us to duplicate some
consuming code, which is a big nono.
This is a superior fix to diku-dk#1933, including a test.
Fixesdiku-dk#1940.
This code:
Produces this internal compiler error (with futhark cuda)
The text was updated successfully, but these errors were encountered: