complete ai kerne frame code

This commit is contained in:
Liu Zhicong
2023-08-20 22:53:35 -07:00
parent 6b39379d7c
commit 814f5cf481
21 changed files with 725 additions and 20 deletions
+13
View File
@@ -0,0 +1,13 @@
from abc import ABC, abstractmethod
class compute_node(ABC):
@abstractmethod
def display(self) -> str:
pass
class local_compute_node(compute_node):
def display(self) -> str:
return super().display()