Skip to content

Tags: rnshah9/torch-mlir

Tags

snapshot-20220529.481

Toggle snapshot-20220529.481's commit message
[tosa] Support for AtenAvgPool2d op

Signed-Off By: Vivek Khandelwal <vivek@nod-labs.com>

snapshot-20220529.480

Toggle snapshot-20220529.480's commit message
[tosa] Support for AtenAvgPool2d op

Signed-Off By: Vivek Khandelwal <vivek@nod-labs.com>

snapshot-20220528.479

Toggle snapshot-20220528.479's commit message
[tosa] Support for AtenAvgPool2d op

Signed-Off By: Vivek Khandelwal <vivek@nod-labs.com>

snapshot-20220528.478

Toggle snapshot-20220528.478's commit message
[tosa] Support for AtenAvgPool2d op

Signed-Off By: Vivek Khandelwal <vivek@nod-labs.com>

snapshot-20220527.477

Toggle snapshot-20220527.477's commit message
[tosa] Support for AtenAvgPool2d op

Signed-Off By: Vivek Khandelwal <vivek@nod-labs.com>

snapshot-20220527.476

Toggle snapshot-20220527.476's commit message
[tosa] Support for AtenAvgPool2d op

Signed-Off By: Vivek Khandelwal <vivek@nod-labs.com>

snapshot-20220526.475

Toggle snapshot-20220526.475's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
build: fix code so that the compiler does not emit warnings (llvm#871)

When compiling without assertions (i.e. in `NDEBUG` mode), a handful of
statements turn to NOPs, which results in warnings such as missing
return statement or unused variables and function. This patch replaces
such statements with `llvm_unreachable()`, which informs the compiler
about program termination regardless of the `NDEBUG` mode. This also
enables torch-mlir to be compiled using the flags `-Wall`, `-Wextra`,
`-Wpedantic`, and `-Werror`.

snapshot-20220526.474

Toggle snapshot-20220526.474's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
build: fix code so that the compiler does not emit warnings (llvm#871)

When compiling without assertions (i.e. in `NDEBUG` mode), a handful of
statements turn to NOPs, which results in warnings such as missing
return statement or unused variables and function. This patch replaces
such statements with `llvm_unreachable()`, which informs the compiler
about program termination regardless of the `NDEBUG` mode. This also
enables torch-mlir to be compiled using the flags `-Wall`, `-Wextra`,
`-Wpedantic`, and `-Werror`.

snapshot-20220525.473

Toggle snapshot-20220525.473's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
build: fix code so that the compiler does not emit warnings (llvm#871)

When compiling without assertions (i.e. in `NDEBUG` mode), a handful of
statements turn to NOPs, which results in warnings such as missing
return statement or unused variables and function. This patch replaces
such statements with `llvm_unreachable()`, which informs the compiler
about program termination regardless of the `NDEBUG` mode. This also
enables torch-mlir to be compiled using the flags `-Wall`, `-Wextra`,
`-Wpedantic`, and `-Werror`.

snapshot-20220525.472

Toggle snapshot-20220525.472's commit message
[MLIR][TORCH] Add E2E support for aten.Bool.[float|int] op

This commit adds lowering of `aten.Bool.float` and `aten.Bool.int` op.

Signed-Off By: Vivek Khandelwal <vivek@nod-labs.com>