-
Notifications
You must be signed in to change notification settings - Fork 38
dot_d returns wrong result #1284
Copy link
Copy link
Open
Milestone
Description
Running the following code on 4 localities returns list(30, 60) which is wrong:
define(
test,
size,
block(
define(
array1,
random_d(
list(size, size)
)
),
define(
array2,
random_d(
list(size, size)
)
),
define(
v2,
dot_d(array1, array2)
),
shape(v2)
)
)
test(60)
as it should return list(30, 30), which is the size of each of the tiles.
Reactions are currently unavailable