-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 40dffe83929973c8e205c395be5db23c360c2397 Author: Denny Sun <[email protected]> Date: Thu Mar 23 05:06:51 2023 +0000 Merged PR 3176: [Accera] split_dim op supports dynamic dims with static split size With this fix the following test case which has dynamic dims with static split size can succeed. ``` M, MN = create_dimensions() N = 16 Input = Array(role=Role.INPUT, element_type=ScalarType.float32, shape=(MN,)) Output = Array(role=Role.INPUT_OUTPUT, element_type=ScalarType.float32, shape=(M, N)) nest = Nest(shape=(M, N)) i, j = nest.get_indices() @nest.iteration_logic def _(): split_input = Input._split_dimension(0, cast(16, ScalarType.index)) Output[i, j] = split_input[i, j] ``` commit 451b67405d77ebbe1cf0722f9c7aeb191c3b4beb Author: Mason Remy <[email protected]> Date: Thu Mar 23 01:19:37 2023 +0000 Merged PR 3174: Ensure any dynamic allocations are heap allocs that get dealloced Ensure any dynamic allocations are heap allocs commit 602b068f19cdf1ff9111aacbeb5d704974521ebd Author: Kern Handa <[email protected]> Date: Wed Mar 22 20:59:43 2023 +0000 Merged PR 3171: [test] Add some tests for Dimensions commit ccd1f5c39964fbe96815672f137b5185ee2e9885 Author: Mason Remy <[email protected]> Date: Wed Mar 22 19:41:02 2023 +0000 Merged PR 3175: Support reinterpret cast of same bitwidth without changing layout Support reinterpret cast of same bitwidth without changing layout commit 270a3c8a9c1e1c06b0da3c9d61fa2f04438e3076 Author: Kern Handa <[email protected]> Date: Fri Mar 17 22:16:08 2023 +0000 Merged PR 3167: Remove hack to treat INPUT_OUTPUT Arrays with shape (1,) as Elements I don't have complete context on this, so this might break something. If it does, that should be fixed separately rather than keep this hack around, which breaks semantics in non-obvious ways. commit efcff61727c64e7f0a37f4f92c701bc47ea1c470 Author: Lisa Ong <[email protected]> Date: Fri Mar 17 08:09:07 2023 +0000 Merged PR 3165: [build] Fix clang 14 release build warnings treated as errors on macOS/Apple Errors are showing up on release builds: ``` cmake .. -DCMAKE_BUILD_TYPE=Release -G Ninja cmake --build . --config Release ``` Clang version: ``` Apple clang version 14.0.0 (clang-1400.0.29.202) Target: arm64-apple-darwin22.3.0 Thread model: posix ``` commit 43f311aa706214243ce8d7acca7d29993bb7003b Author: Lisa Ong <[email protected]> Date: Fri Mar 17 07:02:09 2023 +0000 Merged PR 3162: Bump vcpkg to latest release Last release was Sept 2022. Update to the latest tag (2023.02.24) Preparation for LLVM 15 upgrade commit 07098f502596d997bbe241e95f1130c11e318220 Author: Mason Remy <[email protected]> Date: Thu Mar 16 23:27:04 2023 +0000 Merged PR 3161: Fix cache reduce scale constant hoisting Fix cache reduce scale constant hoisting commit 696ef0df5947067f94b64255e00b7fffc4c04f9d Author: Mason Remy <[email protected]> Date: Thu Mar 16 20:54:22 2023 +0000 Merged PR 3163: Extend vector masked loads/stores to handle arbitrary bin ops and constant operands Extend vector masked loads/stores to handle arbitrary bin ops and constant operands
- Loading branch information
Lisa Ong
committed
Mar 24, 2023
1 parent
f55e4d8
commit 1127a60
Showing
24 changed files
with
852 additions
and
245 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.