Skip to content

dot_d returns wrong result #1284

@hkaiser

Description

@hkaiser

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.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions