Skip to content
Snippets Groups Projects
Commit 9cabf03d authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Add documentation

parent 7651da34
No related branches found
No related tags found
1 merge request!118Add documentation
Pipeline #88323 passed
"""
B-ASIC classes representing resource usage.
"""
from typing import Dict, Tuple from typing import Dict, Tuple
from b_asic.operation import AbstractOperation from b_asic.operation import Operation
from b_asic.port import InputPort, OutputPort from b_asic.port import InputPort, OutputPort
...@@ -9,17 +13,16 @@ class Process: ...@@ -9,17 +13,16 @@ class Process:
Object for use in resource allocation. Has a start time and an execution Object for use in resource allocation. Has a start time and an execution
time. Subclasses will in many cases contain additional information for time. Subclasses will in many cases contain additional information for
resource assignment. resource assignment.
Parameters
==========
start_time : int
Start time of process.
execution_time : int
Execution time (lifetime) of process.
""" """
def __init__(self, start_time: int, execution_time: int): def __init__(self, start_time: int, execution_time: int):
"""
Parameters
----------
start_time : int
Start time of process.
execution_time : int
Execution time (lifetime) of process.
"""
self._start_time = start_time self._start_time = start_time
self._execution_time = execution_time self._execution_time = execution_time
...@@ -43,15 +46,16 @@ class Process: ...@@ -43,15 +46,16 @@ class Process:
class OperatorProcess(Process): class OperatorProcess(Process):
""" """
Object that corresponds to usage of an operator. Object that corresponds to usage of an operator.
"""
def __init__(self, start_time: int, operation: AbstractOperation): Parameters
""" ==========
start_time : int
Start time of process.
operation : Operation
Operation that the process corresponds to.
"""
Returns def __init__(self, start_time: int, operation: Operation):
-------
object
"""
execution_time = operation.execution_time execution_time = operation.execution_time
if execution_time is None: if execution_time is None:
raise ValueError( raise ValueError(
...@@ -65,6 +69,17 @@ class OperatorProcess(Process): ...@@ -65,6 +69,17 @@ class OperatorProcess(Process):
class MemoryVariable(Process): class MemoryVariable(Process):
""" """
Object that corresponds to a memory variable. Object that corresponds to a memory variable.
Parameters
==========
write_time : int
Time when the memory variable is written.
write_port : OutputPort
The OutputPort that the memory variable originates from.
reads : {InputPort: int, ...}
Dictionary with the InputPorts that reads the memory variable and
for how long after the *write_time* they will read.
""" """
def __init__( def __init__(
...@@ -98,6 +113,16 @@ class PlainMemoryVariable(Process): ...@@ -98,6 +113,16 @@ class PlainMemoryVariable(Process):
Object that corresponds to a memory variable which only use numbers for Object that corresponds to a memory variable which only use numbers for
ports. This can be useful when only a plain memory variable is wanted with ports. This can be useful when only a plain memory variable is wanted with
no connection to a schedule. no connection to a schedule.
Parameters
==========
write_time : int
The time the memory variable is written.
write_port : int
Identifier for the source of the memory variable.
reads : {int: int, ...}
Dictionary where the key is the destination identifier and the value
is the time after *write_time* that the memory variable is read.
""" """
def __init__( def __init__(
......
...@@ -14,7 +14,19 @@ from b_asic.special_operations import Input, Output ...@@ -14,7 +14,19 @@ from b_asic.special_operations import Input, Output
def sfg_to_python(sfg: SFG, counter: int = 0, suffix: str = None) -> str: def sfg_to_python(sfg: SFG, counter: int = 0, suffix: str = None) -> str:
"""Given an SFG structure try to serialize it for saving to a file.""" """
Given an SFG structure try to serialize it for saving to a file.
Parameters
==========
sfg : SFG
The SFG to serialize
counter : int, default: 0
Number used for naming the SFG. Enables SFGs in SFGs.
suffix : str, optional
String to append at the end of the result.
"""
result = ( result = (
'\n"""\nB-ASIC automatically generated SFG file.\n' '\n"""\nB-ASIC automatically generated SFG file.\n'
+ "Name: " + "Name: "
...@@ -112,7 +124,13 @@ def sfg_to_python(sfg: SFG, counter: int = 0, suffix: str = None) -> str: ...@@ -112,7 +124,13 @@ def sfg_to_python(sfg: SFG, counter: int = 0, suffix: str = None) -> str:
def python_to_sfg(path: str) -> SFG: def python_to_sfg(path: str) -> SFG:
"""Given a serialized file try to deserialize it and load it to the library. """
Given a serialized file try to deserialize it and load it to the library.
Parameters
==========
path : str
Path to file to read and deserialize.
""" """
with open(path) as f: with open(path) as f:
code = compile(f.read(), path, "exec") code = compile(f.read(), path, "exec")
......
...@@ -70,7 +70,7 @@ scheduler\_gui.timeline\_item module ...@@ -70,7 +70,7 @@ scheduler\_gui.timeline\_item module
:show-inheritance: :show-inheritance:
Helper module Helper module
============= -------------
scheduler\_gui.compile module scheduler\_gui.compile module
----------------------------- -----------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment