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
def spider(g: BaseGraph[VT,ET], matches: List[MatchSpiderType[VT]]) -> RewriteOutputType[VT,ET]: | |
'''Performs spider fusion given a list of matchings from ``match_spider(_parallel)`` | |
''' | |
rem_verts: List[VT] = [] | |
etab: Dict[Tuple[VT,VT],List[int]] = dict() | |
for m in matches: | |
if g.row(m[0]) == 0: | |
v0, v1 = m[1], m[0] | |
else: |
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
import numpy as np | |
data = np.array([[2.0], [1.0]]).flatten() | |
print(data) | |
np.save('h0_zero_state.npy', data) |
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 is extracted from a modern x86_64 UNIX-like microkernel-based | |
operating system which is called apoptOS | |
Everything is openly developed on GitHub: https://github.com/Tix3Dev/apoptOS | |
Copyright (C) 2022 Yves Vollmeier <https://github.com/Tix3Dev> | |
This program is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or | |
(at your option) any later version. |