Skip to content
#

mlir

Here are 41 public repositories matching this topic...

fabianschuiki
fabianschuiki commented Jul 8, 2022

Right now the reducer considers an input to be interesting if the test exits with a non-zero exit code. This technically makes sense because you are likely trying to isolate a crash.

In practice however, it's far more common to run a lot of commands in a script to check if the current reduction exhibits interesting behaviour, for example by running the input through two unrelated chains of tool

good first issue Reducer
torch-mlir
cathyzhyi
cathyzhyi commented Mar 9, 2022

The existing code assumes the result tensor type is the same as input type for a few aten ops like log, exp, erf. See https://github.com/llvm/torch-mlir/blob/486f95e84f587d020ba789b071b12f890510f1a1/lib/Dialect/Torch/Transforms/RefineTypes.cpp#L221-L235
This incorrect. The result tensor of these ops should always have the default dtype rather than the same as the input type. E2E tests fo

good first issue help wanted
hanchenye
hanchenye commented Oct 17, 2021

In test/create-cores/test_dma1.mlir, -aie-lower-memcpy convert

  AIE.memcpy @token0(1, 2) (%t11 : <%buf0, 0, 256>, %t22 : <%buf1, 0, 256>) : (memref<256xi32>, memref<256xi32>)
  AIE.memcpy @token1(1, 2) (%t11 : <%buf0, 0, 256>, %t33 : <%buf2, 0, 256>) : (memref<256xi32>, memref<256xi32>)

to (only shows the %t11 side)

  %2 = AIE.mem(%0) {
    %15 = AIE.dmaStart(MM2S0, ^bb1
bug good first issue

Improve this page

Add a description, image, and links to the mlir topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the mlir topic, visit your repo's landing page and select "manage topics."

Learn more