repository_name
stringlengths
5
67
func_path_in_repository
stringlengths
4
234
func_name
stringlengths
0
314
whole_func_string
stringlengths
52
3.87M
language
stringclasses
6 values
func_code_string
stringlengths
52
3.87M
func_code_tokens
listlengths
15
672k
func_documentation_string
stringlengths
1
47.2k
func_documentation_tokens
listlengths
1
3.92k
split_name
stringclasses
1 value
func_code_url
stringlengths
85
339
kvesteri/postgresql-audit
postgresql_audit/migrations.py
remove_column
def remove_column(conn, table, column_name, schema=None): """ Removes given `activity` jsonb data column key. This function is useful when you are doing schema changes that require removing a column. Let's say you've been using PostgreSQL-Audit for a while for a table called article. Now you want t...
python
def remove_column(conn, table, column_name, schema=None): """ Removes given `activity` jsonb data column key. This function is useful when you are doing schema changes that require removing a column. Let's say you've been using PostgreSQL-Audit for a while for a table called article. Now you want t...
[ "def", "remove_column", "(", "conn", ",", "table", ",", "column_name", ",", "schema", "=", "None", ")", ":", "activity_table", "=", "get_activity_table", "(", "schema", "=", "schema", ")", "remove", "=", "sa", ".", "cast", "(", "column_name", ",", "sa", ...
Removes given `activity` jsonb data column key. This function is useful when you are doing schema changes that require removing a column. Let's say you've been using PostgreSQL-Audit for a while for a table called article. Now you want to remove one audited column called 'created_at' from this table. ...
[ "Removes", "given", "activity", "jsonb", "data", "column", "key", ".", "This", "function", "is", "useful", "when", "you", "are", "doing", "schema", "changes", "that", "require", "removing", "a", "column", "." ]
train
https://github.com/kvesteri/postgresql-audit/blob/91b497ced2e04dd44bb757b02983d2a64a2b1514/postgresql_audit/migrations.py#L223-L264
kvesteri/postgresql-audit
postgresql_audit/migrations.py
rename_table
def rename_table(conn, old_table_name, new_table_name, schema=None): """ Renames given table in activity table. You should remember to call this function whenever you rename a versioned table. :: from alembic import op from postgresql_audit import rename_table def upgrade(): ...
python
def rename_table(conn, old_table_name, new_table_name, schema=None): """ Renames given table in activity table. You should remember to call this function whenever you rename a versioned table. :: from alembic import op from postgresql_audit import rename_table def upgrade(): ...
[ "def", "rename_table", "(", "conn", ",", "old_table_name", ",", "new_table_name", ",", "schema", "=", "None", ")", ":", "activity_table", "=", "get_activity_table", "(", "schema", "=", "schema", ")", "query", "=", "(", "activity_table", ".", "update", "(", "...
Renames given table in activity table. You should remember to call this function whenever you rename a versioned table. :: from alembic import op from postgresql_audit import rename_table def upgrade(): op.rename_table('article', 'article_v2') rename_table(op,...
[ "Renames", "given", "table", "in", "activity", "table", ".", "You", "should", "remember", "to", "call", "this", "function", "whenever", "you", "rename", "a", "versioned", "table", "." ]
train
https://github.com/kvesteri/postgresql-audit/blob/91b497ced2e04dd44bb757b02983d2a64a2b1514/postgresql_audit/migrations.py#L267-L300
kvesteri/postgresql-audit
postgresql_audit/base.py
VersioningManager.instrument_versioned_classes
def instrument_versioned_classes(self, mapper, cls): """ Collect versioned class and add it to pending_classes list. :mapper mapper: SQLAlchemy mapper object :cls cls: SQLAlchemy declarative class """ if hasattr(cls, '__versioned__') and cls not in self.pending_classes: ...
python
def instrument_versioned_classes(self, mapper, cls): """ Collect versioned class and add it to pending_classes list. :mapper mapper: SQLAlchemy mapper object :cls cls: SQLAlchemy declarative class """ if hasattr(cls, '__versioned__') and cls not in self.pending_classes: ...
[ "def", "instrument_versioned_classes", "(", "self", ",", "mapper", ",", "cls", ")", ":", "if", "hasattr", "(", "cls", ",", "'__versioned__'", ")", "and", "cls", "not", "in", "self", ".", "pending_classes", ":", "self", ".", "pending_classes", ".", "add", "...
Collect versioned class and add it to pending_classes list. :mapper mapper: SQLAlchemy mapper object :cls cls: SQLAlchemy declarative class
[ "Collect", "versioned", "class", "and", "add", "it", "to", "pending_classes", "list", "." ]
train
https://github.com/kvesteri/postgresql-audit/blob/91b497ced2e04dd44bb757b02983d2a64a2b1514/postgresql_audit/base.py#L346-L354
kvesteri/postgresql-audit
postgresql_audit/base.py
VersioningManager.configure_versioned_classes
def configure_versioned_classes(self): """ Configures all versioned classes that were collected during instrumentation process. """ for cls in self.pending_classes: self.audit_table(cls.__table__, cls.__versioned__.get('exclude')) assign_actor(self.base, self....
python
def configure_versioned_classes(self): """ Configures all versioned classes that were collected during instrumentation process. """ for cls in self.pending_classes: self.audit_table(cls.__table__, cls.__versioned__.get('exclude')) assign_actor(self.base, self....
[ "def", "configure_versioned_classes", "(", "self", ")", ":", "for", "cls", "in", "self", ".", "pending_classes", ":", "self", ".", "audit_table", "(", "cls", ".", "__table__", ",", "cls", ".", "__versioned__", ".", "get", "(", "'exclude'", ")", ")", "assig...
Configures all versioned classes that were collected during instrumentation process.
[ "Configures", "all", "versioned", "classes", "that", "were", "collected", "during", "instrumentation", "process", "." ]
train
https://github.com/kvesteri/postgresql-audit/blob/91b497ced2e04dd44bb757b02983d2a64a2b1514/postgresql_audit/base.py#L356-L363
mfcovington/pubmed-lookup
pubmed_lookup/command_line.py
pubmed_citation
def pubmed_citation(args=sys.argv[1:], out=sys.stdout): """Get a citation via the command line using a PubMed ID or PubMed URL""" parser = argparse.ArgumentParser( description='Get a citation using a PubMed ID or PubMed URL') parser.add_argument('query', help='PubMed ID or PubMed URL') parser.a...
python
def pubmed_citation(args=sys.argv[1:], out=sys.stdout): """Get a citation via the command line using a PubMed ID or PubMed URL""" parser = argparse.ArgumentParser( description='Get a citation using a PubMed ID or PubMed URL') parser.add_argument('query', help='PubMed ID or PubMed URL') parser.a...
[ "def", "pubmed_citation", "(", "args", "=", "sys", ".", "argv", "[", "1", ":", "]", ",", "out", "=", "sys", ".", "stdout", ")", ":", "parser", "=", "argparse", ".", "ArgumentParser", "(", "description", "=", "'Get a citation using a PubMed ID or PubMed URL'", ...
Get a citation via the command line using a PubMed ID or PubMed URL
[ "Get", "a", "citation", "via", "the", "command", "line", "using", "a", "PubMed", "ID", "or", "PubMed", "URL" ]
train
https://github.com/mfcovington/pubmed-lookup/blob/b0aa2945b354f0945db73da22dd15ea628212da8/pubmed_lookup/command_line.py#L7-L26
mfcovington/pubmed-lookup
pubmed_lookup/command_line.py
pubmed_url
def pubmed_url(args=sys.argv[1:], resolve_doi=True, out=sys.stdout): """ Get a publication URL via the command line using a PubMed ID or PubMed URL """ parser = argparse.ArgumentParser( description='Get a publication URL using a PubMed ID or PubMed URL') parser.add_argument('query', help='P...
python
def pubmed_url(args=sys.argv[1:], resolve_doi=True, out=sys.stdout): """ Get a publication URL via the command line using a PubMed ID or PubMed URL """ parser = argparse.ArgumentParser( description='Get a publication URL using a PubMed ID or PubMed URL') parser.add_argument('query', help='P...
[ "def", "pubmed_url", "(", "args", "=", "sys", ".", "argv", "[", "1", ":", "]", ",", "resolve_doi", "=", "True", ",", "out", "=", "sys", ".", "stdout", ")", ":", "parser", "=", "argparse", ".", "ArgumentParser", "(", "description", "=", "'Get a publicat...
Get a publication URL via the command line using a PubMed ID or PubMed URL
[ "Get", "a", "publication", "URL", "via", "the", "command", "line", "using", "a", "PubMed", "ID", "or", "PubMed", "URL" ]
train
https://github.com/mfcovington/pubmed-lookup/blob/b0aa2945b354f0945db73da22dd15ea628212da8/pubmed_lookup/command_line.py#L29-L47
mfcovington/pubmed-lookup
pubmed_lookup/pubmed_lookup.py
Publication.authors_et_al
def authors_et_al(self, max_authors=5): """ Return string with a truncated author list followed by 'et al.' """ author_list = self._author_list if len(author_list) <= max_authors: authors_et_al = self.authors else: authors_et_al = ", ".join( ...
python
def authors_et_al(self, max_authors=5): """ Return string with a truncated author list followed by 'et al.' """ author_list = self._author_list if len(author_list) <= max_authors: authors_et_al = self.authors else: authors_et_al = ", ".join( ...
[ "def", "authors_et_al", "(", "self", ",", "max_authors", "=", "5", ")", ":", "author_list", "=", "self", ".", "_author_list", "if", "len", "(", "author_list", ")", "<=", "max_authors", ":", "authors_et_al", "=", "self", ".", "authors", "else", ":", "author...
Return string with a truncated author list followed by 'et al.'
[ "Return", "string", "with", "a", "truncated", "author", "list", "followed", "by", "et", "al", "." ]
train
https://github.com/mfcovington/pubmed-lookup/blob/b0aa2945b354f0945db73da22dd15ea628212da8/pubmed_lookup/pubmed_lookup.py#L48-L58
mfcovington/pubmed-lookup
pubmed_lookup/pubmed_lookup.py
Publication.cite
def cite(self, max_authors=5): """ Return string with a citation for the record, formatted as: '{authors} ({year}). {title} {journal} {volume}({issue}): {pages}.' """ citation_data = { 'title': self.title, 'authors': self.authors_et_al(max_authors), ...
python
def cite(self, max_authors=5): """ Return string with a citation for the record, formatted as: '{authors} ({year}). {title} {journal} {volume}({issue}): {pages}.' """ citation_data = { 'title': self.title, 'authors': self.authors_et_al(max_authors), ...
[ "def", "cite", "(", "self", ",", "max_authors", "=", "5", ")", ":", "citation_data", "=", "{", "'title'", ":", "self", ".", "title", ",", "'authors'", ":", "self", ".", "authors_et_al", "(", "max_authors", ")", ",", "'year'", ":", "self", ".", "year", ...
Return string with a citation for the record, formatted as: '{authors} ({year}). {title} {journal} {volume}({issue}): {pages}.'
[ "Return", "string", "with", "a", "citation", "for", "the", "record", "formatted", "as", ":", "{", "authors", "}", "(", "{", "year", "}", ")", ".", "{", "title", "}", "{", "journal", "}", "{", "volume", "}", "(", "{", "issue", "}", ")", ":", "{", ...
train
https://github.com/mfcovington/pubmed-lookup/blob/b0aa2945b354f0945db73da22dd15ea628212da8/pubmed_lookup/pubmed_lookup.py#L60-L90
mfcovington/pubmed-lookup
pubmed_lookup/pubmed_lookup.py
Publication.cite_mini
def cite_mini(self): """ Return string with a citation for the record, formatted as: '{first_author} - {year} - {journal}' """ citation_data = [self.first_author] if len(self._author_list) > 1: citation_data.append(self.last_author) citation_data.ext...
python
def cite_mini(self): """ Return string with a citation for the record, formatted as: '{first_author} - {year} - {journal}' """ citation_data = [self.first_author] if len(self._author_list) > 1: citation_data.append(self.last_author) citation_data.ext...
[ "def", "cite_mini", "(", "self", ")", ":", "citation_data", "=", "[", "self", ".", "first_author", "]", "if", "len", "(", "self", ".", "_author_list", ")", ">", "1", ":", "citation_data", ".", "append", "(", "self", ".", "last_author", ")", "citation_dat...
Return string with a citation for the record, formatted as: '{first_author} - {year} - {journal}'
[ "Return", "string", "with", "a", "citation", "for", "the", "record", "formatted", "as", ":", "{", "first_author", "}", "-", "{", "year", "}", "-", "{", "journal", "}" ]
train
https://github.com/mfcovington/pubmed-lookup/blob/b0aa2945b354f0945db73da22dd15ea628212da8/pubmed_lookup/pubmed_lookup.py#L92-L104
mfcovington/pubmed-lookup
pubmed_lookup/pubmed_lookup.py
Publication.parse_abstract
def parse_abstract(xml_dict): """ Parse PubMed XML dictionary to retrieve abstract. """ key_path = ['PubmedArticleSet', 'PubmedArticle', 'MedlineCitation', 'Article', 'Abstract', 'AbstractText'] abstract_xml = reduce(dict.get, key_path, xml_dict) abst...
python
def parse_abstract(xml_dict): """ Parse PubMed XML dictionary to retrieve abstract. """ key_path = ['PubmedArticleSet', 'PubmedArticle', 'MedlineCitation', 'Article', 'Abstract', 'AbstractText'] abstract_xml = reduce(dict.get, key_path, xml_dict) abst...
[ "def", "parse_abstract", "(", "xml_dict", ")", ":", "key_path", "=", "[", "'PubmedArticleSet'", ",", "'PubmedArticle'", ",", "'MedlineCitation'", ",", "'Article'", ",", "'Abstract'", ",", "'AbstractText'", "]", "abstract_xml", "=", "reduce", "(", "dict", ".", "g...
Parse PubMed XML dictionary to retrieve abstract.
[ "Parse", "PubMed", "XML", "dictionary", "to", "retrieve", "abstract", "." ]
train
https://github.com/mfcovington/pubmed-lookup/blob/b0aa2945b354f0945db73da22dd15ea628212da8/pubmed_lookup/pubmed_lookup.py#L107-L148
mfcovington/pubmed-lookup
pubmed_lookup/pubmed_lookup.py
Publication.get_pubmed_xml
def get_pubmed_xml(self): """ Use a PubMed ID to retrieve PubMed metadata in XML form. """ url = 'http://eutils.ncbi.nlm.nih.gov/entrez/eutils/' \ 'efetch.fcgi?db=pubmed&rettype=abstract&id={}' \ .format(self.pmid) try: response = urlopen(...
python
def get_pubmed_xml(self): """ Use a PubMed ID to retrieve PubMed metadata in XML form. """ url = 'http://eutils.ncbi.nlm.nih.gov/entrez/eutils/' \ 'efetch.fcgi?db=pubmed&rettype=abstract&id={}' \ .format(self.pmid) try: response = urlopen(...
[ "def", "get_pubmed_xml", "(", "self", ")", ":", "url", "=", "'http://eutils.ncbi.nlm.nih.gov/entrez/eutils/'", "'efetch.fcgi?db=pubmed&rettype=abstract&id={}'", ".", "format", "(", "self", ".", "pmid", ")", "try", ":", "response", "=", "urlopen", "(", "url", ")", "e...
Use a PubMed ID to retrieve PubMed metadata in XML form.
[ "Use", "a", "PubMed", "ID", "to", "retrieve", "PubMed", "metadata", "in", "XML", "form", "." ]
train
https://github.com/mfcovington/pubmed-lookup/blob/b0aa2945b354f0945db73da22dd15ea628212da8/pubmed_lookup/pubmed_lookup.py#L150-L166
mfcovington/pubmed-lookup
pubmed_lookup/pubmed_lookup.py
Publication.set_abstract
def set_abstract(self, xml_dict): """ If record has an abstract, extract it from PubMed's XML data """ if self.record.get('HasAbstract') == 1 and xml_dict: self.abstract = self.parse_abstract(xml_dict) else: self.abstract = ''
python
def set_abstract(self, xml_dict): """ If record has an abstract, extract it from PubMed's XML data """ if self.record.get('HasAbstract') == 1 and xml_dict: self.abstract = self.parse_abstract(xml_dict) else: self.abstract = ''
[ "def", "set_abstract", "(", "self", ",", "xml_dict", ")", ":", "if", "self", ".", "record", ".", "get", "(", "'HasAbstract'", ")", "==", "1", "and", "xml_dict", ":", "self", ".", "abstract", "=", "self", ".", "parse_abstract", "(", "xml_dict", ")", "el...
If record has an abstract, extract it from PubMed's XML data
[ "If", "record", "has", "an", "abstract", "extract", "it", "from", "PubMed", "s", "XML", "data" ]
train
https://github.com/mfcovington/pubmed-lookup/blob/b0aa2945b354f0945db73da22dd15ea628212da8/pubmed_lookup/pubmed_lookup.py#L168-L175
mfcovington/pubmed-lookup
pubmed_lookup/pubmed_lookup.py
Publication.set_article_url
def set_article_url(self, resolve_doi=True): """ If record has a DOI, set article URL based on where the DOI points. """ if 'DOI' in self.record: doi_url = "/".join(['http://dx.doi.org', self.record['DOI']]) if resolve_doi: try: ...
python
def set_article_url(self, resolve_doi=True): """ If record has a DOI, set article URL based on where the DOI points. """ if 'DOI' in self.record: doi_url = "/".join(['http://dx.doi.org', self.record['DOI']]) if resolve_doi: try: ...
[ "def", "set_article_url", "(", "self", ",", "resolve_doi", "=", "True", ")", ":", "if", "'DOI'", "in", "self", ".", "record", ":", "doi_url", "=", "\"/\"", ".", "join", "(", "[", "'http://dx.doi.org'", ",", "self", ".", "record", "[", "'DOI'", "]", "]"...
If record has a DOI, set article URL based on where the DOI points.
[ "If", "record", "has", "a", "DOI", "set", "article", "URL", "based", "on", "where", "the", "DOI", "points", "." ]
train
https://github.com/mfcovington/pubmed-lookup/blob/b0aa2945b354f0945db73da22dd15ea628212da8/pubmed_lookup/pubmed_lookup.py#L177-L195
mfcovington/pubmed-lookup
pubmed_lookup/pubmed_lookup.py
Publication.set_pub_year_month_day
def set_pub_year_month_day(self, xml_dict): """ Set publication year, month, day from PubMed's XML data """ key_path = ['PubmedArticleSet', 'PubmedArticle', 'MedlineCitation', 'Article', 'Journal', 'JournalIssue', 'PubDate'] pubdate_xml = reduce(dict.get, key_...
python
def set_pub_year_month_day(self, xml_dict): """ Set publication year, month, day from PubMed's XML data """ key_path = ['PubmedArticleSet', 'PubmedArticle', 'MedlineCitation', 'Article', 'Journal', 'JournalIssue', 'PubDate'] pubdate_xml = reduce(dict.get, key_...
[ "def", "set_pub_year_month_day", "(", "self", ",", "xml_dict", ")", ":", "key_path", "=", "[", "'PubmedArticleSet'", ",", "'PubmedArticle'", ",", "'MedlineCitation'", ",", "'Article'", ",", "'Journal'", ",", "'JournalIssue'", ",", "'PubDate'", "]", "pubdate_xml", ...
Set publication year, month, day from PubMed's XML data
[ "Set", "publication", "year", "month", "day", "from", "PubMed", "s", "XML", "data" ]
train
https://github.com/mfcovington/pubmed-lookup/blob/b0aa2945b354f0945db73da22dd15ea628212da8/pubmed_lookup/pubmed_lookup.py#L197-L219
mfcovington/pubmed-lookup
pubmed_lookup/pubmed_lookup.py
PubMedLookup.parse_pubmed_url
def parse_pubmed_url(pubmed_url): """Get PubMed ID (pmid) from PubMed URL.""" parse_result = urlparse(pubmed_url) pattern = re.compile(r'^/pubmed/(\d+)$') pmid = pattern.match(parse_result.path).group(1) return pmid
python
def parse_pubmed_url(pubmed_url): """Get PubMed ID (pmid) from PubMed URL.""" parse_result = urlparse(pubmed_url) pattern = re.compile(r'^/pubmed/(\d+)$') pmid = pattern.match(parse_result.path).group(1) return pmid
[ "def", "parse_pubmed_url", "(", "pubmed_url", ")", ":", "parse_result", "=", "urlparse", "(", "pubmed_url", ")", "pattern", "=", "re", ".", "compile", "(", "r'^/pubmed/(\\d+)$'", ")", "pmid", "=", "pattern", ".", "match", "(", "parse_result", ".", "path", ")...
Get PubMed ID (pmid) from PubMed URL.
[ "Get", "PubMed", "ID", "(", "pmid", ")", "from", "PubMed", "URL", "." ]
train
https://github.com/mfcovington/pubmed-lookup/blob/b0aa2945b354f0945db73da22dd15ea628212da8/pubmed_lookup/pubmed_lookup.py#L249-L254
mfcovington/pubmed-lookup
pubmed_lookup/pubmed_lookup.py
PubMedLookup.get_pubmed_record
def get_pubmed_record(pmid): """Get PubMed record from PubMed ID.""" handle = Entrez.esummary(db="pubmed", id=pmid) record = Entrez.read(handle) return record
python
def get_pubmed_record(pmid): """Get PubMed record from PubMed ID.""" handle = Entrez.esummary(db="pubmed", id=pmid) record = Entrez.read(handle) return record
[ "def", "get_pubmed_record", "(", "pmid", ")", ":", "handle", "=", "Entrez", ".", "esummary", "(", "db", "=", "\"pubmed\"", ",", "id", "=", "pmid", ")", "record", "=", "Entrez", ".", "read", "(", "handle", ")", "return", "record" ]
Get PubMed record from PubMed ID.
[ "Get", "PubMed", "record", "from", "PubMed", "ID", "." ]
train
https://github.com/mfcovington/pubmed-lookup/blob/b0aa2945b354f0945db73da22dd15ea628212da8/pubmed_lookup/pubmed_lookup.py#L257-L261
UCSBarchlab/PyRTL
pyrtl/simulation.py
Simulation._initialize
def _initialize(self, register_value_map=None, memory_value_map=None, default_value=None): """ Sets the wire, register, and memory values to default or as specified. :param register_value_map: is a map of {Register: value}. :param memory_value_map: is a map of maps {Memory: {address: Value}}. ...
python
def _initialize(self, register_value_map=None, memory_value_map=None, default_value=None): """ Sets the wire, register, and memory values to default or as specified. :param register_value_map: is a map of {Register: value}. :param memory_value_map: is a map of maps {Memory: {address: Value}}. ...
[ "def", "_initialize", "(", "self", ",", "register_value_map", "=", "None", ",", "memory_value_map", "=", "None", ",", "default_value", "=", "None", ")", ":", "if", "default_value", "is", "None", ":", "default_value", "=", "self", ".", "default_value", "# set r...
Sets the wire, register, and memory values to default or as specified. :param register_value_map: is a map of {Register: value}. :param memory_value_map: is a map of maps {Memory: {address: Value}}. :param default_value: is the value that all unspecified registers and memories will def...
[ "Sets", "the", "wire", "register", "and", "memory", "values", "to", "default", "or", "as", "specified", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L96-L150
UCSBarchlab/PyRTL
pyrtl/simulation.py
Simulation.step
def step(self, provided_inputs): """ Take the simulation forward one cycle :param provided_inputs: a dictionary mapping wirevectors to their values for this step All input wires must be in the provided_inputs in order for the simulation to accept these values Example: if we ha...
python
def step(self, provided_inputs): """ Take the simulation forward one cycle :param provided_inputs: a dictionary mapping wirevectors to their values for this step All input wires must be in the provided_inputs in order for the simulation to accept these values Example: if we ha...
[ "def", "step", "(", "self", ",", "provided_inputs", ")", ":", "# Check that all Input have a corresponding provided_input", "input_set", "=", "self", ".", "block", ".", "wirevector_subset", "(", "Input", ")", "supplied_inputs", "=", "set", "(", ")", "for", "i", "i...
Take the simulation forward one cycle :param provided_inputs: a dictionary mapping wirevectors to their values for this step All input wires must be in the provided_inputs in order for the simulation to accept these values Example: if we have inputs named 'a' and 'x', we can call: ...
[ "Take", "the", "simulation", "forward", "one", "cycle" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L152-L218
UCSBarchlab/PyRTL
pyrtl/simulation.py
Simulation.inspect
def inspect(self, w): """ Get the value of a wirevector in the last simulation cycle. :param w: the name of the WireVector to inspect (passing in a WireVector instead of a name is deprecated) :return: value of w in the current step of simulation Will throw KeyError if w doe...
python
def inspect(self, w): """ Get the value of a wirevector in the last simulation cycle. :param w: the name of the WireVector to inspect (passing in a WireVector instead of a name is deprecated) :return: value of w in the current step of simulation Will throw KeyError if w doe...
[ "def", "inspect", "(", "self", ",", "w", ")", ":", "wire", "=", "self", ".", "block", ".", "wirevector_by_name", ".", "get", "(", "w", ",", "w", ")", "return", "self", ".", "value", "[", "wire", "]" ]
Get the value of a wirevector in the last simulation cycle. :param w: the name of the WireVector to inspect (passing in a WireVector instead of a name is deprecated) :return: value of w in the current step of simulation Will throw KeyError if w does not exist in the simulation.
[ "Get", "the", "value", "of", "a", "wirevector", "in", "the", "last", "simulation", "cycle", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L220-L230
UCSBarchlab/PyRTL
pyrtl/simulation.py
Simulation._execute
def _execute(self, net): """Handle the combinational logic update rules for the given net. This function, along with edge_update, defined the semantics of the primitive ops. Function updates self.value accordingly. """ if net.op in 'r@': return # registers and memor...
python
def _execute(self, net): """Handle the combinational logic update rules for the given net. This function, along with edge_update, defined the semantics of the primitive ops. Function updates self.value accordingly. """ if net.op in 'r@': return # registers and memor...
[ "def", "_execute", "(", "self", ",", "net", ")", ":", "if", "net", ".", "op", "in", "'r@'", ":", "return", "# registers and memory write ports have no logic function", "elif", "net", ".", "op", "in", "self", ".", "simple_func", ":", "argvals", "=", "(", "sel...
Handle the combinational logic update rules for the given net. This function, along with edge_update, defined the semantics of the primitive ops. Function updates self.value accordingly.
[ "Handle", "the", "combinational", "logic", "update", "rules", "for", "the", "given", "net", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L253-L286
UCSBarchlab/PyRTL
pyrtl/simulation.py
Simulation._mem_update
def _mem_update(self, net): """Handle the mem update for the simulation of the given net (which is a memory). Combinational logic should have no posedge behavior, but registers and memory should. This function, used after _execute, defines the semantics of the primitive ops. Function ...
python
def _mem_update(self, net): """Handle the mem update for the simulation of the given net (which is a memory). Combinational logic should have no posedge behavior, but registers and memory should. This function, used after _execute, defines the semantics of the primitive ops. Function ...
[ "def", "_mem_update", "(", "self", ",", "net", ")", ":", "if", "net", ".", "op", "!=", "'@'", ":", "raise", "PyrtlInternalError", "memid", "=", "net", ".", "op_param", "[", "0", "]", "write_addr", "=", "self", ".", "value", "[", "net", ".", "args", ...
Handle the mem update for the simulation of the given net (which is a memory). Combinational logic should have no posedge behavior, but registers and memory should. This function, used after _execute, defines the semantics of the primitive ops. Function updates self.memvalue accordingly ...
[ "Handle", "the", "mem", "update", "for", "the", "simulation", "of", "the", "given", "net", "(", "which", "is", "a", "memory", ")", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L288-L303
UCSBarchlab/PyRTL
pyrtl/simulation.py
FastSimulation.step
def step(self, provided_inputs): """ Run the simulation for a cycle :param provided_inputs: a dictionary mapping WireVectors (or their names) to their values for this step eg: {wire: 3, "wire_name": 17} """ # validate_inputs for wire, value in provided_inputs...
python
def step(self, provided_inputs): """ Run the simulation for a cycle :param provided_inputs: a dictionary mapping WireVectors (or their names) to their values for this step eg: {wire: 3, "wire_name": 17} """ # validate_inputs for wire, value in provided_inputs...
[ "def", "step", "(", "self", ",", "provided_inputs", ")", ":", "# validate_inputs", "for", "wire", ",", "value", "in", "provided_inputs", ".", "items", "(", ")", ":", "wire", "=", "self", ".", "block", ".", "get_wirevector_by_name", "(", "wire", ")", "if", ...
Run the simulation for a cycle :param provided_inputs: a dictionary mapping WireVectors (or their names) to their values for this step eg: {wire: 3, "wire_name": 17}
[ "Run", "the", "simulation", "for", "a", "cycle" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L404-L436
UCSBarchlab/PyRTL
pyrtl/simulation.py
FastSimulation.inspect
def inspect(self, w): """ Get the value of a wirevector in the last simulation cycle. :param w: the name of the WireVector to inspect (passing in a WireVector instead of a name is deprecated) :return: value of w in the current step of simulation Will throw KeyError if w is ...
python
def inspect(self, w): """ Get the value of a wirevector in the last simulation cycle. :param w: the name of the WireVector to inspect (passing in a WireVector instead of a name is deprecated) :return: value of w in the current step of simulation Will throw KeyError if w is ...
[ "def", "inspect", "(", "self", ",", "w", ")", ":", "try", ":", "return", "self", ".", "context", "[", "self", ".", "_to_name", "(", "w", ")", "]", "except", "AttributeError", ":", "raise", "PyrtlError", "(", "\"No context available. Please run a simulation ste...
Get the value of a wirevector in the last simulation cycle. :param w: the name of the WireVector to inspect (passing in a WireVector instead of a name is deprecated) :return: value of w in the current step of simulation Will throw KeyError if w is not being tracked in the simulatio...
[ "Get", "the", "value", "of", "a", "wirevector", "in", "the", "last", "simulation", "cycle", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L438-L451
UCSBarchlab/PyRTL
pyrtl/simulation.py
FastSimulation.inspect_mem
def inspect_mem(self, mem): """ Get the values in a map during the current simulation cycle. :param mem: the memory to inspect :return: {address: value} Note that this returns the current memory state. Modifying the dictonary will also modify the state in the simulator ...
python
def inspect_mem(self, mem): """ Get the values in a map during the current simulation cycle. :param mem: the memory to inspect :return: {address: value} Note that this returns the current memory state. Modifying the dictonary will also modify the state in the simulator ...
[ "def", "inspect_mem", "(", "self", ",", "mem", ")", ":", "if", "isinstance", "(", "mem", ",", "RomBlock", ")", ":", "raise", "PyrtlError", "(", "\"ROM blocks are not stored in the simulation object\"", ")", "return", "self", ".", "mems", "[", "self", ".", "_me...
Get the values in a map during the current simulation cycle. :param mem: the memory to inspect :return: {address: value} Note that this returns the current memory state. Modifying the dictonary will also modify the state in the simulator
[ "Get", "the", "values", "in", "a", "map", "during", "the", "current", "simulation", "cycle", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L457-L468
UCSBarchlab/PyRTL
pyrtl/simulation.py
FastSimulation._arg_varname
def _arg_varname(self, wire): """ Input, Const, and Registers have special input values """ if isinstance(wire, (Input, Register)): return 'd[' + repr(wire.name) + ']' # passed in elif isinstance(wire, Const): return str(wire.val) # hardcoded els...
python
def _arg_varname(self, wire): """ Input, Const, and Registers have special input values """ if isinstance(wire, (Input, Register)): return 'd[' + repr(wire.name) + ']' # passed in elif isinstance(wire, Const): return str(wire.val) # hardcoded els...
[ "def", "_arg_varname", "(", "self", ",", "wire", ")", ":", "if", "isinstance", "(", "wire", ",", "(", "Input", ",", "Register", ")", ")", ":", "return", "'d['", "+", "repr", "(", "wire", ".", "name", ")", "+", "']'", "# passed in", "elif", "isinstanc...
Input, Const, and Registers have special input values
[ "Input", "Const", "and", "Registers", "have", "special", "input", "values" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L483-L492
UCSBarchlab/PyRTL
pyrtl/simulation.py
FastSimulation._compiled
def _compiled(self): """Return a string of the self.block compiled to a block of code that can be execed to get a function to execute""" # Dev Notes: # Because of fast locals in functions in both CPython and PyPy, getting a # function to execute makes the code a few times faster...
python
def _compiled(self): """Return a string of the self.block compiled to a block of code that can be execed to get a function to execute""" # Dev Notes: # Because of fast locals in functions in both CPython and PyPy, getting a # function to execute makes the code a few times faster...
[ "def", "_compiled", "(", "self", ")", ":", "# Dev Notes:", "# Because of fast locals in functions in both CPython and PyPy, getting a", "# function to execute makes the code a few times faster than", "# just executing it in the global exec scope.", "prog", "=", "[", "self", ".", "_prog...
Return a string of the self.block compiled to a block of code that can be execed to get a function to execute
[ "Return", "a", "string", "of", "the", "self", ".", "block", "compiled", "to", "a", "block", "of", "code", "that", "can", "be", "execed", "to", "get", "a", "function", "to", "execute" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L529-L634
UCSBarchlab/PyRTL
pyrtl/simulation.py
_WaveRendererBase._render_val_with_prev
def _render_val_with_prev(self, w, n, current_val, symbol_len): """Return a string encoding the given value in a waveform. :param w: The WireVector we are rendering to a waveform :param n: An integer from 0 to segment_len-1 :param current_val: the value to be rendered :param sym...
python
def _render_val_with_prev(self, w, n, current_val, symbol_len): """Return a string encoding the given value in a waveform. :param w: The WireVector we are rendering to a waveform :param n: An integer from 0 to segment_len-1 :param current_val: the value to be rendered :param sym...
[ "def", "_render_val_with_prev", "(", "self", ",", "w", ",", "n", ",", "current_val", ",", "symbol_len", ")", ":", "sl", "=", "symbol_len", "-", "1", "if", "len", "(", "w", ")", ">", "1", ":", "out", "=", "self", ".", "_revstart", "if", "current_val",...
Return a string encoding the given value in a waveform. :param w: The WireVector we are rendering to a waveform :param n: An integer from 0 to segment_len-1 :param current_val: the value to be rendered :param symbol_len: and integer for how big to draw the current value Returns...
[ "Return", "a", "string", "encoding", "the", "given", "value", "in", "a", "waveform", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L664-L694
UCSBarchlab/PyRTL
pyrtl/simulation.py
SimulationTrace.add_step
def add_step(self, value_map): """ Add the values in value_map to the end of the trace. """ if len(self.trace) == 0: raise PyrtlError('error, simulation trace needs at least 1 signal to track ' '(by default, unnamed signals are not traced -- try either passing ' ...
python
def add_step(self, value_map): """ Add the values in value_map to the end of the trace. """ if len(self.trace) == 0: raise PyrtlError('error, simulation trace needs at least 1 signal to track ' '(by default, unnamed signals are not traced -- try either passing ' ...
[ "def", "add_step", "(", "self", ",", "value_map", ")", ":", "if", "len", "(", "self", ".", "trace", ")", "==", "0", ":", "raise", "PyrtlError", "(", "'error, simulation trace needs at least 1 signal to track '", "'(by default, unnamed signals are not traced -- try either ...
Add the values in value_map to the end of the trace.
[ "Add", "the", "values", "in", "value_map", "to", "the", "end", "of", "the", "trace", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L794-L803
UCSBarchlab/PyRTL
pyrtl/simulation.py
SimulationTrace.add_fast_step
def add_fast_step(self, fastsim): """ Add the fastsim context to the trace. """ for wire_name in self.trace: self.trace[wire_name].append(fastsim.context[wire_name])
python
def add_fast_step(self, fastsim): """ Add the fastsim context to the trace. """ for wire_name in self.trace: self.trace[wire_name].append(fastsim.context[wire_name])
[ "def", "add_fast_step", "(", "self", ",", "fastsim", ")", ":", "for", "wire_name", "in", "self", ".", "trace", ":", "self", ".", "trace", "[", "wire_name", "]", ".", "append", "(", "fastsim", ".", "context", "[", "wire_name", "]", ")" ]
Add the fastsim context to the trace.
[ "Add", "the", "fastsim", "context", "to", "the", "trace", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L810-L813
UCSBarchlab/PyRTL
pyrtl/simulation.py
SimulationTrace.print_trace
def print_trace(self, file=sys.stdout, base=10, compact=False): """ Prints a list of wires and their current values. :param int base: the base the values are to be printed in :param bool compact: whether to omit spaces in output lines """ if len(self.trace) == 0: ...
python
def print_trace(self, file=sys.stdout, base=10, compact=False): """ Prints a list of wires and their current values. :param int base: the base the values are to be printed in :param bool compact: whether to omit spaces in output lines """ if len(self.trace) == 0: ...
[ "def", "print_trace", "(", "self", ",", "file", "=", "sys", ".", "stdout", ",", "base", "=", "10", ",", "compact", "=", "False", ")", ":", "if", "len", "(", "self", ".", "trace", ")", "==", "0", ":", "raise", "PyrtlError", "(", "'error, cannot print ...
Prints a list of wires and their current values. :param int base: the base the values are to be printed in :param bool compact: whether to omit spaces in output lines
[ "Prints", "a", "list", "of", "wires", "and", "their", "current", "values", ".", ":", "param", "int", "base", ":", "the", "base", "the", "values", "are", "to", "be", "printed", "in", ":", "param", "bool", "compact", ":", "whether", "to", "omit", "spaces...
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L815-L841
UCSBarchlab/PyRTL
pyrtl/simulation.py
SimulationTrace.print_vcd
def print_vcd(self, file=sys.stdout, include_clock=False): """ Print the trace out as a VCD File for use in other tools. :param file: file to open and output vcd dump to. :param include_clock: boolean specifying if the implicit clk should be included. Dumps the current trace to file as...
python
def print_vcd(self, file=sys.stdout, include_clock=False): """ Print the trace out as a VCD File for use in other tools. :param file: file to open and output vcd dump to. :param include_clock: boolean specifying if the implicit clk should be included. Dumps the current trace to file as...
[ "def", "print_vcd", "(", "self", ",", "file", "=", "sys", ".", "stdout", ",", "include_clock", "=", "False", ")", ":", "# dump header info", "# file_timestamp = time.strftime(\"%a, %d %b %Y %H:%M:%S (UTC/GMT)\", time.gmtime())", "# print >>file, \" \".join([\"$date\", file_timest...
Print the trace out as a VCD File for use in other tools. :param file: file to open and output vcd dump to. :param include_clock: boolean specifying if the implicit clk should be included. Dumps the current trace to file as a "value change dump" file. The file parameter defaults to _s...
[ "Print", "the", "trace", "out", "as", "a", "VCD", "File", "for", "use", "in", "other", "tools", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L843-L899
UCSBarchlab/PyRTL
pyrtl/simulation.py
SimulationTrace.render_trace
def render_trace( self, trace_list=None, file=sys.stdout, render_cls=default_renderer(), symbol_len=5, segment_size=5, segment_delim=' ', extra_line=True): """ Render the trace to a file using unicode and ASCII escape sequences. :param trace_list: A list of signals to be output...
python
def render_trace( self, trace_list=None, file=sys.stdout, render_cls=default_renderer(), symbol_len=5, segment_size=5, segment_delim=' ', extra_line=True): """ Render the trace to a file using unicode and ASCII escape sequences. :param trace_list: A list of signals to be output...
[ "def", "render_trace", "(", "self", ",", "trace_list", "=", "None", ",", "file", "=", "sys", ".", "stdout", ",", "render_cls", "=", "default_renderer", "(", ")", ",", "symbol_len", "=", "5", ",", "segment_size", "=", "5", ",", "segment_delim", "=", "' '"...
Render the trace to a file using unicode and ASCII escape sequences. :param trace_list: A list of signals to be output in the specified order. :param file: The place to write output, default to stdout. :param render_cls: A class that translates traces into output bytes. :param symbol_le...
[ "Render", "the", "trace", "to", "a", "file", "using", "unicode", "and", "ASCII", "escape", "sequences", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/simulation.py#L901-L941
UCSBarchlab/PyRTL
pyrtl/rtllib/muxes.py
prioritized_mux
def prioritized_mux(selects, vals): """ Returns the value in the first wire for which its select bit is 1 :param [WireVector] selects: a list of WireVectors signaling whether a wire should be chosen :param [WireVector] vals: values to return when the corresponding select value is 1 ...
python
def prioritized_mux(selects, vals): """ Returns the value in the first wire for which its select bit is 1 :param [WireVector] selects: a list of WireVectors signaling whether a wire should be chosen :param [WireVector] vals: values to return when the corresponding select value is 1 ...
[ "def", "prioritized_mux", "(", "selects", ",", "vals", ")", ":", "if", "len", "(", "selects", ")", "!=", "len", "(", "vals", ")", ":", "raise", "pyrtl", ".", "PyrtlError", "(", "\"Number of select and val signals must match\"", ")", "if", "len", "(", "vals",...
Returns the value in the first wire for which its select bit is 1 :param [WireVector] selects: a list of WireVectors signaling whether a wire should be chosen :param [WireVector] vals: values to return when the corresponding select value is 1 :return: WireVector If none of the items ar...
[ "Returns", "the", "value", "in", "the", "first", "wire", "for", "which", "its", "select", "bit", "is", "1" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/muxes.py#L4-L26
UCSBarchlab/PyRTL
pyrtl/rtllib/muxes.py
sparse_mux
def sparse_mux(sel, vals): """ Mux that avoids instantiating unnecessary mux_2s when possible. :param WireVector sel: Select wire, determines what is selected on a given cycle :param dictionary vals: dictionary of values at mux inputs (of type `{int:WireVector}`) :return: WireVector that signifies ...
python
def sparse_mux(sel, vals): """ Mux that avoids instantiating unnecessary mux_2s when possible. :param WireVector sel: Select wire, determines what is selected on a given cycle :param dictionary vals: dictionary of values at mux inputs (of type `{int:WireVector}`) :return: WireVector that signifies ...
[ "def", "sparse_mux", "(", "sel", ",", "vals", ")", ":", "import", "numbers", "max_val", "=", "2", "**", "len", "(", "sel", ")", "-", "1", "if", "SparseDefault", "in", "vals", ":", "default_val", "=", "vals", "[", "SparseDefault", "]", "del", "vals", ...
Mux that avoids instantiating unnecessary mux_2s when possible. :param WireVector sel: Select wire, determines what is selected on a given cycle :param dictionary vals: dictionary of values at mux inputs (of type `{int:WireVector}`) :return: WireVector that signifies the change This mux supports not h...
[ "Mux", "that", "avoids", "instantiating", "unnecessary", "mux_2s", "when", "possible", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/muxes.py#L38-L67
UCSBarchlab/PyRTL
pyrtl/rtllib/muxes.py
_sparse_mux
def _sparse_mux(sel, vals): """ Mux that avoids instantiating unnecessary mux_2s when possible. :param WireVector sel: Select wire, determines what is selected on a given cycle :param {int: WireVector} vals: dictionary to store the values that are :return: Wirevector that signifies the change ...
python
def _sparse_mux(sel, vals): """ Mux that avoids instantiating unnecessary mux_2s when possible. :param WireVector sel: Select wire, determines what is selected on a given cycle :param {int: WireVector} vals: dictionary to store the values that are :return: Wirevector that signifies the change ...
[ "def", "_sparse_mux", "(", "sel", ",", "vals", ")", ":", "items", "=", "list", "(", "vals", ".", "values", "(", ")", ")", "if", "len", "(", "vals", ")", "<=", "1", ":", "if", "len", "(", "vals", ")", "==", "0", ":", "raise", "pyrtl", ".", "Py...
Mux that avoids instantiating unnecessary mux_2s when possible. :param WireVector sel: Select wire, determines what is selected on a given cycle :param {int: WireVector} vals: dictionary to store the values that are :return: Wirevector that signifies the change This mux supports not having a full spec...
[ "Mux", "that", "avoids", "instantiating", "unnecessary", "mux_2s", "when", "possible", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/muxes.py#L70-L108
UCSBarchlab/PyRTL
pyrtl/rtllib/muxes.py
demux
def demux(select): """ Demultiplexes a wire of arbitrary bitwidth :param WireVector select: indicates which wire to set on :return (WireVector, ...): a tuple of wires corresponding to each demultiplexed wire """ if len(select) == 1: return _demux_2(select) wires = demux(select[:-1]...
python
def demux(select): """ Demultiplexes a wire of arbitrary bitwidth :param WireVector select: indicates which wire to set on :return (WireVector, ...): a tuple of wires corresponding to each demultiplexed wire """ if len(select) == 1: return _demux_2(select) wires = demux(select[:-1]...
[ "def", "demux", "(", "select", ")", ":", "if", "len", "(", "select", ")", "==", "1", ":", "return", "_demux_2", "(", "select", ")", "wires", "=", "demux", "(", "select", "[", ":", "-", "1", "]", ")", "sel", "=", "select", "[", "-", "1", "]", ...
Demultiplexes a wire of arbitrary bitwidth :param WireVector select: indicates which wire to set on :return (WireVector, ...): a tuple of wires corresponding to each demultiplexed wire
[ "Demultiplexes", "a", "wire", "of", "arbitrary", "bitwidth" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/muxes.py#L190-L205
UCSBarchlab/PyRTL
pyrtl/rtllib/muxes.py
MultiSelector.finalize
def finalize(self): """ Connects the wires. """ self._check_finalized() self._final = True for dest_w, values in self.dest_instrs_info.items(): mux_vals = dict(zip(self.instructions, values)) dest_w <<= sparse_mux(self.signal_wire, mux_vals)
python
def finalize(self): """ Connects the wires. """ self._check_finalized() self._final = True for dest_w, values in self.dest_instrs_info.items(): mux_vals = dict(zip(self.instructions, values)) dest_w <<= sparse_mux(self.signal_wire, mux_vals)
[ "def", "finalize", "(", "self", ")", ":", "self", ".", "_check_finalized", "(", ")", "self", ".", "_final", "=", "True", "for", "dest_w", ",", "values", "in", "self", ".", "dest_instrs_info", ".", "items", "(", ")", ":", "mux_vals", "=", "dict", "(", ...
Connects the wires.
[ "Connects", "the", "wires", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/muxes.py#L178-L187
UCSBarchlab/PyRTL
pyrtl/wire.py
WireVector.bitmask
def bitmask(self): """ A property holding a bitmask of the same length as this WireVector. Specifically it is an integer with a number of bits set to 1 equal to the bitwidth of the WireVector. It is often times useful to "mask" an integer such that it fits in the the number of b...
python
def bitmask(self): """ A property holding a bitmask of the same length as this WireVector. Specifically it is an integer with a number of bits set to 1 equal to the bitwidth of the WireVector. It is often times useful to "mask" an integer such that it fits in the the number of b...
[ "def", "bitmask", "(", "self", ")", ":", "if", "\"_bitmask\"", "not", "in", "self", ".", "__dict__", ":", "self", ".", "_bitmask", "=", "(", "1", "<<", "len", "(", "self", ")", ")", "-", "1", "return", "self", ".", "_bitmask" ]
A property holding a bitmask of the same length as this WireVector. Specifically it is an integer with a number of bits set to 1 equal to the bitwidth of the WireVector. It is often times useful to "mask" an integer such that it fits in the the number of bits of a WireVector. As a conv...
[ "A", "property", "holding", "a", "bitmask", "of", "the", "same", "length", "as", "this", "WireVector", ".", "Specifically", "it", "is", "an", "integer", "with", "a", "number", "of", "bits", "set", "to", "1", "equal", "to", "the", "bitwidth", "of", "the",...
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/wire.py#L427-L438
usrlocalben/pydux
pydux/log_middleware.py
log_middleware
def log_middleware(store): """log all actions to console as they are dispatched""" def wrapper(next_): def log_dispatch(action): print('Dispatch Action:', action) return next_(action) return log_dispatch return wrapper
python
def log_middleware(store): """log all actions to console as they are dispatched""" def wrapper(next_): def log_dispatch(action): print('Dispatch Action:', action) return next_(action) return log_dispatch return wrapper
[ "def", "log_middleware", "(", "store", ")", ":", "def", "wrapper", "(", "next_", ")", ":", "def", "log_dispatch", "(", "action", ")", ":", "print", "(", "'Dispatch Action:'", ",", "action", ")", "return", "next_", "(", "action", ")", "return", "log_dispatc...
log all actions to console as they are dispatched
[ "log", "all", "actions", "to", "console", "as", "they", "are", "dispatched" ]
train
https://github.com/usrlocalben/pydux/blob/943ca1c75357b9289f55f17ff2d997a66a3313a4/pydux/log_middleware.py#L6-L13
UCSBarchlab/PyRTL
pyrtl/compilesim.py
CompiledSimulation.inspect
def inspect(self, w): """Get the latest value of the wire given, if possible.""" if isinstance(w, WireVector): w = w.name try: vals = self.tracer.trace[w] except KeyError: pass else: if not vals: raise PyrtlError('No...
python
def inspect(self, w): """Get the latest value of the wire given, if possible.""" if isinstance(w, WireVector): w = w.name try: vals = self.tracer.trace[w] except KeyError: pass else: if not vals: raise PyrtlError('No...
[ "def", "inspect", "(", "self", ",", "w", ")", ":", "if", "isinstance", "(", "w", ",", "WireVector", ")", ":", "w", "=", "w", ".", "name", "try", ":", "vals", "=", "self", ".", "tracer", ".", "trace", "[", "w", "]", "except", "KeyError", ":", "p...
Get the latest value of the wire given, if possible.
[ "Get", "the", "latest", "value", "of", "the", "wire", "given", "if", "possible", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/compilesim.py#L110-L122
UCSBarchlab/PyRTL
pyrtl/compilesim.py
CompiledSimulation.run
def run(self, inputs): """Run many steps of the simulation. The argument is a list of input mappings for each step, and its length is the number of steps to be executed. """ steps = len(inputs) # create i/o arrays of the appropriate length ibuf_type = ctypes.c_ui...
python
def run(self, inputs): """Run many steps of the simulation. The argument is a list of input mappings for each step, and its length is the number of steps to be executed. """ steps = len(inputs) # create i/o arrays of the appropriate length ibuf_type = ctypes.c_ui...
[ "def", "run", "(", "self", ",", "inputs", ")", ":", "steps", "=", "len", "(", "inputs", ")", "# create i/o arrays of the appropriate length", "ibuf_type", "=", "ctypes", ".", "c_uint64", "*", "(", "steps", "*", "self", ".", "_ibufsz", ")", "obuf_type", "=", ...
Run many steps of the simulation. The argument is a list of input mappings for each step, and its length is the number of steps to be executed.
[ "Run", "many", "steps", "of", "the", "simulation", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/compilesim.py#L131-L188
UCSBarchlab/PyRTL
pyrtl/compilesim.py
CompiledSimulation._traceable
def _traceable(self, wv): """Check if wv is able to be traced If it is traceable due to a probe, record that probe in _probe_mapping. """ if isinstance(wv, (Input, Output)): return True for net in self.block.logic: if net.op == 'w' and net.args[0].name ==...
python
def _traceable(self, wv): """Check if wv is able to be traced If it is traceable due to a probe, record that probe in _probe_mapping. """ if isinstance(wv, (Input, Output)): return True for net in self.block.logic: if net.op == 'w' and net.args[0].name ==...
[ "def", "_traceable", "(", "self", ",", "wv", ")", ":", "if", "isinstance", "(", "wv", ",", "(", "Input", ",", "Output", ")", ")", ":", "return", "True", "for", "net", "in", "self", ".", "block", ".", "logic", ":", "if", "net", ".", "op", "==", ...
Check if wv is able to be traced If it is traceable due to a probe, record that probe in _probe_mapping.
[ "Check", "if", "wv", "is", "able", "to", "be", "traced" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/compilesim.py#L190-L201
UCSBarchlab/PyRTL
pyrtl/compilesim.py
CompiledSimulation._remove_untraceable
def _remove_untraceable(self): """Remove from the tracer those wires that CompiledSimulation cannot track. Create _probe_mapping for wires only traceable via probes. """ self._probe_mapping = {} wvs = {wv for wv in self.tracer.wires_to_track if self._traceable(wv)} self....
python
def _remove_untraceable(self): """Remove from the tracer those wires that CompiledSimulation cannot track. Create _probe_mapping for wires only traceable via probes. """ self._probe_mapping = {} wvs = {wv for wv in self.tracer.wires_to_track if self._traceable(wv)} self....
[ "def", "_remove_untraceable", "(", "self", ")", ":", "self", ".", "_probe_mapping", "=", "{", "}", "wvs", "=", "{", "wv", "for", "wv", "in", "self", ".", "tracer", ".", "wires_to_track", "if", "self", ".", "_traceable", "(", "wv", ")", "}", "self", "...
Remove from the tracer those wires that CompiledSimulation cannot track. Create _probe_mapping for wires only traceable via probes.
[ "Remove", "from", "the", "tracer", "those", "wires", "that", "CompiledSimulation", "cannot", "track", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/compilesim.py#L203-L212
UCSBarchlab/PyRTL
pyrtl/compilesim.py
CompiledSimulation._create_dll
def _create_dll(self): """Create a dynamically-linked library implementing the simulation logic.""" self._dir = tempfile.mkdtemp() with open(path.join(self._dir, 'pyrtlsim.c'), 'w') as f: self._create_code(lambda s: f.write(s+'\n')) if platform.system() == 'Darwin': ...
python
def _create_dll(self): """Create a dynamically-linked library implementing the simulation logic.""" self._dir = tempfile.mkdtemp() with open(path.join(self._dir, 'pyrtlsim.c'), 'w') as f: self._create_code(lambda s: f.write(s+'\n')) if platform.system() == 'Darwin': ...
[ "def", "_create_dll", "(", "self", ")", ":", "self", ".", "_dir", "=", "tempfile", ".", "mkdtemp", "(", ")", "with", "open", "(", "path", ".", "join", "(", "self", ".", "_dir", ",", "'pyrtlsim.c'", ")", ",", "'w'", ")", "as", "f", ":", "self", "....
Create a dynamically-linked library implementing the simulation logic.
[ "Create", "a", "dynamically", "-", "linked", "library", "implementing", "the", "simulation", "logic", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/compilesim.py#L214-L230
UCSBarchlab/PyRTL
pyrtl/compilesim.py
CompiledSimulation._makeini
def _makeini(self, w, v): """C initializer string for a wire with a given value.""" pieces = [] for n in range(self._limbs(w)): pieces.append(hex(v & ((1 << 64)-1))) v >>= 64 return ','.join(pieces).join('{}')
python
def _makeini(self, w, v): """C initializer string for a wire with a given value.""" pieces = [] for n in range(self._limbs(w)): pieces.append(hex(v & ((1 << 64)-1))) v >>= 64 return ','.join(pieces).join('{}')
[ "def", "_makeini", "(", "self", ",", "w", ",", "v", ")", ":", "pieces", "=", "[", "]", "for", "n", "in", "range", "(", "self", ".", "_limbs", "(", "w", ")", ")", ":", "pieces", ".", "append", "(", "hex", "(", "v", "&", "(", "(", "1", "<<", ...
C initializer string for a wire with a given value.
[ "C", "initializer", "string", "for", "a", "wire", "with", "a", "given", "value", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/compilesim.py#L236-L242
UCSBarchlab/PyRTL
pyrtl/compilesim.py
CompiledSimulation._makemask
def _makemask(self, dest, res, pos): """Create a bitmask. The value being masked is of width `res`. Limb number `pos` of `dest` is being assigned to. """ if (res is None or dest.bitwidth < res) and 0 < (dest.bitwidth - 64*pos) < 64: return '&0x{:X}'.format((1 << (des...
python
def _makemask(self, dest, res, pos): """Create a bitmask. The value being masked is of width `res`. Limb number `pos` of `dest` is being assigned to. """ if (res is None or dest.bitwidth < res) and 0 < (dest.bitwidth - 64*pos) < 64: return '&0x{:X}'.format((1 << (des...
[ "def", "_makemask", "(", "self", ",", "dest", ",", "res", ",", "pos", ")", ":", "if", "(", "res", "is", "None", "or", "dest", ".", "bitwidth", "<", "res", ")", "and", "0", "<", "(", "dest", ".", "bitwidth", "-", "64", "*", "pos", ")", "<", "6...
Create a bitmask. The value being masked is of width `res`. Limb number `pos` of `dest` is being assigned to.
[ "Create", "a", "bitmask", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/compilesim.py#L257-L265
UCSBarchlab/PyRTL
pyrtl/compilesim.py
CompiledSimulation._getarglimb
def _getarglimb(self, arg, n): """Get the nth limb of the given wire. Returns '0' when the wire does not have sufficient limbs. """ return '{vn}[{n}]'.format(vn=self.varname[arg], n=n) if arg.bitwidth > 64*n else '0'
python
def _getarglimb(self, arg, n): """Get the nth limb of the given wire. Returns '0' when the wire does not have sufficient limbs. """ return '{vn}[{n}]'.format(vn=self.varname[arg], n=n) if arg.bitwidth > 64*n else '0'
[ "def", "_getarglimb", "(", "self", ",", "arg", ",", "n", ")", ":", "return", "'{vn}[{n}]'", ".", "format", "(", "vn", "=", "self", ".", "varname", "[", "arg", "]", ",", "n", "=", "n", ")", "if", "arg", ".", "bitwidth", ">", "64", "*", "n", "els...
Get the nth limb of the given wire. Returns '0' when the wire does not have sufficient limbs.
[ "Get", "the", "nth", "limb", "of", "the", "given", "wire", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/compilesim.py#L267-L272
UCSBarchlab/PyRTL
pyrtl/compilesim.py
CompiledSimulation._clean_name
def _clean_name(self, prefix, obj): """Create a C variable name with the given prefix based on the name of obj.""" return '{}{}_{}'.format(prefix, self._uid(), ''.join(c for c in obj.name if c.isalnum()))
python
def _clean_name(self, prefix, obj): """Create a C variable name with the given prefix based on the name of obj.""" return '{}{}_{}'.format(prefix, self._uid(), ''.join(c for c in obj.name if c.isalnum()))
[ "def", "_clean_name", "(", "self", ",", "prefix", ",", "obj", ")", ":", "return", "'{}{}_{}'", ".", "format", "(", "prefix", ",", "self", ".", "_uid", "(", ")", ",", "''", ".", "join", "(", "c", "for", "c", "in", "obj", ".", "name", "if", "c", ...
Create a C variable name with the given prefix based on the name of obj.
[ "Create", "a", "C", "variable", "name", "with", "the", "given", "prefix", "based", "on", "the", "name", "of", "obj", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/compilesim.py#L274-L276
UCSBarchlab/PyRTL
pyrtl/rtllib/multipliers.py
simple_mult
def simple_mult(A, B, start): """ Builds a slow, small multiplier using the simple shift-and-add algorithm. Requires very small area (it uses only a single adder), but has long delay (worst case is len(A) cycles). start is a one-bit input to indicate inputs are ready. done is a one-bit output signal rai...
python
def simple_mult(A, B, start): """ Builds a slow, small multiplier using the simple shift-and-add algorithm. Requires very small area (it uses only a single adder), but has long delay (worst case is len(A) cycles). start is a one-bit input to indicate inputs are ready. done is a one-bit output signal rai...
[ "def", "simple_mult", "(", "A", ",", "B", ",", "start", ")", ":", "triv_result", "=", "_trivial_mult", "(", "A", ",", "B", ")", "if", "triv_result", "is", "not", "None", ":", "return", "triv_result", ",", "pyrtl", ".", "Const", "(", "1", ",", "1", ...
Builds a slow, small multiplier using the simple shift-and-add algorithm. Requires very small area (it uses only a single adder), but has long delay (worst case is len(A) cycles). start is a one-bit input to indicate inputs are ready. done is a one-bit output signal raised when the multiplication is finishe...
[ "Builds", "a", "slow", "small", "multiplier", "using", "the", "simple", "shift", "-", "and", "-", "add", "algorithm", ".", "Requires", "very", "small", "area", "(", "it", "uses", "only", "a", "single", "adder", ")", "but", "has", "long", "delay", "(", ...
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/multipliers.py#L11-L46
UCSBarchlab/PyRTL
pyrtl/rtllib/multipliers.py
_trivial_mult
def _trivial_mult(A, B): """ turns a multiplication into an And gate if one of the wires is a bitwidth of 1 :param A: :param B: :return: """ if len(B) == 1: A, B = B, A # so that we can reuse the code below :) if len(A) == 1: a_vals = A.sign_extended(len(B)) ...
python
def _trivial_mult(A, B): """ turns a multiplication into an And gate if one of the wires is a bitwidth of 1 :param A: :param B: :return: """ if len(B) == 1: A, B = B, A # so that we can reuse the code below :) if len(A) == 1: a_vals = A.sign_extended(len(B)) ...
[ "def", "_trivial_mult", "(", "A", ",", "B", ")", ":", "if", "len", "(", "B", ")", "==", "1", ":", "A", ",", "B", "=", "B", ",", "A", "# so that we can reuse the code below :)", "if", "len", "(", "A", ")", "==", "1", ":", "a_vals", "=", "A", ".", ...
turns a multiplication into an And gate if one of the wires is a bitwidth of 1 :param A: :param B: :return:
[ "turns", "a", "multiplication", "into", "an", "And", "gate", "if", "one", "of", "the", "wires", "is", "a", "bitwidth", "of", "1" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/multipliers.py#L49-L64
UCSBarchlab/PyRTL
pyrtl/rtllib/multipliers.py
complex_mult
def complex_mult(A, B, shifts, start): """ Generate shift-and-add multiplier that can shift and add multiple bits per clock cycle. Uses substantially more space than `simple_mult()` but is much faster. :param WireVector A, B: two input wires for the multiplication :param int shifts: number of spaces Re...
python
def complex_mult(A, B, shifts, start): """ Generate shift-and-add multiplier that can shift and add multiple bits per clock cycle. Uses substantially more space than `simple_mult()` but is much faster. :param WireVector A, B: two input wires for the multiplication :param int shifts: number of spaces Re...
[ "def", "complex_mult", "(", "A", ",", "B", ",", "shifts", ",", "start", ")", ":", "alen", "=", "len", "(", "A", ")", "blen", "=", "len", "(", "B", ")", "areg", "=", "pyrtl", ".", "Register", "(", "alen", ")", "breg", "=", "pyrtl", ".", "Registe...
Generate shift-and-add multiplier that can shift and add multiple bits per clock cycle. Uses substantially more space than `simple_mult()` but is much faster. :param WireVector A, B: two input wires for the multiplication :param int shifts: number of spaces Register is to be shifted per clk cycle (...
[ "Generate", "shift", "-", "and", "-", "add", "multiplier", "that", "can", "shift", "and", "add", "multiple", "bits", "per", "clock", "cycle", ".", "Uses", "substantially", "more", "space", "than", "simple_mult", "()", "but", "is", "much", "faster", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/multipliers.py#L67-L102
UCSBarchlab/PyRTL
pyrtl/rtllib/multipliers.py
_one_cycle_mult
def _one_cycle_mult(areg, breg, rem_bits, sum_sf=0, curr_bit=0): """ returns a WireVector sum of rem_bits multiplies (in one clock cycle) note: this method requires a lot of area because of the indexing in the else statement """ if rem_bits == 0: return sum_sf else: a_curr_val = areg[cur...
python
def _one_cycle_mult(areg, breg, rem_bits, sum_sf=0, curr_bit=0): """ returns a WireVector sum of rem_bits multiplies (in one clock cycle) note: this method requires a lot of area because of the indexing in the else statement """ if rem_bits == 0: return sum_sf else: a_curr_val = areg[cur...
[ "def", "_one_cycle_mult", "(", "areg", ",", "breg", ",", "rem_bits", ",", "sum_sf", "=", "0", ",", "curr_bit", "=", "0", ")", ":", "if", "rem_bits", "==", "0", ":", "return", "sum_sf", "else", ":", "a_curr_val", "=", "areg", "[", "curr_bit", "]", "."...
returns a WireVector sum of rem_bits multiplies (in one clock cycle) note: this method requires a lot of area because of the indexing in the else statement
[ "returns", "a", "WireVector", "sum", "of", "rem_bits", "multiplies", "(", "in", "one", "clock", "cycle", ")", "note", ":", "this", "method", "requires", "a", "lot", "of", "area", "because", "of", "the", "indexing", "in", "the", "else", "statement" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/multipliers.py#L105-L122
UCSBarchlab/PyRTL
pyrtl/rtllib/multipliers.py
tree_multiplier
def tree_multiplier(A, B, reducer=adders.wallace_reducer, adder_func=adders.kogge_stone): """ Build an fast unclocked multiplier for inputs A and B using a Wallace or Dada Tree. :param WireVector A, B: two input wires for the multiplication :param function reducer: Reduce the tree using either a Dada recud...
python
def tree_multiplier(A, B, reducer=adders.wallace_reducer, adder_func=adders.kogge_stone): """ Build an fast unclocked multiplier for inputs A and B using a Wallace or Dada Tree. :param WireVector A, B: two input wires for the multiplication :param function reducer: Reduce the tree using either a Dada recud...
[ "def", "tree_multiplier", "(", "A", ",", "B", ",", "reducer", "=", "adders", ".", "wallace_reducer", ",", "adder_func", "=", "adders", ".", "kogge_stone", ")", ":", "\"\"\"\n The two tree multipliers basically works by splitting the multiplication\n into a series of man...
Build an fast unclocked multiplier for inputs A and B using a Wallace or Dada Tree. :param WireVector A, B: two input wires for the multiplication :param function reducer: Reduce the tree using either a Dada recuder or a Wallace reducer determines whether it is a Wallace tree multiplier or a Dada tree mu...
[ "Build", "an", "fast", "unclocked", "multiplier", "for", "inputs", "A", "and", "B", "using", "a", "Wallace", "or", "Dada", "Tree", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/multipliers.py#L125-L155
UCSBarchlab/PyRTL
pyrtl/rtllib/multipliers.py
signed_tree_multiplier
def signed_tree_multiplier(A, B, reducer=adders.wallace_reducer, adder_func=adders.kogge_stone): """Same as tree_multiplier, but uses two's-complement signed integers""" if len(A) == 1 or len(B) == 1: raise pyrtl.PyrtlError("sign bit required, one or both wires too small") aneg, bneg = A[-1], B[-1]...
python
def signed_tree_multiplier(A, B, reducer=adders.wallace_reducer, adder_func=adders.kogge_stone): """Same as tree_multiplier, but uses two's-complement signed integers""" if len(A) == 1 or len(B) == 1: raise pyrtl.PyrtlError("sign bit required, one or both wires too small") aneg, bneg = A[-1], B[-1]...
[ "def", "signed_tree_multiplier", "(", "A", ",", "B", ",", "reducer", "=", "adders", ".", "wallace_reducer", ",", "adder_func", "=", "adders", ".", "kogge_stone", ")", ":", "if", "len", "(", "A", ")", "==", "1", "or", "len", "(", "B", ")", "==", "1", ...
Same as tree_multiplier, but uses two's-complement signed integers
[ "Same", "as", "tree_multiplier", "but", "uses", "two", "s", "-", "complement", "signed", "integers" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/multipliers.py#L158-L168
UCSBarchlab/PyRTL
pyrtl/rtllib/multipliers.py
_twos_comp_conditional
def _twos_comp_conditional(orig_wire, sign_bit, bw=None): """Returns two's complement of wire (using bitwidth bw) if sign_bit == 1""" if bw is None: bw = len(orig_wire) new_wire = pyrtl.WireVector(bw) with pyrtl.conditional_assignment: with sign_bit: new_wire |= ~orig_wire + ...
python
def _twos_comp_conditional(orig_wire, sign_bit, bw=None): """Returns two's complement of wire (using bitwidth bw) if sign_bit == 1""" if bw is None: bw = len(orig_wire) new_wire = pyrtl.WireVector(bw) with pyrtl.conditional_assignment: with sign_bit: new_wire |= ~orig_wire + ...
[ "def", "_twos_comp_conditional", "(", "orig_wire", ",", "sign_bit", ",", "bw", "=", "None", ")", ":", "if", "bw", "is", "None", ":", "bw", "=", "len", "(", "orig_wire", ")", "new_wire", "=", "pyrtl", ".", "WireVector", "(", "bw", ")", "with", "pyrtl", ...
Returns two's complement of wire (using bitwidth bw) if sign_bit == 1
[ "Returns", "two", "s", "complement", "of", "wire", "(", "using", "bitwidth", "bw", ")", "if", "sign_bit", "==", "1" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/multipliers.py#L171-L181
UCSBarchlab/PyRTL
pyrtl/rtllib/multipliers.py
fused_multiply_adder
def fused_multiply_adder(mult_A, mult_B, add, signed=False, reducer=adders.wallace_reducer, adder_func=adders.kogge_stone): """ Generate efficient hardware for a*b+c. Multiplies two wirevectors together and adds a third wirevector to the multiplication result, all in one step. ...
python
def fused_multiply_adder(mult_A, mult_B, add, signed=False, reducer=adders.wallace_reducer, adder_func=adders.kogge_stone): """ Generate efficient hardware for a*b+c. Multiplies two wirevectors together and adds a third wirevector to the multiplication result, all in one step. ...
[ "def", "fused_multiply_adder", "(", "mult_A", ",", "mult_B", ",", "add", ",", "signed", "=", "False", ",", "reducer", "=", "adders", ".", "wallace_reducer", ",", "adder_func", "=", "adders", ".", "kogge_stone", ")", ":", "# TODO: Specify the length of the result w...
Generate efficient hardware for a*b+c. Multiplies two wirevectors together and adds a third wirevector to the multiplication result, all in one step. By doing it this way (instead of separately), one reduces both the area and the timing delay of the circuit. :param Bool signed: Currently not supp...
[ "Generate", "efficient", "hardware", "for", "a", "*", "b", "+", "c", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/multipliers.py#L184-L205
UCSBarchlab/PyRTL
pyrtl/rtllib/multipliers.py
generalized_fma
def generalized_fma(mult_pairs, add_wires, signed=False, reducer=adders.wallace_reducer, adder_func=adders.kogge_stone): """Generated an opimitized fused multiply adder. A generalized FMA unit that multiplies each pair of numbers in mult_pairs, then adds the resulting numbers and and th...
python
def generalized_fma(mult_pairs, add_wires, signed=False, reducer=adders.wallace_reducer, adder_func=adders.kogge_stone): """Generated an opimitized fused multiply adder. A generalized FMA unit that multiplies each pair of numbers in mult_pairs, then adds the resulting numbers and and th...
[ "def", "generalized_fma", "(", "mult_pairs", ",", "add_wires", ",", "signed", "=", "False", ",", "reducer", "=", "adders", ".", "wallace_reducer", ",", "adder_func", "=", "adders", ".", "kogge_stone", ")", ":", "# first need to figure out the max length", "if", "m...
Generated an opimitized fused multiply adder. A generalized FMA unit that multiplies each pair of numbers in mult_pairs, then adds the resulting numbers and and the values of the add wires all together to form an answer. This is faster than separate adders and multipliers because you avoid unnecessary ...
[ "Generated", "an", "opimitized", "fused", "multiply", "adder", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/multipliers.py#L208-L258
UCSBarchlab/PyRTL
pyrtl/transform.py
net_transform
def net_transform(transform_func, block=None, **kwargs): """ Maps nets to new sets of nets according to a custom function :param transform_func: Function signature: func(orig_net (logicnet)) -> keep_orig_net (bool) :return: """ block = working_block(block) with set_working_block(blo...
python
def net_transform(transform_func, block=None, **kwargs): """ Maps nets to new sets of nets according to a custom function :param transform_func: Function signature: func(orig_net (logicnet)) -> keep_orig_net (bool) :return: """ block = working_block(block) with set_working_block(blo...
[ "def", "net_transform", "(", "transform_func", ",", "block", "=", "None", ",", "*", "*", "kwargs", ")", ":", "block", "=", "working_block", "(", "block", ")", "with", "set_working_block", "(", "block", ",", "True", ")", ":", "for", "net", "in", "block", ...
Maps nets to new sets of nets according to a custom function :param transform_func: Function signature: func(orig_net (logicnet)) -> keep_orig_net (bool) :return:
[ "Maps", "nets", "to", "new", "sets", "of", "nets", "according", "to", "a", "custom", "function" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/transform.py#L27-L40
UCSBarchlab/PyRTL
pyrtl/transform.py
all_nets
def all_nets(transform_func): """Decorator that wraps a net transform function""" @functools.wraps(transform_func) def t_res(**kwargs): net_transform(transform_func, **kwargs) return t_res
python
def all_nets(transform_func): """Decorator that wraps a net transform function""" @functools.wraps(transform_func) def t_res(**kwargs): net_transform(transform_func, **kwargs) return t_res
[ "def", "all_nets", "(", "transform_func", ")", ":", "@", "functools", ".", "wraps", "(", "transform_func", ")", "def", "t_res", "(", "*", "*", "kwargs", ")", ":", "net_transform", "(", "transform_func", ",", "*", "*", "kwargs", ")", "return", "t_res" ]
Decorator that wraps a net transform function
[ "Decorator", "that", "wraps", "a", "net", "transform", "function" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/transform.py#L43-L48
UCSBarchlab/PyRTL
pyrtl/transform.py
wire_transform
def wire_transform(transform_func, select_types=WireVector, exclude_types=(Input, Output, Register, Const), block=None): """ Maps Wires to new sets of nets and wires according to a custom function :param transform_func: The function you want to run on all wires Function signature...
python
def wire_transform(transform_func, select_types=WireVector, exclude_types=(Input, Output, Register, Const), block=None): """ Maps Wires to new sets of nets and wires according to a custom function :param transform_func: The function you want to run on all wires Function signature...
[ "def", "wire_transform", "(", "transform_func", ",", "select_types", "=", "WireVector", ",", "exclude_types", "=", "(", "Input", ",", "Output", ",", "Register", ",", "Const", ")", ",", "block", "=", "None", ")", ":", "block", "=", "working_block", "(", "bl...
Maps Wires to new sets of nets and wires according to a custom function :param transform_func: The function you want to run on all wires Function signature: func(orig_wire (WireVector)) -> src_wire, dst_wire src_wire is the src for the stuff you made in the transform func and dst_wire is th...
[ "Maps", "Wires", "to", "new", "sets", "of", "nets", "and", "wires", "according", "to", "a", "custom", "function" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/transform.py#L51-L70
UCSBarchlab/PyRTL
pyrtl/transform.py
all_wires
def all_wires(transform_func): """Decorator that wraps a wire transform function""" @functools.wraps(transform_func) def t_res(**kwargs): wire_transform(transform_func, **kwargs) return t_res
python
def all_wires(transform_func): """Decorator that wraps a wire transform function""" @functools.wraps(transform_func) def t_res(**kwargs): wire_transform(transform_func, **kwargs) return t_res
[ "def", "all_wires", "(", "transform_func", ")", ":", "@", "functools", ".", "wraps", "(", "transform_func", ")", "def", "t_res", "(", "*", "*", "kwargs", ")", ":", "wire_transform", "(", "transform_func", ",", "*", "*", "kwargs", ")", "return", "t_res" ]
Decorator that wraps a wire transform function
[ "Decorator", "that", "wraps", "a", "wire", "transform", "function" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/transform.py#L73-L78
UCSBarchlab/PyRTL
pyrtl/transform.py
replace_wires
def replace_wires(wire_map, block=None): """ Quickly replace all wires in a block :param {old_wire: new_wire} wire_map: mapping of old wires to new wires """ block = working_block(block) src_nets, dst_nets = block.net_connections(include_virtual_nodes=False) for old_w, new_w in wire_m...
python
def replace_wires(wire_map, block=None): """ Quickly replace all wires in a block :param {old_wire: new_wire} wire_map: mapping of old wires to new wires """ block = working_block(block) src_nets, dst_nets = block.net_connections(include_virtual_nodes=False) for old_w, new_w in wire_m...
[ "def", "replace_wires", "(", "wire_map", ",", "block", "=", "None", ")", ":", "block", "=", "working_block", "(", "block", ")", "src_nets", ",", "dst_nets", "=", "block", ".", "net_connections", "(", "include_virtual_nodes", "=", "False", ")", "for", "old_w"...
Quickly replace all wires in a block :param {old_wire: new_wire} wire_map: mapping of old wires to new wires
[ "Quickly", "replace", "all", "wires", "in", "a", "block" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/transform.py#L109-L119
UCSBarchlab/PyRTL
pyrtl/transform.py
clone_wire
def clone_wire(old_wire, name=None): """ Makes a copy of any existing wire :param old_wire: The wire to clone :param name: a name fo rhte new wire Note that this function is mainly intended to be used when the two wires are from different blocks. Making two wires with the same name in the ...
python
def clone_wire(old_wire, name=None): """ Makes a copy of any existing wire :param old_wire: The wire to clone :param name: a name fo rhte new wire Note that this function is mainly intended to be used when the two wires are from different blocks. Making two wires with the same name in the ...
[ "def", "clone_wire", "(", "old_wire", ",", "name", "=", "None", ")", ":", "if", "isinstance", "(", "old_wire", ",", "Const", ")", ":", "return", "Const", "(", "old_wire", ".", "val", ",", "old_wire", ".", "bitwidth", ")", "else", ":", "if", "name", "...
Makes a copy of any existing wire :param old_wire: The wire to clone :param name: a name fo rhte new wire Note that this function is mainly intended to be used when the two wires are from different blocks. Making two wires with the same name in the same block is not allowed
[ "Makes", "a", "copy", "of", "any", "existing", "wire" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/transform.py#L166-L182
UCSBarchlab/PyRTL
pyrtl/transform.py
copy_block
def copy_block(block=None, update_working_block=True): """ Makes a copy of an existing block :param block: The block to clone. (defaults to the working block) :return: The resulting block """ block_in = working_block(block) block_out, temp_wv_map = _clone_block_and_wires(block_in) mems ...
python
def copy_block(block=None, update_working_block=True): """ Makes a copy of an existing block :param block: The block to clone. (defaults to the working block) :return: The resulting block """ block_in = working_block(block) block_out, temp_wv_map = _clone_block_and_wires(block_in) mems ...
[ "def", "copy_block", "(", "block", "=", "None", ",", "update_working_block", "=", "True", ")", ":", "block_in", "=", "working_block", "(", "block", ")", "block_out", ",", "temp_wv_map", "=", "_clone_block_and_wires", "(", "block_in", ")", "mems", "=", "{", "...
Makes a copy of an existing block :param block: The block to clone. (defaults to the working block) :return: The resulting block
[ "Makes", "a", "copy", "of", "an", "existing", "block" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/transform.py#L185-L201
UCSBarchlab/PyRTL
pyrtl/transform.py
_clone_block_and_wires
def _clone_block_and_wires(block_in): """ This is a generic function to copy the WireVectors for another round of synthesis This does not split a WireVector with multiple wires. :param block_in: The block to change :param synth_name: a name to prepend to all new copies of a wire :return: the re...
python
def _clone_block_and_wires(block_in): """ This is a generic function to copy the WireVectors for another round of synthesis This does not split a WireVector with multiple wires. :param block_in: The block to change :param synth_name: a name to prepend to all new copies of a wire :return: the re...
[ "def", "_clone_block_and_wires", "(", "block_in", ")", ":", "block_in", ".", "sanity_check", "(", ")", "# make sure that everything is valid", "block_out", "=", "block_in", ".", "__class__", "(", ")", "temp_wv_map", "=", "{", "}", "with", "set_working_block", "(", ...
This is a generic function to copy the WireVectors for another round of synthesis This does not split a WireVector with multiple wires. :param block_in: The block to change :param synth_name: a name to prepend to all new copies of a wire :return: the resulting block and a WireVector map
[ "This", "is", "a", "generic", "function", "to", "copy", "the", "WireVectors", "for", "another", "round", "of", "synthesis", "This", "does", "not", "split", "a", "WireVector", "with", "multiple", "wires", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/transform.py#L204-L221
UCSBarchlab/PyRTL
pyrtl/transform.py
_copy_net
def _copy_net(block_out, net, temp_wv_net, mem_map): """This function makes a copy of all nets passed to it for synth uses """ new_args = tuple(temp_wv_net[a_arg] for a_arg in net.args) new_dests = tuple(temp_wv_net[a_dest] for a_dest in net.dests) if net.op in "m@": # special stuff for copying mem...
python
def _copy_net(block_out, net, temp_wv_net, mem_map): """This function makes a copy of all nets passed to it for synth uses """ new_args = tuple(temp_wv_net[a_arg] for a_arg in net.args) new_dests = tuple(temp_wv_net[a_dest] for a_dest in net.dests) if net.op in "m@": # special stuff for copying mem...
[ "def", "_copy_net", "(", "block_out", ",", "net", ",", "temp_wv_net", ",", "mem_map", ")", ":", "new_args", "=", "tuple", "(", "temp_wv_net", "[", "a_arg", "]", "for", "a_arg", "in", "net", ".", "args", ")", "new_dests", "=", "tuple", "(", "temp_wv_net",...
This function makes a copy of all nets passed to it for synth uses
[ "This", "function", "makes", "a", "copy", "of", "all", "nets", "passed", "to", "it", "for", "synth", "uses" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/transform.py#L224-L235
UCSBarchlab/PyRTL
pyrtl/transform.py
_get_new_block_mem_instance
def _get_new_block_mem_instance(op_param, mem_map, block_out): """ gets the instance of the memory in the new block that is associated with a memory in a old block """ memid, old_mem = op_param if old_mem not in mem_map: new_mem = old_mem._make_copy(block_out) new_mem.id = old_mem.id...
python
def _get_new_block_mem_instance(op_param, mem_map, block_out): """ gets the instance of the memory in the new block that is associated with a memory in a old block """ memid, old_mem = op_param if old_mem not in mem_map: new_mem = old_mem._make_copy(block_out) new_mem.id = old_mem.id...
[ "def", "_get_new_block_mem_instance", "(", "op_param", ",", "mem_map", ",", "block_out", ")", ":", "memid", ",", "old_mem", "=", "op_param", "if", "old_mem", "not", "in", "mem_map", ":", "new_mem", "=", "old_mem", ".", "_make_copy", "(", "block_out", ")", "n...
gets the instance of the memory in the new block that is associated with a memory in a old block
[ "gets", "the", "instance", "of", "the", "memory", "in", "the", "new", "block", "that", "is", "associated", "with", "a", "memory", "in", "a", "old", "block" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/transform.py#L238-L247
UCSBarchlab/PyRTL
pyrtl/helperfuncs.py
probe
def probe(w, name=None): """ Print useful information about a WireVector when in debug mode. :param w: WireVector from which to get info :param name: optional name for probe (defaults to an autogenerated name) :return: original WireVector w Probe can be inserted into a existing design easily as it...
python
def probe(w, name=None): """ Print useful information about a WireVector when in debug mode. :param w: WireVector from which to get info :param name: optional name for probe (defaults to an autogenerated name) :return: original WireVector w Probe can be inserted into a existing design easily as it...
[ "def", "probe", "(", "w", ",", "name", "=", "None", ")", ":", "if", "not", "isinstance", "(", "w", ",", "WireVector", ")", ":", "raise", "PyrtlError", "(", "'Only WireVectors can be probed'", ")", "if", "name", "is", "None", ":", "name", "=", "'(%s: %s)'...
Print useful information about a WireVector when in debug mode. :param w: WireVector from which to get info :param name: optional name for probe (defaults to an autogenerated name) :return: original WireVector w Probe can be inserted into a existing design easily as it returns the original wire un...
[ "Print", "useful", "information", "about", "a", "WireVector", "when", "in", "debug", "mode", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/helperfuncs.py#L24-L52
UCSBarchlab/PyRTL
pyrtl/helperfuncs.py
rtl_assert
def rtl_assert(w, exp, block=None): """ Add hardware assertions to be checked on the RTL design. :param w: should be a WireVector :param Exception exp: Exception to throw when assertion fails :param Block block: block to which the assertion should be added (default to working block) :return: the Ou...
python
def rtl_assert(w, exp, block=None): """ Add hardware assertions to be checked on the RTL design. :param w: should be a WireVector :param Exception exp: Exception to throw when assertion fails :param Block block: block to which the assertion should be added (default to working block) :return: the Ou...
[ "def", "rtl_assert", "(", "w", ",", "exp", ",", "block", "=", "None", ")", ":", "block", "=", "working_block", "(", "block", ")", "if", "not", "isinstance", "(", "w", ",", "WireVector", ")", ":", "raise", "PyrtlError", "(", "'Only WireVectors can be assert...
Add hardware assertions to be checked on the RTL design. :param w: should be a WireVector :param Exception exp: Exception to throw when assertion fails :param Block block: block to which the assertion should be added (default to working block) :return: the Output wire for the assertion (can be ignored ...
[ "Add", "hardware", "assertions", "to", "be", "checked", "on", "the", "RTL", "design", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/helperfuncs.py#L58-L90
UCSBarchlab/PyRTL
pyrtl/helperfuncs.py
check_rtl_assertions
def check_rtl_assertions(sim): """ Checks the values in sim to see if any registers assertions fail. :param sim: Simulation in which to check the assertions :return: None """ for (w, exp) in sim.block.rtl_assert_dict.items(): try: value = sim.inspect(w) if not value...
python
def check_rtl_assertions(sim): """ Checks the values in sim to see if any registers assertions fail. :param sim: Simulation in which to check the assertions :return: None """ for (w, exp) in sim.block.rtl_assert_dict.items(): try: value = sim.inspect(w) if not value...
[ "def", "check_rtl_assertions", "(", "sim", ")", ":", "for", "(", "w", ",", "exp", ")", "in", "sim", ".", "block", ".", "rtl_assert_dict", ".", "items", "(", ")", ":", "try", ":", "value", "=", "sim", ".", "inspect", "(", "w", ")", "if", "not", "v...
Checks the values in sim to see if any registers assertions fail. :param sim: Simulation in which to check the assertions :return: None
[ "Checks", "the", "values", "in", "sim", "to", "see", "if", "any", "registers", "assertions", "fail", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/helperfuncs.py#L93-L106
UCSBarchlab/PyRTL
pyrtl/helperfuncs.py
wirevector_list
def wirevector_list(names, bitwidth=None, wvtype=WireVector): """ Allocate and return a list of WireVectors. :param names: Names for the WireVectors. Can be a list or single comma/space-separated string :param bitwidth: The desired bitwidth for the resulting WireVectors. :param WireVector wvtype: Which...
python
def wirevector_list(names, bitwidth=None, wvtype=WireVector): """ Allocate and return a list of WireVectors. :param names: Names for the WireVectors. Can be a list or single comma/space-separated string :param bitwidth: The desired bitwidth for the resulting WireVectors. :param WireVector wvtype: Which...
[ "def", "wirevector_list", "(", "names", ",", "bitwidth", "=", "None", ",", "wvtype", "=", "WireVector", ")", ":", "if", "isinstance", "(", "names", ",", "str", ")", ":", "names", "=", "names", ".", "replace", "(", "','", ",", "' '", ")", ".", "split"...
Allocate and return a list of WireVectors. :param names: Names for the WireVectors. Can be a list or single comma/space-separated string :param bitwidth: The desired bitwidth for the resulting WireVectors. :param WireVector wvtype: Which WireVector type to create. :return: List of WireVectors. Add...
[ "Allocate", "and", "return", "a", "list", "of", "WireVectors", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/helperfuncs.py#L154-L197
UCSBarchlab/PyRTL
pyrtl/helperfuncs.py
val_to_signed_integer
def val_to_signed_integer(value, bitwidth): """ Return value as intrepreted as a signed integer under twos complement. :param value: a python integer holding the value to convert :param bitwidth: the length of the integer in bits to assume for conversion Given an unsigned integer (not a wirevector!) c...
python
def val_to_signed_integer(value, bitwidth): """ Return value as intrepreted as a signed integer under twos complement. :param value: a python integer holding the value to convert :param bitwidth: the length of the integer in bits to assume for conversion Given an unsigned integer (not a wirevector!) c...
[ "def", "val_to_signed_integer", "(", "value", ",", "bitwidth", ")", ":", "if", "isinstance", "(", "value", ",", "WireVector", ")", "or", "isinstance", "(", "bitwidth", ",", "WireVector", ")", ":", "raise", "PyrtlError", "(", "'inputs must not be wirevectors'", "...
Return value as intrepreted as a signed integer under twos complement. :param value: a python integer holding the value to convert :param bitwidth: the length of the integer in bits to assume for conversion Given an unsigned integer (not a wirevector!) covert that to a signed integer. This is useful ...
[ "Return", "value", "as", "intrepreted", "as", "a", "signed", "integer", "under", "twos", "complement", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/helperfuncs.py#L200-L223
UCSBarchlab/PyRTL
pyrtl/helperfuncs.py
formatted_str_to_val
def formatted_str_to_val(data, format, enum_set=None): """ Return an unsigned integer representation of the data given format specified. :param data: a string holding the value to convert :param format: a string holding a format which will be used to convert the data string :param enum_set: an iterable...
python
def formatted_str_to_val(data, format, enum_set=None): """ Return an unsigned integer representation of the data given format specified. :param data: a string holding the value to convert :param format: a string holding a format which will be used to convert the data string :param enum_set: an iterable...
[ "def", "formatted_str_to_val", "(", "data", ",", "format", ",", "enum_set", "=", "None", ")", ":", "type", "=", "format", "[", "0", "]", "bitwidth", "=", "int", "(", "format", "[", "1", ":", "]", ".", "split", "(", "'/'", ")", "[", "0", "]", ")",...
Return an unsigned integer representation of the data given format specified. :param data: a string holding the value to convert :param format: a string holding a format which will be used to convert the data string :param enum_set: an iterable of enums which are used as part of the converstion process ...
[ "Return", "an", "unsigned", "integer", "representation", "of", "the", "data", "given", "format", "specified", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/helperfuncs.py#L226-L274
UCSBarchlab/PyRTL
pyrtl/helperfuncs.py
val_to_formatted_str
def val_to_formatted_str(val, format, enum_set=None): """ Return a string representation of the value given format specified. :param val: a string holding an unsigned integer to convert :param format: a string holding a format which will be used to convert the data string :param enum_set: an iterable o...
python
def val_to_formatted_str(val, format, enum_set=None): """ Return a string representation of the value given format specified. :param val: a string holding an unsigned integer to convert :param format: a string holding a format which will be used to convert the data string :param enum_set: an iterable o...
[ "def", "val_to_formatted_str", "(", "val", ",", "format", ",", "enum_set", "=", "None", ")", ":", "type", "=", "format", "[", "0", "]", "bitwidth", "=", "int", "(", "format", "[", "1", ":", "]", ".", "split", "(", "'/'", ")", "[", "0", "]", ")", ...
Return a string representation of the value given format specified. :param val: a string holding an unsigned integer to convert :param format: a string holding a format which will be used to convert the data string :param enum_set: an iterable of enums which are used as part of the converstion process ...
[ "Return", "a", "string", "representation", "of", "the", "value", "given", "format", "specified", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/helperfuncs.py#L277-L323
UCSBarchlab/PyRTL
pyrtl/helperfuncs.py
_NetCount.shrank
def shrank(self, block=None, percent_diff=0, abs_diff=1): """ Returns whether a block has less nets than before :param Block block: block to check (if changed) :param Number percent_diff: percentage difference threshold :param int abs_diff: absolute difference threshold ...
python
def shrank(self, block=None, percent_diff=0, abs_diff=1): """ Returns whether a block has less nets than before :param Block block: block to check (if changed) :param Number percent_diff: percentage difference threshold :param int abs_diff: absolute difference threshold ...
[ "def", "shrank", "(", "self", ",", "block", "=", "None", ",", "percent_diff", "=", "0", ",", "abs_diff", "=", "1", ")", ":", "if", "block", "is", "None", ":", "block", "=", "self", ".", "block", "cur_nets", "=", "len", "(", "block", ".", "logic", ...
Returns whether a block has less nets than before :param Block block: block to check (if changed) :param Number percent_diff: percentage difference threshold :param int abs_diff: absolute difference threshold :return: boolean This function checks whether the change in the numbe...
[ "Returns", "whether", "a", "block", "has", "less", "nets", "than", "before" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/helperfuncs.py#L463-L482
UCSBarchlab/PyRTL
pyrtl/rtllib/adders.py
kogge_stone
def kogge_stone(a, b, cin=0): """ Creates a Kogge-Stone adder given two inputs :param WireVector a, b: The two WireVectors to add up (bitwidths don't need to match) :param cin: An optimal carry in WireVector or value :return: a Wirevector representing the output of the adder The Kogge-Stone ad...
python
def kogge_stone(a, b, cin=0): """ Creates a Kogge-Stone adder given two inputs :param WireVector a, b: The two WireVectors to add up (bitwidths don't need to match) :param cin: An optimal carry in WireVector or value :return: a Wirevector representing the output of the adder The Kogge-Stone ad...
[ "def", "kogge_stone", "(", "a", ",", "b", ",", "cin", "=", "0", ")", ":", "a", ",", "b", "=", "libutils", ".", "match_bitwidth", "(", "a", ",", "b", ")", "prop_orig", "=", "a", "^", "b", "prop_bits", "=", "[", "i", "for", "i", "in", "prop_orig"...
Creates a Kogge-Stone adder given two inputs :param WireVector a, b: The two WireVectors to add up (bitwidths don't need to match) :param cin: An optimal carry in WireVector or value :return: a Wirevector representing the output of the adder The Kogge-Stone adder is a fast tree-based adder with O(log(...
[ "Creates", "a", "Kogge", "-", "Stone", "adder", "given", "two", "inputs" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/adders.py#L6-L37
UCSBarchlab/PyRTL
pyrtl/rtllib/adders.py
carrysave_adder
def carrysave_adder(a, b, c, final_adder=ripple_add): """ Adds three wirevectors up in an efficient manner :param WireVector a, b, c : the three wires to add up :param function final_adder : The adder to use to do the final addition :return: a wirevector with length 2 longer than the largest input ...
python
def carrysave_adder(a, b, c, final_adder=ripple_add): """ Adds three wirevectors up in an efficient manner :param WireVector a, b, c : the three wires to add up :param function final_adder : The adder to use to do the final addition :return: a wirevector with length 2 longer than the largest input ...
[ "def", "carrysave_adder", "(", "a", ",", "b", ",", "c", ",", "final_adder", "=", "ripple_add", ")", ":", "a", ",", "b", ",", "c", "=", "libutils", ".", "match_bitwidth", "(", "a", ",", "b", ",", "c", ")", "partial_sum", "=", "a", "^", "b", "^", ...
Adds three wirevectors up in an efficient manner :param WireVector a, b, c : the three wires to add up :param function final_adder : The adder to use to do the final addition :return: a wirevector with length 2 longer than the largest input
[ "Adds", "three", "wirevectors", "up", "in", "an", "efficient", "manner", ":", "param", "WireVector", "a", "b", "c", ":", "the", "three", "wires", "to", "add", "up", ":", "param", "function", "final_adder", ":", "The", "adder", "to", "use", "to", "do", ...
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/adders.py#L84-L94
UCSBarchlab/PyRTL
pyrtl/rtllib/adders.py
cla_adder
def cla_adder(a, b, cin=0, la_unit_len=4): """ Carry Lookahead Adder :param int la_unit_len: the length of input that every unit processes A Carry LookAhead Adder is an adder that is faster than a ripple carry adder, as it calculates the carry bits faster. It is not as fast as a Kogge-Stone add...
python
def cla_adder(a, b, cin=0, la_unit_len=4): """ Carry Lookahead Adder :param int la_unit_len: the length of input that every unit processes A Carry LookAhead Adder is an adder that is faster than a ripple carry adder, as it calculates the carry bits faster. It is not as fast as a Kogge-Stone add...
[ "def", "cla_adder", "(", "a", ",", "b", ",", "cin", "=", "0", ",", "la_unit_len", "=", "4", ")", ":", "a", ",", "b", "=", "pyrtl", ".", "match_bitwidth", "(", "a", ",", "b", ")", "if", "len", "(", "a", ")", "<=", "la_unit_len", ":", "sum", ",...
Carry Lookahead Adder :param int la_unit_len: the length of input that every unit processes A Carry LookAhead Adder is an adder that is faster than a ripple carry adder, as it calculates the carry bits faster. It is not as fast as a Kogge-Stone adder, but uses less area.
[ "Carry", "Lookahead", "Adder", ":", "param", "int", "la_unit_len", ":", "the", "length", "of", "input", "that", "every", "unit", "processes" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/adders.py#L97-L113
UCSBarchlab/PyRTL
pyrtl/rtllib/adders.py
_cla_adder_unit
def _cla_adder_unit(a, b, cin): """ Carry generation and propogation signals will be calculated only using the inputs; their values don't rely on the sum. Every unit generates a cout signal which is used as cin for the next unit. """ gen = a & b prop = a ^ b assert(len(prop) == len(gen)...
python
def _cla_adder_unit(a, b, cin): """ Carry generation and propogation signals will be calculated only using the inputs; their values don't rely on the sum. Every unit generates a cout signal which is used as cin for the next unit. """ gen = a & b prop = a ^ b assert(len(prop) == len(gen)...
[ "def", "_cla_adder_unit", "(", "a", ",", "b", ",", "cin", ")", ":", "gen", "=", "a", "&", "b", "prop", "=", "a", "^", "b", "assert", "(", "len", "(", "prop", ")", "==", "len", "(", "gen", ")", ")", "carry", "=", "[", "gen", "[", "0", "]", ...
Carry generation and propogation signals will be calculated only using the inputs; their values don't rely on the sum. Every unit generates a cout signal which is used as cin for the next unit.
[ "Carry", "generation", "and", "propogation", "signals", "will", "be", "calculated", "only", "using", "the", "inputs", ";", "their", "values", "don", "t", "rely", "on", "the", "sum", ".", "Every", "unit", "generates", "a", "cout", "signal", "which", "is", "...
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/adders.py#L116-L137
UCSBarchlab/PyRTL
pyrtl/rtllib/adders.py
wallace_reducer
def wallace_reducer(wire_array_2, result_bitwidth, final_adder=kogge_stone): """ The reduction and final adding part of a dada tree. Useful for adding many numbers together The use of single bitwidth wires is to allow for additional flexibility :param [[Wirevector]] wire_array_2: An array of arrays of ...
python
def wallace_reducer(wire_array_2, result_bitwidth, final_adder=kogge_stone): """ The reduction and final adding part of a dada tree. Useful for adding many numbers together The use of single bitwidth wires is to allow for additional flexibility :param [[Wirevector]] wire_array_2: An array of arrays of ...
[ "def", "wallace_reducer", "(", "wire_array_2", ",", "result_bitwidth", ",", "final_adder", "=", "kogge_stone", ")", ":", "# verification that the wires are actually wirevectors of length 1", "for", "wire_set", "in", "wire_array_2", ":", "for", "a_wire", "in", "wire_set", ...
The reduction and final adding part of a dada tree. Useful for adding many numbers together The use of single bitwidth wires is to allow for additional flexibility :param [[Wirevector]] wire_array_2: An array of arrays of single bitwidth wirevectors :param int result_bitwidth: The bitwidth you want...
[ "The", "reduction", "and", "final", "adding", "part", "of", "a", "dada", "tree", ".", "Useful", "for", "adding", "many", "numbers", "together", "The", "use", "of", "single", "bitwidth", "wires", "is", "to", "allow", "for", "additional", "flexibility" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/adders.py#L140-L182
UCSBarchlab/PyRTL
pyrtl/rtllib/adders.py
dada_reducer
def dada_reducer(wire_array_2, result_bitwidth, final_adder=kogge_stone): """ The reduction and final adding part of a dada tree. Useful for adding many numbers together The use of single bitwidth wires is to allow for additional flexibility :param [[Wirevector]] wire_array_2: An array of arrays of sin...
python
def dada_reducer(wire_array_2, result_bitwidth, final_adder=kogge_stone): """ The reduction and final adding part of a dada tree. Useful for adding many numbers together The use of single bitwidth wires is to allow for additional flexibility :param [[Wirevector]] wire_array_2: An array of arrays of sin...
[ "def", "dada_reducer", "(", "wire_array_2", ",", "result_bitwidth", ",", "final_adder", "=", "kogge_stone", ")", ":", "import", "math", "# verification that the wires are actually wirevectors of length 1", "for", "wire_set", "in", "wire_array_2", ":", "for", "a_wire", "in...
The reduction and final adding part of a dada tree. Useful for adding many numbers together The use of single bitwidth wires is to allow for additional flexibility :param [[Wirevector]] wire_array_2: An array of arrays of single bitwidth wirevectors :param int result_bitwidth: The bitwidth you want...
[ "The", "reduction", "and", "final", "adding", "part", "of", "a", "dada", "tree", ".", "Useful", "for", "adding", "many", "numbers", "together", "The", "use", "of", "single", "bitwidth", "wires", "is", "to", "allow", "for", "additional", "flexibility" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/adders.py#L185-L237
UCSBarchlab/PyRTL
pyrtl/rtllib/adders.py
fast_group_adder
def fast_group_adder(wires_to_add, reducer=wallace_reducer, final_adder=kogge_stone): """ A generalization of the carry save adder, this is designed to add many numbers together in a both area and time efficient manner. Uses a tree reducer to achieve this performance :param [WireVector] wires_to_a...
python
def fast_group_adder(wires_to_add, reducer=wallace_reducer, final_adder=kogge_stone): """ A generalization of the carry save adder, this is designed to add many numbers together in a both area and time efficient manner. Uses a tree reducer to achieve this performance :param [WireVector] wires_to_a...
[ "def", "fast_group_adder", "(", "wires_to_add", ",", "reducer", "=", "wallace_reducer", ",", "final_adder", "=", "kogge_stone", ")", ":", "import", "math", "longest_wire_len", "=", "max", "(", "len", "(", "w", ")", "for", "w", "in", "wires_to_add", ")", "res...
A generalization of the carry save adder, this is designed to add many numbers together in a both area and time efficient manner. Uses a tree reducer to achieve this performance :param [WireVector] wires_to_add: an array of wirevectors to add :param reducer: the tree reducer to use :param final_ad...
[ "A", "generalization", "of", "the", "carry", "save", "adder", "this", "is", "designed", "to", "add", "many", "numbers", "together", "in", "a", "both", "area", "and", "time", "efficient", "manner", ".", "Uses", "a", "tree", "reducer", "to", "achieve", "this...
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/adders.py#L258-L282
UCSBarchlab/PyRTL
pyrtl/memory.py
MemBlock._build
def _build(self, addr, data, enable): """ Builds a write port. """ if self.max_write_ports is not None: self.write_ports += 1 if self.write_ports > self.max_write_ports: raise PyrtlError('maximum number of write ports (%d) exceeded' % ...
python
def _build(self, addr, data, enable): """ Builds a write port. """ if self.max_write_ports is not None: self.write_ports += 1 if self.write_ports > self.max_write_ports: raise PyrtlError('maximum number of write ports (%d) exceeded' % ...
[ "def", "_build", "(", "self", ",", "addr", ",", "data", ",", "enable", ")", ":", "if", "self", ".", "max_write_ports", "is", "not", "None", ":", "self", ".", "write_ports", "+=", "1", "if", "self", ".", "write_ports", ">", "self", ".", "max_write_ports...
Builds a write port.
[ "Builds", "a", "write", "port", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/memory.py#L236-L249
UCSBarchlab/PyRTL
pyrtl/rtllib/aes.py
AES.encryption
def encryption(self, plaintext, key): """ Builds a single cycle AES Encryption circuit :param WireVector plaintext: text to encrypt :param WireVector key: AES key to use to encrypt :return: a WireVector containing the ciphertext """ if len(plaintext) != self._ke...
python
def encryption(self, plaintext, key): """ Builds a single cycle AES Encryption circuit :param WireVector plaintext: text to encrypt :param WireVector key: AES key to use to encrypt :return: a WireVector containing the ciphertext """ if len(plaintext) != self._ke...
[ "def", "encryption", "(", "self", ",", "plaintext", ",", "key", ")", ":", "if", "len", "(", "plaintext", ")", "!=", "self", ".", "_key_len", ":", "raise", "pyrtl", ".", "PyrtlError", "(", "\"Ciphertext length is invalid\"", ")", "if", "len", "(", "key", ...
Builds a single cycle AES Encryption circuit :param WireVector plaintext: text to encrypt :param WireVector key: AES key to use to encrypt :return: a WireVector containing the ciphertext
[ "Builds", "a", "single", "cycle", "AES", "Encryption", "circuit" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/aes.py#L53-L76
UCSBarchlab/PyRTL
pyrtl/rtllib/aes.py
AES.encrypt_state_m
def encrypt_state_m(self, plaintext_in, key_in, reset): """ Builds a multiple cycle AES Encryption state machine circuit :param reset: a one bit signal telling the state machine to reset and accept the current plaintext and key :return ready, cipher_text: ready is a one bit si...
python
def encrypt_state_m(self, plaintext_in, key_in, reset): """ Builds a multiple cycle AES Encryption state machine circuit :param reset: a one bit signal telling the state machine to reset and accept the current plaintext and key :return ready, cipher_text: ready is a one bit si...
[ "def", "encrypt_state_m", "(", "self", ",", "plaintext_in", ",", "key_in", ",", "reset", ")", ":", "if", "len", "(", "key_in", ")", "!=", "len", "(", "plaintext_in", ")", ":", "raise", "pyrtl", ".", "PyrtlError", "(", "\"AES key and plaintext should be the sam...
Builds a multiple cycle AES Encryption state machine circuit :param reset: a one bit signal telling the state machine to reset and accept the current plaintext and key :return ready, cipher_text: ready is a one bit signal showing that the encryption result (cipher_text) has been cal...
[ "Builds", "a", "multiple", "cycle", "AES", "Encryption", "state", "machine", "circuit" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/aes.py#L78-L125
UCSBarchlab/PyRTL
pyrtl/rtllib/aes.py
AES.decryption
def decryption(self, ciphertext, key): """ Builds a single cycle AES Decryption circuit :param WireVector ciphertext: data to decrypt :param WireVector key: AES key to use to encrypt (AES is symmetric) :return: a WireVector containing the plaintext """ if len(cip...
python
def decryption(self, ciphertext, key): """ Builds a single cycle AES Decryption circuit :param WireVector ciphertext: data to decrypt :param WireVector key: AES key to use to encrypt (AES is symmetric) :return: a WireVector containing the plaintext """ if len(cip...
[ "def", "decryption", "(", "self", ",", "ciphertext", ",", "key", ")", ":", "if", "len", "(", "ciphertext", ")", "!=", "self", ".", "_key_len", ":", "raise", "pyrtl", ".", "PyrtlError", "(", "\"Ciphertext length is invalid\"", ")", "if", "len", "(", "key", ...
Builds a single cycle AES Decryption circuit :param WireVector ciphertext: data to decrypt :param WireVector key: AES key to use to encrypt (AES is symmetric) :return: a WireVector containing the plaintext
[ "Builds", "a", "single", "cycle", "AES", "Decryption", "circuit" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/aes.py#L127-L149
UCSBarchlab/PyRTL
pyrtl/rtllib/aes.py
AES.decryption_statem
def decryption_statem(self, ciphertext_in, key_in, reset): """ Builds a multiple cycle AES Decryption state machine circuit :param reset: a one bit signal telling the state machine to reset and accept the current plaintext and key :return ready, plain_text: ready is a one bit ...
python
def decryption_statem(self, ciphertext_in, key_in, reset): """ Builds a multiple cycle AES Decryption state machine circuit :param reset: a one bit signal telling the state machine to reset and accept the current plaintext and key :return ready, plain_text: ready is a one bit ...
[ "def", "decryption_statem", "(", "self", ",", "ciphertext_in", ",", "key_in", ",", "reset", ")", ":", "if", "len", "(", "key_in", ")", "!=", "len", "(", "ciphertext_in", ")", ":", "raise", "pyrtl", ".", "PyrtlError", "(", "\"AES key and ciphertext should be th...
Builds a multiple cycle AES Decryption state machine circuit :param reset: a one bit signal telling the state machine to reset and accept the current plaintext and key :return ready, plain_text: ready is a one bit signal showing that the decryption result (plain_text) has been calcu...
[ "Builds", "a", "multiple", "cycle", "AES", "Decryption", "state", "machine", "circuit" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/aes.py#L151-L205
UCSBarchlab/PyRTL
pyrtl/rtllib/aes.py
AES._g
def _g(self, word, key_expand_round): """ One-byte left circular rotation, substitution of each byte """ import numbers self._build_memories_if_not_exists() a = libutils.partition_wire(word, 8) sub = [self.sbox[a[index]] for index in (3, 0, 1, 2)] if isins...
python
def _g(self, word, key_expand_round): """ One-byte left circular rotation, substitution of each byte """ import numbers self._build_memories_if_not_exists() a = libutils.partition_wire(word, 8) sub = [self.sbox[a[index]] for index in (3, 0, 1, 2)] if isins...
[ "def", "_g", "(", "self", ",", "word", ",", "key_expand_round", ")", ":", "import", "numbers", "self", ".", "_build_memories_if_not_exists", "(", ")", "a", "=", "libutils", ".", "partition_wire", "(", "word", ",", "8", ")", "sub", "=", "[", "self", ".", ...
One-byte left circular rotation, substitution of each byte
[ "One", "-", "byte", "left", "circular", "rotation", "substitution", "of", "each", "byte" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/aes.py#L223-L236
usrlocalben/pydux
pydux/extend.py
extend
def extend(*args): """shallow dictionary merge Args: a: dict to extend b: dict to apply to a Returns: new instance of the same type as _a_, with _a_ and _b_ merged. """ if not args: return {} first = args[0] rest = args[1:] out = type(first)(first) ...
python
def extend(*args): """shallow dictionary merge Args: a: dict to extend b: dict to apply to a Returns: new instance of the same type as _a_, with _a_ and _b_ merged. """ if not args: return {} first = args[0] rest = args[1:] out = type(first)(first) ...
[ "def", "extend", "(", "*", "args", ")", ":", "if", "not", "args", ":", "return", "{", "}", "first", "=", "args", "[", "0", "]", "rest", "=", "args", "[", "1", ":", "]", "out", "=", "type", "(", "first", ")", "(", "first", ")", "for", "each", ...
shallow dictionary merge Args: a: dict to extend b: dict to apply to a Returns: new instance of the same type as _a_, with _a_ and _b_ merged.
[ "shallow", "dictionary", "merge" ]
train
https://github.com/usrlocalben/pydux/blob/943ca1c75357b9289f55f17ff2d997a66a3313a4/pydux/extend.py#L1-L19
UCSBarchlab/PyRTL
pyrtl/inputoutput.py
input_from_blif
def input_from_blif(blif, block=None, merge_io_vectors=True): """ Read an open blif file or string as input, updating the block appropriately Assumes the blif has been flattened and their is only a single module. Assumes that there is only one single shared clock and reset Assumes that output is genera...
python
def input_from_blif(blif, block=None, merge_io_vectors=True): """ Read an open blif file or string as input, updating the block appropriately Assumes the blif has been flattened and their is only a single module. Assumes that there is only one single shared clock and reset Assumes that output is genera...
[ "def", "input_from_blif", "(", "blif", ",", "block", "=", "None", ",", "merge_io_vectors", "=", "True", ")", ":", "import", "pyparsing", "import", "six", "from", "pyparsing", "import", "(", "Word", ",", "Literal", ",", "OneOrMore", ",", "ZeroOrMore", ",", ...
Read an open blif file or string as input, updating the block appropriately Assumes the blif has been flattened and their is only a single module. Assumes that there is only one single shared clock and reset Assumes that output is generated by Yosys with formals in a particular order Ignores reset sign...
[ "Read", "an", "open", "blif", "file", "or", "string", "as", "input", "updating", "the", "block", "appropriately" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/inputoutput.py#L26-L206
UCSBarchlab/PyRTL
pyrtl/inputoutput.py
output_to_firrtl
def output_to_firrtl(open_file, rom_blocks=None, block=None): """ Output the block as firrtl code to the output file. Output_to_firrtl(open_file, rom_block, block) If rom is intialized in pyrtl code, you can pass in the rom_blocks as a list [rom1, rom2, ...] """ block = working_block(block) f =...
python
def output_to_firrtl(open_file, rom_blocks=None, block=None): """ Output the block as firrtl code to the output file. Output_to_firrtl(open_file, rom_block, block) If rom is intialized in pyrtl code, you can pass in the rom_blocks as a list [rom1, rom2, ...] """ block = working_block(block) f =...
[ "def", "output_to_firrtl", "(", "open_file", ",", "rom_blocks", "=", "None", ",", "block", "=", "None", ")", ":", "block", "=", "working_block", "(", "block", ")", "f", "=", "open_file", "# write out all the implicit stuff", "f", ".", "write", "(", "\"circuit ...
Output the block as firrtl code to the output file. Output_to_firrtl(open_file, rom_block, block) If rom is intialized in pyrtl code, you can pass in the rom_blocks as a list [rom1, rom2, ...]
[ "Output", "the", "block", "as", "firrtl", "code", "to", "the", "output", "file", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/inputoutput.py#L215-L359
UCSBarchlab/PyRTL
pyrtl/inputoutput.py
_trivialgraph_default_namer
def _trivialgraph_default_namer(thing, is_edge=True): """ Returns a "good" string for thing in printed graphs. """ if is_edge: if thing.name is None or thing.name.startswith('tmp'): return '' else: return '/'.join([thing.name, str(len(thing))]) elif isinstance(thing, ...
python
def _trivialgraph_default_namer(thing, is_edge=True): """ Returns a "good" string for thing in printed graphs. """ if is_edge: if thing.name is None or thing.name.startswith('tmp'): return '' else: return '/'.join([thing.name, str(len(thing))]) elif isinstance(thing, ...
[ "def", "_trivialgraph_default_namer", "(", "thing", ",", "is_edge", "=", "True", ")", ":", "if", "is_edge", ":", "if", "thing", ".", "name", "is", "None", "or", "thing", ".", "name", ".", "startswith", "(", "'tmp'", ")", ":", "return", "''", "else", ":...
Returns a "good" string for thing in printed graphs.
[ "Returns", "a", "good", "string", "for", "thing", "in", "printed", "graphs", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/inputoutput.py#L362-L377
UCSBarchlab/PyRTL
pyrtl/inputoutput.py
net_graph
def net_graph(block=None, split_state=False): """ Return a graph representation of the current block. Graph has the following form: { node1: { nodeA: edge1A, nodeB: edge1B}, node2: { nodeB: edge2B, nodeC: edge2C}, ... } aka: edge = graph[source][dest] Each node can...
python
def net_graph(block=None, split_state=False): """ Return a graph representation of the current block. Graph has the following form: { node1: { nodeA: edge1A, nodeB: edge1B}, node2: { nodeB: edge2B, nodeC: edge2C}, ... } aka: edge = graph[source][dest] Each node can...
[ "def", "net_graph", "(", "block", "=", "None", ",", "split_state", "=", "False", ")", ":", "# FIXME: make it not try to add unused wires (issue #204)", "block", "=", "working_block", "(", "block", ")", "from", ".", "wire", "import", "Register", "# self.sanity_check()"...
Return a graph representation of the current block. Graph has the following form: { node1: { nodeA: edge1A, nodeB: edge1B}, node2: { nodeB: edge2B, nodeC: edge2C}, ... } aka: edge = graph[source][dest] Each node can be either a logic net or a WireVector (e.g. an Input,...
[ "Return", "a", "graph", "representation", "of", "the", "current", "block", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/inputoutput.py#L380-L435
UCSBarchlab/PyRTL
pyrtl/inputoutput.py
output_to_trivialgraph
def output_to_trivialgraph(file, namer=_trivialgraph_default_namer, block=None): """ Walk the block and output it in trivial graph format to the open file. """ graph = net_graph(block) node_index_map = {} # map node -> index # print the list of nodes for index, node in enumerate(graph): pr...
python
def output_to_trivialgraph(file, namer=_trivialgraph_default_namer, block=None): """ Walk the block and output it in trivial graph format to the open file. """ graph = net_graph(block) node_index_map = {} # map node -> index # print the list of nodes for index, node in enumerate(graph): pr...
[ "def", "output_to_trivialgraph", "(", "file", ",", "namer", "=", "_trivialgraph_default_namer", ",", "block", "=", "None", ")", ":", "graph", "=", "net_graph", "(", "block", ")", "node_index_map", "=", "{", "}", "# map node -> index", "# print the list of nodes", ...
Walk the block and output it in trivial graph format to the open file.
[ "Walk", "the", "block", "and", "output", "it", "in", "trivial", "graph", "format", "to", "the", "open", "file", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/inputoutput.py#L438-L456
UCSBarchlab/PyRTL
pyrtl/inputoutput.py
_graphviz_default_namer
def _graphviz_default_namer(thing, is_edge=True, is_to_splitmerge=False): """ Returns a "good" graphviz label for thing. """ if is_edge: if (thing.name is None or thing.name.startswith('tmp') or isinstance(thing, (Input, Output, Const, Register))): name = '' ...
python
def _graphviz_default_namer(thing, is_edge=True, is_to_splitmerge=False): """ Returns a "good" graphviz label for thing. """ if is_edge: if (thing.name is None or thing.name.startswith('tmp') or isinstance(thing, (Input, Output, Const, Register))): name = '' ...
[ "def", "_graphviz_default_namer", "(", "thing", ",", "is_edge", "=", "True", ",", "is_to_splitmerge", "=", "False", ")", ":", "if", "is_edge", ":", "if", "(", "thing", ".", "name", "is", "None", "or", "thing", ".", "name", ".", "startswith", "(", "'tmp'"...
Returns a "good" graphviz label for thing.
[ "Returns", "a", "good", "graphviz", "label", "for", "thing", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/inputoutput.py#L459-L502
UCSBarchlab/PyRTL
pyrtl/inputoutput.py
output_to_graphviz
def output_to_graphviz(file, namer=_graphviz_default_namer, block=None): """ Walk the block and output it in graphviz format to the open file. """ print(block_to_graphviz_string(block, namer), file=file)
python
def output_to_graphviz(file, namer=_graphviz_default_namer, block=None): """ Walk the block and output it in graphviz format to the open file. """ print(block_to_graphviz_string(block, namer), file=file)
[ "def", "output_to_graphviz", "(", "file", ",", "namer", "=", "_graphviz_default_namer", ",", "block", "=", "None", ")", ":", "print", "(", "block_to_graphviz_string", "(", "block", ",", "namer", ")", ",", "file", "=", "file", ")" ]
Walk the block and output it in graphviz format to the open file.
[ "Walk", "the", "block", "and", "output", "it", "in", "graphviz", "format", "to", "the", "open", "file", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/inputoutput.py#L505-L507
UCSBarchlab/PyRTL
pyrtl/inputoutput.py
block_to_graphviz_string
def block_to_graphviz_string(block=None, namer=_graphviz_default_namer): """ Return a graphviz string for the block. """ graph = net_graph(block, split_state=True) node_index_map = {} # map node -> index rstring = """\ digraph g {\n graph [splines="spline"]; n...
python
def block_to_graphviz_string(block=None, namer=_graphviz_default_namer): """ Return a graphviz string for the block. """ graph = net_graph(block, split_state=True) node_index_map = {} # map node -> index rstring = """\ digraph g {\n graph [splines="spline"]; n...
[ "def", "block_to_graphviz_string", "(", "block", "=", "None", ",", "namer", "=", "_graphviz_default_namer", ")", ":", "graph", "=", "net_graph", "(", "block", ",", "split_state", "=", "True", ")", "node_index_map", "=", "{", "}", "# map node -> index", "rstring"...
Return a graphviz string for the block.
[ "Return", "a", "graphviz", "string", "for", "the", "block", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/inputoutput.py#L510-L541
UCSBarchlab/PyRTL
pyrtl/inputoutput.py
block_to_svg
def block_to_svg(block=None): """ Return an SVG for the block. """ block = working_block(block) try: from graphviz import Source return Source(block_to_graphviz_string())._repr_svg_() except ImportError: raise PyrtlError('need graphviz installed (try "pip install graphviz")')
python
def block_to_svg(block=None): """ Return an SVG for the block. """ block = working_block(block) try: from graphviz import Source return Source(block_to_graphviz_string())._repr_svg_() except ImportError: raise PyrtlError('need graphviz installed (try "pip install graphviz")')
[ "def", "block_to_svg", "(", "block", "=", "None", ")", ":", "block", "=", "working_block", "(", "block", ")", "try", ":", "from", "graphviz", "import", "Source", "return", "Source", "(", "block_to_graphviz_string", "(", ")", ")", ".", "_repr_svg_", "(", ")...
Return an SVG for the block.
[ "Return", "an", "SVG", "for", "the", "block", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/inputoutput.py#L544-L551
UCSBarchlab/PyRTL
pyrtl/inputoutput.py
trace_to_html
def trace_to_html(simtrace, trace_list=None, sortkey=None): """ Return a HTML block showing the trace. """ from .simulation import SimulationTrace, _trace_sort_key if not isinstance(simtrace, SimulationTrace): raise PyrtlError('first arguement must be of type SimulationTrace') trace = simtrace...
python
def trace_to_html(simtrace, trace_list=None, sortkey=None): """ Return a HTML block showing the trace. """ from .simulation import SimulationTrace, _trace_sort_key if not isinstance(simtrace, SimulationTrace): raise PyrtlError('first arguement must be of type SimulationTrace') trace = simtrace...
[ "def", "trace_to_html", "(", "simtrace", ",", "trace_list", "=", "None", ",", "sortkey", "=", "None", ")", ":", "from", ".", "simulation", "import", "SimulationTrace", ",", "_trace_sort_key", "if", "not", "isinstance", "(", "simtrace", ",", "SimulationTrace", ...
Return a HTML block showing the trace.
[ "Return", "a", "HTML", "block", "showing", "the", "trace", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/inputoutput.py#L554-L607
usrlocalben/pydux
pydux/create_store.py
create_store
def create_store(reducer, initial_state=None, enhancer=None): """ redux in a nutshell. observable has been omitted. Args: reducer: root reducer function for the state tree initial_state: optional initial state data enhancer: optional enhancer function for middleware etc. R...
python
def create_store(reducer, initial_state=None, enhancer=None): """ redux in a nutshell. observable has been omitted. Args: reducer: root reducer function for the state tree initial_state: optional initial state data enhancer: optional enhancer function for middleware etc. R...
[ "def", "create_store", "(", "reducer", ",", "initial_state", "=", "None", ",", "enhancer", "=", "None", ")", ":", "if", "enhancer", "is", "not", "None", ":", "if", "not", "hasattr", "(", "enhancer", ",", "'__call__'", ")", ":", "raise", "TypeError", "(",...
redux in a nutshell. observable has been omitted. Args: reducer: root reducer function for the state tree initial_state: optional initial state data enhancer: optional enhancer function for middleware etc. Returns: a Pydux store
[ "redux", "in", "a", "nutshell", "." ]
train
https://github.com/usrlocalben/pydux/blob/943ca1c75357b9289f55f17ff2d997a66a3313a4/pydux/create_store.py#L30-L124