Created
October 21, 2022 13:59
-
-
Save Steboss89/82d4da2e08d2bfcbb410b7fc8c151895 to your computer and use it in GitHub Desktop.
Transpose the product matrix to a SIZE x SIZE matrix
This file contains hidden or 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
c = f(a, c) | |
# remember to block until ready | |
c[0][0].block_until_ready() | |
# convert back to original matrix size | |
c_arr = np.hstack(np.concatenate(np.array(c), axis=1)).reshape(SIZE,SIZE) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment