Skip to content

Instantly share code, notes, and snippets.

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:
import numpy as np
data = np.array([[2.0], [1.0]]).flatten()
print(data)
np.save('h0_zero_state.npy', data)
@Tix3Dev
Tix3Dev / apic.c
Last active July 28, 2022 10:28
LAPIC Timer - 2 Ways: Periodic and Oneshot mode
/*
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.