Skip to content

LoadMatmulLdB Loads in too many rows #399

@SeanStothers

Description

@SeanStothers

In the LoopMatmulLdB module, line 185 is written like "val rows = block_size.U - Mux(max_row_iterator === max_row_iterator-1.U, row_pad, 0.U)", which causes the B matrix to always load in block_size rows regardless of what the row_iterator is. I'm pretty sure this line should be " val rows = block_size.U - Mux(row_iterator === max_row_iterator-1.U, row_pad, 0.U)"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions