-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ivy: fix split of matrix with 0-length dimension (#169)
Split was mishandling a matrix with final dimension 0. Before: split 1 2 rho iota 2 (1 2) split 1 1 rho iota 1 (1) split 1 0 rho iota 0 inconsistent shape ([1]) and data size (0) for new matrix After: split 1 2 rho iota 2 (1 2) split 1 1 rho iota 1 (1) split 1 0 rho iota 0 ()
- Loading branch information
Showing
2 changed files
with
13 additions
and
5 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