mirror of
https://github.com/stevenrobertson/cuburn.git
synced 2025-02-05 11:40:04 -05:00
6 lines
209 B
Python
6 lines
209 B
Python
from collections import namedtuple
|
|
|
|
Task = namedtuple('Task', 'id hash profile anim times')
|
|
AddressedTask = namedtuple('AddressedTask', 'addr task')
|
|
FullTask = namedtuple('FullTask', 'addr task cubin packer')
|