mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2026-01-05 10:40:06 +01:00
12 lines
179 B
Python
Executable File
12 lines
179 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from .base_parser import BaseParser
|
|
|
|
|
|
class ParserARMv81(BaseParser):
|
|
# TODO
|
|
|
|
def __init__(self):
|
|
# TODO
|
|
raise NotImplementedError
|