使用jitclass,其中class属性是类对象的列表

时间:2020-02-09 22:58:22

标签: python numba

我正在寻找一种用@jitclass编译python类Node的方法。问题出在子节点的属性属性上。

谢谢您的帮助。

from numba import jitclass, i4
from numba.typed import List

@jitclass([
    ('children', List[X]),
    ('row', i4),
    ('col', i4)
])
class Node:
    def __init__(self, board, row, col):
        self.children = [] # a list of Nodes
        self.row= row #integer
        self.col = col #integer


0 个答案:

没有答案