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