Skip to content

Tags: Jackwin/iree

Tags

snapshot-20210420.229

Toggle snapshot-20210420.229's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request iree-org#5532 from google/benvanik-swap-shims

Moving the HAL module shims into `iree/vm/`.

snapshot-20210420.228

Toggle snapshot-20210420.228's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add support for lowering mhlo.fft to Linalg. (iree-org#5450)

Only RFFT type is supported, which means the inputs are all real
numbers. Since we do not handle complex numbers in IREE and mhlo.fft
returns a complex number, we have to use mhlo.complex op to pack real
part and imaginary part together. And rely on canonicalization patterns
to fold it away. They will be folded away because we ran
`PopulateComplexLoweringPatterns` in HLOToHLOPreprocessing pass, if
there are complex number computation, mhlo.real/imag will be created.

The implementation is not FFT algorithm. It follows DFT definition to
support naive solution. See definition
https://en.wikipedia.org/wiki/Discrete_Fourier_transform

Fixes iree-org#5299

snapshot-20210419.227

Toggle snapshot-20210419.227's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update objectives.md (iree-org#5525)

snapshot-20210419.226

Toggle snapshot-20210419.226's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Mention supported pip versions in getting_started_python. (iree-org#5230

)

Fixes iree-org#5092

snapshot-20210418.225

Toggle snapshot-20210418.225's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Mention supported pip versions in getting_started_python. (iree-org#5230

)

Fixes iree-org#5092

snapshot-20210418.224

Toggle snapshot-20210418.224's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Mention supported pip versions in getting_started_python. (iree-org#5230

)

Fixes iree-org#5092

snapshot-20210417.223

Toggle snapshot-20210417.223's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Mention supported pip versions in getting_started_python. (iree-org#5230

)

Fixes iree-org#5092

snapshot-20210417.222

Toggle snapshot-20210417.222's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Remove inliner from linalg on tensors pass (iree-org#5489)

- This is currently a NOP

snapshot-20210416.221

Toggle snapshot-20210416.221's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Revert "[ci] Allow parallel testing on NVIDIA GPUs" (iree-org#5496)

I'm suspicious that this is the proximate cause of crashes we're seeing
while destroying the Vulkan device. We think
iree-org#2659 and
iree-org#2900 are the root cause, but
reverting for now to try to get us back to green.

Example failure, starting at the PR being reverted:
https://source.cloud.google.com/results/invocations/a3093172-ae55-43bb-956c-256bb726006f/targets/iree%2Fgcp_ubuntu%2Fcmake-bazel%2Flinux%2Fx86-turing%2Fmain/log

Reverts iree-org#5467

snapshot-20210416.220

Toggle snapshot-20210416.220's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add new max pool operations to IREE dispatch pipeline (iree-org#5469)

Allows max pool operations to propagate through the dispatch pipeline. Includes
an end-to-end test for max pool. Disabled as failing on vulkan.