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
UCSBarchlab/PyRTL
pyrtl/core.py
_get_useful_callpoint_name
def _get_useful_callpoint_name(): """ Attempts to find the lowest user-level call into the pyrtl module :return (string, int) or None: the file name and line number respectively This function walks back the current frame stack attempting to find the first frame that is not part of the pyrtl module. Th...
python
def _get_useful_callpoint_name(): """ Attempts to find the lowest user-level call into the pyrtl module :return (string, int) or None: the file name and line number respectively This function walks back the current frame stack attempting to find the first frame that is not part of the pyrtl module. Th...
[ "def", "_get_useful_callpoint_name", "(", ")", ":", "if", "not", "_setting_slower_but_more_descriptive_tmps", ":", "return", "None", "import", "inspect", "loc", "=", "None", "frame_stack", "=", "inspect", ".", "stack", "(", ")", "try", ":", "for", "frame", "in",...
Attempts to find the lowest user-level call into the pyrtl module :return (string, int) or None: the file name and line number respectively This function walks back the current frame stack attempting to find the first frame that is not part of the pyrtl module. The filename (stripped of path and .py e...
[ "Attempts", "to", "find", "the", "lowest", "user", "-", "level", "call", "into", "the", "pyrtl", "module", ":", "return", "(", "string", "int", ")", "or", "None", ":", "the", "file", "name", "and", "line", "number", "respectively" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L614-L644
UCSBarchlab/PyRTL
pyrtl/core.py
set_debug_mode
def set_debug_mode(debug=True): """ Set the global debug mode. """ global debug_mode global _setting_keep_wirevector_call_stack global _setting_slower_but_more_descriptive_tmps debug_mode = debug _setting_keep_wirevector_call_stack = debug _setting_slower_but_more_descriptive_tmps = debug
python
def set_debug_mode(debug=True): """ Set the global debug mode. """ global debug_mode global _setting_keep_wirevector_call_stack global _setting_slower_but_more_descriptive_tmps debug_mode = debug _setting_keep_wirevector_call_stack = debug _setting_slower_but_more_descriptive_tmps = debug
[ "def", "set_debug_mode", "(", "debug", "=", "True", ")", ":", "global", "debug_mode", "global", "_setting_keep_wirevector_call_stack", "global", "_setting_slower_but_more_descriptive_tmps", "debug_mode", "=", "debug", "_setting_keep_wirevector_call_stack", "=", "debug", "_set...
Set the global debug mode.
[ "Set", "the", "global", "debug", "mode", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L699-L706
UCSBarchlab/PyRTL
pyrtl/core.py
Block.add_wirevector
def add_wirevector(self, wirevector): """ Add a wirevector object to the block.""" self.sanity_check_wirevector(wirevector) self.wirevector_set.add(wirevector) self.wirevector_by_name[wirevector.name] = wirevector
python
def add_wirevector(self, wirevector): """ Add a wirevector object to the block.""" self.sanity_check_wirevector(wirevector) self.wirevector_set.add(wirevector) self.wirevector_by_name[wirevector.name] = wirevector
[ "def", "add_wirevector", "(", "self", ",", "wirevector", ")", ":", "self", ".", "sanity_check_wirevector", "(", "wirevector", ")", "self", ".", "wirevector_set", ".", "add", "(", "wirevector", ")", "self", ".", "wirevector_by_name", "[", "wirevector", ".", "na...
Add a wirevector object to the block.
[ "Add", "a", "wirevector", "object", "to", "the", "block", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L224-L228
UCSBarchlab/PyRTL
pyrtl/core.py
Block.remove_wirevector
def remove_wirevector(self, wirevector): """ Remove a wirevector object to the block.""" self.wirevector_set.remove(wirevector) del self.wirevector_by_name[wirevector.name]
python
def remove_wirevector(self, wirevector): """ Remove a wirevector object to the block.""" self.wirevector_set.remove(wirevector) del self.wirevector_by_name[wirevector.name]
[ "def", "remove_wirevector", "(", "self", ",", "wirevector", ")", ":", "self", ".", "wirevector_set", ".", "remove", "(", "wirevector", ")", "del", "self", ".", "wirevector_by_name", "[", "wirevector", ".", "name", "]" ]
Remove a wirevector object to the block.
[ "Remove", "a", "wirevector", "object", "to", "the", "block", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L230-L233
UCSBarchlab/PyRTL
pyrtl/core.py
Block.add_net
def add_net(self, net): """ Add a net to the logic of the block. The passed net, which must be of type LogicNet, is checked and then added to the block. No wires are added by this member, they must be added seperately with add_wirevector.""" self.sanity_check_net(net) ...
python
def add_net(self, net): """ Add a net to the logic of the block. The passed net, which must be of type LogicNet, is checked and then added to the block. No wires are added by this member, they must be added seperately with add_wirevector.""" self.sanity_check_net(net) ...
[ "def", "add_net", "(", "self", ",", "net", ")", ":", "self", ".", "sanity_check_net", "(", "net", ")", "self", ".", "logic", ".", "add", "(", "net", ")" ]
Add a net to the logic of the block. The passed net, which must be of type LogicNet, is checked and then added to the block. No wires are added by this member, they must be added seperately with add_wirevector.
[ "Add", "a", "net", "to", "the", "logic", "of", "the", "block", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L235-L243
UCSBarchlab/PyRTL
pyrtl/core.py
Block.wirevector_subset
def wirevector_subset(self, cls=None, exclude=tuple()): """Return set of wirevectors, filtered by the type or tuple of types provided as cls. If no cls is specified, the full set of wirevectors associated with the Block are returned. If cls is a single type, or a tuple of types, only those wir...
python
def wirevector_subset(self, cls=None, exclude=tuple()): """Return set of wirevectors, filtered by the type or tuple of types provided as cls. If no cls is specified, the full set of wirevectors associated with the Block are returned. If cls is a single type, or a tuple of types, only those wir...
[ "def", "wirevector_subset", "(", "self", ",", "cls", "=", "None", ",", "exclude", "=", "tuple", "(", ")", ")", ":", "if", "cls", "is", "None", ":", "initial_set", "=", "self", ".", "wirevector_set", "else", ":", "initial_set", "=", "(", "x", "for", "...
Return set of wirevectors, filtered by the type or tuple of types provided as cls. If no cls is specified, the full set of wirevectors associated with the Block are returned. If cls is a single type, or a tuple of types, only those wirevectors of the matching types will be returned. This is h...
[ "Return", "set", "of", "wirevectors", "filtered", "by", "the", "type", "or", "tuple", "of", "types", "provided", "as", "cls", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L245-L259
UCSBarchlab/PyRTL
pyrtl/core.py
Block.logic_subset
def logic_subset(self, op=None): """Return set of logicnets, filtered by the type(s) of logic op provided as op. If no op is specified, the full set of logicnets associated with the Block are returned. This is helpful for getting all memories of a block for example.""" if op is None: ...
python
def logic_subset(self, op=None): """Return set of logicnets, filtered by the type(s) of logic op provided as op. If no op is specified, the full set of logicnets associated with the Block are returned. This is helpful for getting all memories of a block for example.""" if op is None: ...
[ "def", "logic_subset", "(", "self", ",", "op", "=", "None", ")", ":", "if", "op", "is", "None", ":", "return", "self", ".", "logic", "else", ":", "return", "set", "(", "x", "for", "x", "in", "self", ".", "logic", "if", "x", ".", "op", "in", "op...
Return set of logicnets, filtered by the type(s) of logic op provided as op. If no op is specified, the full set of logicnets associated with the Block are returned. This is helpful for getting all memories of a block for example.
[ "Return", "set", "of", "logicnets", "filtered", "by", "the", "type", "(", "s", ")", "of", "logic", "op", "provided", "as", "op", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L261-L269
UCSBarchlab/PyRTL
pyrtl/core.py
Block.get_wirevector_by_name
def get_wirevector_by_name(self, name, strict=False): """Return the wirevector matching name. By fallthrough, if a matching wirevector cannot be found the value None is returned. However, if the argument strict is set to True, then this will instead throw a PyrtlError when no match is ...
python
def get_wirevector_by_name(self, name, strict=False): """Return the wirevector matching name. By fallthrough, if a matching wirevector cannot be found the value None is returned. However, if the argument strict is set to True, then this will instead throw a PyrtlError when no match is ...
[ "def", "get_wirevector_by_name", "(", "self", ",", "name", ",", "strict", "=", "False", ")", ":", "if", "name", "in", "self", ".", "wirevector_by_name", ":", "return", "self", ".", "wirevector_by_name", "[", "name", "]", "elif", "strict", ":", "raise", "Py...
Return the wirevector matching name. By fallthrough, if a matching wirevector cannot be found the value None is returned. However, if the argument strict is set to True, then this will instead throw a PyrtlError when no match is found.
[ "Return", "the", "wirevector", "matching", "name", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L271-L282
UCSBarchlab/PyRTL
pyrtl/core.py
Block.net_connections
def net_connections(self, include_virtual_nodes=False): """ Returns a representation of the current block useful for creating a graph. :param include_virtual_nodes: if enabled, the wire itself will be used to signal an external source or sink (such as the source for an Input net). I...
python
def net_connections(self, include_virtual_nodes=False): """ Returns a representation of the current block useful for creating a graph. :param include_virtual_nodes: if enabled, the wire itself will be used to signal an external source or sink (such as the source for an Input net). I...
[ "def", "net_connections", "(", "self", ",", "include_virtual_nodes", "=", "False", ")", ":", "src_list", "=", "{", "}", "dst_list", "=", "{", "}", "def", "add_wire_src", "(", "edge", ",", "node", ")", ":", "if", "edge", "in", "src_list", ":", "raise", ...
Returns a representation of the current block useful for creating a graph. :param include_virtual_nodes: if enabled, the wire itself will be used to signal an external source or sink (such as the source for an Input net). If disabled, these nodes will be excluded from the adjacency dictiona...
[ "Returns", "a", "representation", "of", "the", "current", "block", "useful", "for", "creating", "a", "graph", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L284-L332
UCSBarchlab/PyRTL
pyrtl/core.py
Block.sanity_check
def sanity_check(self): """ Check block and throw PyrtlError or PyrtlInternalError if there is an issue. Should not modify anything, only check data structures to make sure they have been built according to the assumptions stated in the Block comments.""" # TODO: check that the wirevec...
python
def sanity_check(self): """ Check block and throw PyrtlError or PyrtlInternalError if there is an issue. Should not modify anything, only check data structures to make sure they have been built according to the assumptions stated in the Block comments.""" # TODO: check that the wirevec...
[ "def", "sanity_check", "(", "self", ")", ":", "# TODO: check that the wirevector_by_name is sane", "from", ".", "wire", "import", "Input", ",", "Const", ",", "Output", "from", ".", "helperfuncs", "import", "get_stack", ",", "get_stacks", "# check for valid LogicNets (an...
Check block and throw PyrtlError or PyrtlInternalError if there is an issue. Should not modify anything, only check data structures to make sure they have been built according to the assumptions stated in the Block comments.
[ "Check", "block", "and", "throw", "PyrtlError", "or", "PyrtlInternalError", "if", "there", "is", "an", "issue", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L373-L441
UCSBarchlab/PyRTL
pyrtl/core.py
Block.sanity_check_memory_sync
def sanity_check_memory_sync(self, wire_src_dict=None): """ Check that all memories are synchronous unless explicitly specified as async. While the semantics of 'm' memories reads is asynchronous, if you want your design to use a block ram (on an FPGA or otherwise) you want to make sure the ind...
python
def sanity_check_memory_sync(self, wire_src_dict=None): """ Check that all memories are synchronous unless explicitly specified as async. While the semantics of 'm' memories reads is asynchronous, if you want your design to use a block ram (on an FPGA or otherwise) you want to make sure the ind...
[ "def", "sanity_check_memory_sync", "(", "self", ",", "wire_src_dict", "=", "None", ")", ":", "sync_mems", "=", "set", "(", "m", "for", "m", "in", "self", ".", "logic_subset", "(", "'m'", ")", "if", "not", "m", ".", "op_param", "[", "1", "]", ".", "as...
Check that all memories are synchronous unless explicitly specified as async. While the semantics of 'm' memories reads is asynchronous, if you want your design to use a block ram (on an FPGA or otherwise) you want to make sure the index is available at the beginning of the clock edge. This ch...
[ "Check", "that", "all", "memories", "are", "synchronous", "unless", "explicitly", "specified", "as", "async", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L443-L477
UCSBarchlab/PyRTL
pyrtl/core.py
Block.sanity_check_wirevector
def sanity_check_wirevector(self, w): """ Check that w is a valid wirevector type. """ from .wire import WireVector if not isinstance(w, WireVector): raise PyrtlError( 'error attempting to pass an input of type "%s" ' 'instead of WireVector' % type(w))
python
def sanity_check_wirevector(self, w): """ Check that w is a valid wirevector type. """ from .wire import WireVector if not isinstance(w, WireVector): raise PyrtlError( 'error attempting to pass an input of type "%s" ' 'instead of WireVector' % type(w))
[ "def", "sanity_check_wirevector", "(", "self", ",", "w", ")", ":", "from", ".", "wire", "import", "WireVector", "if", "not", "isinstance", "(", "w", ",", "WireVector", ")", ":", "raise", "PyrtlError", "(", "'error attempting to pass an input of type \"%s\" '", "'i...
Check that w is a valid wirevector type.
[ "Check", "that", "w", "is", "a", "valid", "wirevector", "type", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L479-L485
UCSBarchlab/PyRTL
pyrtl/core.py
Block.sanity_check_net
def sanity_check_net(self, net): """ Check that net is a valid LogicNet. """ from .wire import Input, Output, Const from .memory import _MemReadBase # general sanity checks that apply to all operations if not isinstance(net, LogicNet): raise PyrtlInternalError('error...
python
def sanity_check_net(self, net): """ Check that net is a valid LogicNet. """ from .wire import Input, Output, Const from .memory import _MemReadBase # general sanity checks that apply to all operations if not isinstance(net, LogicNet): raise PyrtlInternalError('error...
[ "def", "sanity_check_net", "(", "self", ",", "net", ")", ":", "from", ".", "wire", "import", "Input", ",", "Output", ",", "Const", "from", ".", "memory", "import", "_MemReadBase", "# general sanity checks that apply to all operations", "if", "not", "isinstance", "...
Check that net is a valid LogicNet.
[ "Check", "that", "net", "is", "a", "valid", "LogicNet", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L487-L580
UCSBarchlab/PyRTL
pyrtl/core.py
_NameSanitizer.make_valid_string
def make_valid_string(self, string=''): """ Inputting a value for the first time """ if not self.is_valid_str(string): if string in self.val_map and not self.allow_dups: raise IndexError("Value {} has already been given to the sanitizer".format(string)) internal_n...
python
def make_valid_string(self, string=''): """ Inputting a value for the first time """ if not self.is_valid_str(string): if string in self.val_map and not self.allow_dups: raise IndexError("Value {} has already been given to the sanitizer".format(string)) internal_n...
[ "def", "make_valid_string", "(", "self", ",", "string", "=", "''", ")", ":", "if", "not", "self", ".", "is_valid_str", "(", "string", ")", ":", "if", "string", "in", "self", ".", "val_map", "and", "not", "self", ".", "allow_dups", ":", "raise", "IndexE...
Inputting a value for the first time
[ "Inputting", "a", "value", "for", "the", "first", "time" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/core.py#L759-L770
UCSBarchlab/PyRTL
pyrtl/rtllib/libutils.py
str_to_int_array
def str_to_int_array(string, base=16): """ Converts a string to an array of integer values according to the base specified (int numbers must be whitespace delimited).\n Example: "13 a3 3c" => [0x13, 0xa3, 0x3c] :return: [int] """ int_strings = string.split() return [int(int_str, base) ...
python
def str_to_int_array(string, base=16): """ Converts a string to an array of integer values according to the base specified (int numbers must be whitespace delimited).\n Example: "13 a3 3c" => [0x13, 0xa3, 0x3c] :return: [int] """ int_strings = string.split() return [int(int_str, base) ...
[ "def", "str_to_int_array", "(", "string", ",", "base", "=", "16", ")", ":", "int_strings", "=", "string", ".", "split", "(", ")", "return", "[", "int", "(", "int_str", ",", "base", ")", "for", "int_str", "in", "int_strings", "]" ]
Converts a string to an array of integer values according to the base specified (int numbers must be whitespace delimited).\n Example: "13 a3 3c" => [0x13, 0xa3, 0x3c] :return: [int]
[ "Converts", "a", "string", "to", "an", "array", "of", "integer", "values", "according", "to", "the", "base", "specified", "(", "int", "numbers", "must", "be", "whitespace", "delimited", ")", ".", "\\", "n", "Example", ":", "13", "a3", "3c", "=", ">", "...
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/libutils.py#L23-L33
UCSBarchlab/PyRTL
pyrtl/rtllib/libutils.py
twos_comp_repr
def twos_comp_repr(val, bitwidth): """ Converts a value to it's two's-complement (positive) integer representation using a given bitwidth (only converts the value if it is negative). For use with Simulation.step() etc. in passing negative numbers, which it does not accept """ correctbw = abs(val...
python
def twos_comp_repr(val, bitwidth): """ Converts a value to it's two's-complement (positive) integer representation using a given bitwidth (only converts the value if it is negative). For use with Simulation.step() etc. in passing negative numbers, which it does not accept """ correctbw = abs(val...
[ "def", "twos_comp_repr", "(", "val", ",", "bitwidth", ")", ":", "correctbw", "=", "abs", "(", "val", ")", ".", "bit_length", "(", ")", "+", "1", "if", "bitwidth", "<", "correctbw", ":", "raise", "pyrtl", ".", "PyrtlError", "(", "\"please choose a larger ta...
Converts a value to it's two's-complement (positive) integer representation using a given bitwidth (only converts the value if it is negative). For use with Simulation.step() etc. in passing negative numbers, which it does not accept
[ "Converts", "a", "value", "to", "it", "s", "two", "s", "-", "complement", "(", "positive", ")", "integer", "representation", "using", "a", "given", "bitwidth", "(", "only", "converts", "the", "value", "if", "it", "is", "negative", ")", ".", "For", "use",...
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/libutils.py#L36-L48
UCSBarchlab/PyRTL
pyrtl/rtllib/libutils.py
rev_twos_comp_repr
def rev_twos_comp_repr(val, bitwidth): """ Takes a two's-complement represented value and converts it to a signed integer based on the provided bitwidth. For use with Simulation.inspect() etc. when expecting negative numbers, which it does not recognize """ valbl = val.bit_length() if bi...
python
def rev_twos_comp_repr(val, bitwidth): """ Takes a two's-complement represented value and converts it to a signed integer based on the provided bitwidth. For use with Simulation.inspect() etc. when expecting negative numbers, which it does not recognize """ valbl = val.bit_length() if bi...
[ "def", "rev_twos_comp_repr", "(", "val", ",", "bitwidth", ")", ":", "valbl", "=", "val", ".", "bit_length", "(", ")", "if", "bitwidth", "<", "val", ".", "bit_length", "(", ")", "or", "val", "==", "2", "**", "(", "bitwidth", "-", "1", ")", ":", "rai...
Takes a two's-complement represented value and converts it to a signed integer based on the provided bitwidth. For use with Simulation.inspect() etc. when expecting negative numbers, which it does not recognize
[ "Takes", "a", "two", "s", "-", "complement", "represented", "value", "and", "converts", "it", "to", "a", "signed", "integer", "based", "on", "the", "provided", "bitwidth", ".", "For", "use", "with", "Simulation", ".", "inspect", "()", "etc", ".", "when", ...
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/libutils.py#L51-L64
UCSBarchlab/PyRTL
pyrtl/rtllib/libutils.py
_shifted_reg_next
def _shifted_reg_next(reg, direct, num=1): """ Creates a shifted 'next' property for shifted (left or right) register.\n Use: `myReg.next = shifted_reg_next(myReg, 'l', 4)` :param string direct: direction of shift, either 'l' or 'r' :param int num: number of shifts :return: Register containing ...
python
def _shifted_reg_next(reg, direct, num=1): """ Creates a shifted 'next' property for shifted (left or right) register.\n Use: `myReg.next = shifted_reg_next(myReg, 'l', 4)` :param string direct: direction of shift, either 'l' or 'r' :param int num: number of shifts :return: Register containing ...
[ "def", "_shifted_reg_next", "(", "reg", ",", "direct", ",", "num", "=", "1", ")", ":", "if", "direct", "==", "'l'", ":", "if", "num", ">=", "len", "(", "reg", ")", ":", "return", "0", "else", ":", "return", "pyrtl", ".", "concat", "(", "reg", ","...
Creates a shifted 'next' property for shifted (left or right) register.\n Use: `myReg.next = shifted_reg_next(myReg, 'l', 4)` :param string direct: direction of shift, either 'l' or 'r' :param int num: number of shifts :return: Register containing reg's (shifted) next state
[ "Creates", "a", "shifted", "next", "property", "for", "shifted", "(", "left", "or", "right", ")", "register", ".", "\\", "n", "Use", ":", "myReg", ".", "next", "=", "shifted_reg_next", "(", "myReg", "l", "4", ")" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/libutils.py#L67-L88
UCSBarchlab/PyRTL
pyrtl/passes.py
optimize
def optimize(update_working_block=True, block=None, skip_sanity_check=False): """ Return an optimized version of a synthesized hardware block. :param Boolean update_working_block: Don't copy the block and optimize the new block :param Block block: the block to optimize (defaults to working block) ...
python
def optimize(update_working_block=True, block=None, skip_sanity_check=False): """ Return an optimized version of a synthesized hardware block. :param Boolean update_working_block: Don't copy the block and optimize the new block :param Block block: the block to optimize (defaults to working block) ...
[ "def", "optimize", "(", "update_working_block", "=", "True", ",", "block", "=", "None", ",", "skip_sanity_check", "=", "False", ")", ":", "block", "=", "working_block", "(", "block", ")", "if", "not", "update_working_block", ":", "block", "=", "copy_block", ...
Return an optimized version of a synthesized hardware block. :param Boolean update_working_block: Don't copy the block and optimize the new block :param Block block: the block to optimize (defaults to working block) Note: optimize works on all hardware designs, both synthesized and non synthesized
[ "Return", "an", "optimized", "version", "of", "a", "synthesized", "hardware", "block", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/passes.py#L28-L52
UCSBarchlab/PyRTL
pyrtl/passes.py
_remove_wire_nets
def _remove_wire_nets(block): """ Remove all wire nodes from the block. """ wire_src_dict = _ProducerList() wire_removal_set = set() # set of all wirevectors to be removed # one pass to build the map of value producers and # all of the nets and wires to be removed for net in block.logic: ...
python
def _remove_wire_nets(block): """ Remove all wire nodes from the block. """ wire_src_dict = _ProducerList() wire_removal_set = set() # set of all wirevectors to be removed # one pass to build the map of value producers and # all of the nets and wires to be removed for net in block.logic: ...
[ "def", "_remove_wire_nets", "(", "block", ")", ":", "wire_src_dict", "=", "_ProducerList", "(", ")", "wire_removal_set", "=", "set", "(", ")", "# set of all wirevectors to be removed", "# one pass to build the map of value producers and", "# all of the nets and wires to be remove...
Remove all wire nodes from the block.
[ "Remove", "all", "wire", "nodes", "from", "the", "block", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/passes.py#L74-L102
UCSBarchlab/PyRTL
pyrtl/passes.py
constant_propagation
def constant_propagation(block, silence_unexpected_net_warnings=False): """ Removes excess constants in the block. Note on resulting block: The output of the block can have wirevectors that are driven but not listened to. This is to be expected. These are to be removed by the _remove_unlistened_net...
python
def constant_propagation(block, silence_unexpected_net_warnings=False): """ Removes excess constants in the block. Note on resulting block: The output of the block can have wirevectors that are driven but not listened to. This is to be expected. These are to be removed by the _remove_unlistened_net...
[ "def", "constant_propagation", "(", "block", ",", "silence_unexpected_net_warnings", "=", "False", ")", ":", "net_count", "=", "_NetCount", "(", "block", ")", "while", "net_count", ".", "shrinking", "(", ")", ":", "_constant_prop_pass", "(", "block", ",", "silen...
Removes excess constants in the block. Note on resulting block: The output of the block can have wirevectors that are driven but not listened to. This is to be expected. These are to be removed by the _remove_unlistened_nets function
[ "Removes", "excess", "constants", "in", "the", "block", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/passes.py#L105-L115
UCSBarchlab/PyRTL
pyrtl/passes.py
_constant_prop_pass
def _constant_prop_pass(block, silence_unexpected_net_warnings=False): """ Does one constant propagation pass """ valid_net_ops = '~&|^nrwcsm@' no_optimization_ops = 'wcsm@' one_var_ops = { '~': lambda x: 1-x, 'r': lambda x: x # This is only valid for constant folding purposes } ...
python
def _constant_prop_pass(block, silence_unexpected_net_warnings=False): """ Does one constant propagation pass """ valid_net_ops = '~&|^nrwcsm@' no_optimization_ops = 'wcsm@' one_var_ops = { '~': lambda x: 1-x, 'r': lambda x: x # This is only valid for constant folding purposes } ...
[ "def", "_constant_prop_pass", "(", "block", ",", "silence_unexpected_net_warnings", "=", "False", ")", ":", "valid_net_ops", "=", "'~&|^nrwcsm@'", "no_optimization_ops", "=", "'wcsm@'", "one_var_ops", "=", "{", "'~'", ":", "lambda", "x", ":", "1", "-", "x", ",",...
Does one constant propagation pass
[ "Does", "one", "constant", "propagation", "pass" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/passes.py#L118-L215
UCSBarchlab/PyRTL
pyrtl/passes.py
common_subexp_elimination
def common_subexp_elimination(block=None, abs_thresh=1, percent_thresh=0): """ Common Subexpression Elimination for PyRTL blocks :param block: the block to run the subexpression elimination on :param abs_thresh: absolute threshold for stopping optimization :param percent_thresh: percent threshold f...
python
def common_subexp_elimination(block=None, abs_thresh=1, percent_thresh=0): """ Common Subexpression Elimination for PyRTL blocks :param block: the block to run the subexpression elimination on :param abs_thresh: absolute threshold for stopping optimization :param percent_thresh: percent threshold f...
[ "def", "common_subexp_elimination", "(", "block", "=", "None", ",", "abs_thresh", "=", "1", ",", "percent_thresh", "=", "0", ")", ":", "block", "=", "working_block", "(", "block", ")", "net_count", "=", "_NetCount", "(", "block", ")", "while", "net_count", ...
Common Subexpression Elimination for PyRTL blocks :param block: the block to run the subexpression elimination on :param abs_thresh: absolute threshold for stopping optimization :param percent_thresh: percent threshold for stopping optimization
[ "Common", "Subexpression", "Elimination", "for", "PyRTL", "blocks" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/passes.py#L218-L231
UCSBarchlab/PyRTL
pyrtl/passes.py
_remove_unlistened_nets
def _remove_unlistened_nets(block): """ Removes all nets that are not connected to an output wirevector """ listened_nets = set() listened_wires = set() prev_listened_net_count = 0 def add_to_listened(net): listened_nets.add(net) listened_wires.update(net.args) for a_net i...
python
def _remove_unlistened_nets(block): """ Removes all nets that are not connected to an output wirevector """ listened_nets = set() listened_wires = set() prev_listened_net_count = 0 def add_to_listened(net): listened_nets.add(net) listened_wires.update(net.args) for a_net i...
[ "def", "_remove_unlistened_nets", "(", "block", ")", ":", "listened_nets", "=", "set", "(", ")", "listened_wires", "=", "set", "(", ")", "prev_listened_net_count", "=", "0", "def", "add_to_listened", "(", "net", ")", ":", "listened_nets", ".", "add", "(", "n...
Removes all nets that are not connected to an output wirevector
[ "Removes", "all", "nets", "that", "are", "not", "connected", "to", "an", "output", "wirevector" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/passes.py#L299-L325
UCSBarchlab/PyRTL
pyrtl/passes.py
_remove_unused_wires
def _remove_unused_wires(block, keep_inputs=True): """ Removes all unconnected wires from a block""" valid_wires = set() for logic_net in block.logic: valid_wires.update(logic_net.args, logic_net.dests) wire_removal_set = block.wirevector_set.difference(valid_wires) for removed_wire in wire...
python
def _remove_unused_wires(block, keep_inputs=True): """ Removes all unconnected wires from a block""" valid_wires = set() for logic_net in block.logic: valid_wires.update(logic_net.args, logic_net.dests) wire_removal_set = block.wirevector_set.difference(valid_wires) for removed_wire in wire...
[ "def", "_remove_unused_wires", "(", "block", ",", "keep_inputs", "=", "True", ")", ":", "valid_wires", "=", "set", "(", ")", "for", "logic_net", "in", "block", ".", "logic", ":", "valid_wires", ".", "update", "(", "logic_net", ".", "args", ",", "logic_net"...
Removes all unconnected wires from a block
[ "Removes", "all", "unconnected", "wires", "from", "a", "block" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/passes.py#L328-L346
UCSBarchlab/PyRTL
pyrtl/passes.py
synthesize
def synthesize(update_working_block=True, block=None): """ Lower the design to just single-bit "and", "or", and "not" gates. :param update_working_block: Boolean specifying if working block update :param block: The block you want to synthesize :return: The newly synthesized block (of type PostSynthesis...
python
def synthesize(update_working_block=True, block=None): """ Lower the design to just single-bit "and", "or", and "not" gates. :param update_working_block: Boolean specifying if working block update :param block: The block you want to synthesize :return: The newly synthesized block (of type PostSynthesis...
[ "def", "synthesize", "(", "update_working_block", "=", "True", ",", "block", "=", "None", ")", ":", "block_pre", "=", "working_block", "(", "block", ")", "block_pre", ".", "sanity_check", "(", ")", "# before going further, make sure that pressynth is valid", "block_in...
Lower the design to just single-bit "and", "or", and "not" gates. :param update_working_block: Boolean specifying if working block update :param block: The block you want to synthesize :return: The newly synthesized block (of type PostSynthesisBlock). Takes as input a block (default to working block) ...
[ "Lower", "the", "design", "to", "just", "single", "-", "bit", "and", "or", "and", "not", "gates", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/passes.py#L355-L438
UCSBarchlab/PyRTL
pyrtl/passes.py
_decompose
def _decompose(net, wv_map, mems, block_out): """ Add the wires and logicnets to block_out and wv_map to decompose net """ def arg(x, i): # return the mapped wire vector for argument x, wire number i return wv_map[(net.args[x], i)] def destlen(): # return iterator over length of th...
python
def _decompose(net, wv_map, mems, block_out): """ Add the wires and logicnets to block_out and wv_map to decompose net """ def arg(x, i): # return the mapped wire vector for argument x, wire number i return wv_map[(net.args[x], i)] def destlen(): # return iterator over length of th...
[ "def", "_decompose", "(", "net", ",", "wv_map", ",", "mems", ",", "block_out", ")", ":", "def", "arg", "(", "x", ",", "i", ")", ":", "# return the mapped wire vector for argument x, wire number i", "return", "wv_map", "[", "(", "net", ".", "args", "[", "x", ...
Add the wires and logicnets to block_out and wv_map to decompose net
[ "Add", "the", "wires", "and", "logicnets", "to", "block_out", "and", "wv_map", "to", "decompose", "net" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/passes.py#L451-L519
UCSBarchlab/PyRTL
pyrtl/passes.py
nand_synth
def nand_synth(net): """ Synthesizes an Post-Synthesis block into one consisting of nands and inverters in place :param block: The block to synthesize. """ if net.op in '~nrwcsm@': return True def arg(num): return net.args[num] dest = net.dests[0] if net.op == '&': ...
python
def nand_synth(net): """ Synthesizes an Post-Synthesis block into one consisting of nands and inverters in place :param block: The block to synthesize. """ if net.op in '~nrwcsm@': return True def arg(num): return net.args[num] dest = net.dests[0] if net.op == '&': ...
[ "def", "nand_synth", "(", "net", ")", ":", "if", "net", ".", "op", "in", "'~nrwcsm@'", ":", "return", "True", "def", "arg", "(", "num", ")", ":", "return", "net", ".", "args", "[", "num", "]", "dest", "=", "net", ".", "dests", "[", "0", "]", "i...
Synthesizes an Post-Synthesis block into one consisting of nands and inverters in place :param block: The block to synthesize.
[ "Synthesizes", "an", "Post", "-", "Synthesis", "block", "into", "one", "consisting", "of", "nands", "and", "inverters", "in", "place", ":", "param", "block", ":", "The", "block", "to", "synthesize", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/passes.py#L523-L543
UCSBarchlab/PyRTL
pyrtl/passes.py
and_inverter_synth
def and_inverter_synth(net): """ Transforms a decomposed block into one consisting of ands and inverters in place :param block: The block to synthesize """ if net.op in '~&rwcsm@': return True def arg(num): return net.args[num] dest = net.dests[0] if net.op == '|': ...
python
def and_inverter_synth(net): """ Transforms a decomposed block into one consisting of ands and inverters in place :param block: The block to synthesize """ if net.op in '~&rwcsm@': return True def arg(num): return net.args[num] dest = net.dests[0] if net.op == '|': ...
[ "def", "and_inverter_synth", "(", "net", ")", ":", "if", "net", ".", "op", "in", "'~&rwcsm@'", ":", "return", "True", "def", "arg", "(", "num", ")", ":", "return", "net", ".", "args", "[", "num", "]", "dest", "=", "net", ".", "dests", "[", "0", "...
Transforms a decomposed block into one consisting of ands and inverters in place :param block: The block to synthesize
[ "Transforms", "a", "decomposed", "block", "into", "one", "consisting", "of", "ands", "and", "inverters", "in", "place", ":", "param", "block", ":", "The", "block", "to", "synthesize" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/passes.py#L547-L568
UCSBarchlab/PyRTL
pyrtl/rtllib/barrel.py
barrel_shifter
def barrel_shifter(bits_to_shift, bit_in, direction, shift_dist, wrap_around=0): """ Create a barrel shifter that operates on data based on the wire width. :param bits_to_shift: the input wire :param bit_in: the 1-bit wire giving the value to shift in :param direction: a one bit WireVector representing...
python
def barrel_shifter(bits_to_shift, bit_in, direction, shift_dist, wrap_around=0): """ Create a barrel shifter that operates on data based on the wire width. :param bits_to_shift: the input wire :param bit_in: the 1-bit wire giving the value to shift in :param direction: a one bit WireVector representing...
[ "def", "barrel_shifter", "(", "bits_to_shift", ",", "bit_in", ",", "direction", ",", "shift_dist", ",", "wrap_around", "=", "0", ")", ":", "from", "pyrtl", "import", "concat", ",", "select", "# just for readability", "if", "wrap_around", "!=", "0", ":", "raise...
Create a barrel shifter that operates on data based on the wire width. :param bits_to_shift: the input wire :param bit_in: the 1-bit wire giving the value to shift in :param direction: a one bit WireVector representing shift direction (0 = shift down, 1 = shift up) :param shift_dist: WireVector...
[ "Create", "a", "barrel", "shifter", "that", "operates", "on", "data", "based", "on", "the", "wire", "width", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/rtllib/barrel.py#L6-L44
usrlocalben/pydux
pydux/compose.py
compose
def compose(*funcs): """ chained function composition wrapper creates function f, where f(x) = arg0(arg1(arg2(...argN(x)))) if *funcs is empty, an identity function is returned. Args: *funcs: list of functions to chain Returns: a new function composed of chained calls to ...
python
def compose(*funcs): """ chained function composition wrapper creates function f, where f(x) = arg0(arg1(arg2(...argN(x)))) if *funcs is empty, an identity function is returned. Args: *funcs: list of functions to chain Returns: a new function composed of chained calls to ...
[ "def", "compose", "(", "*", "funcs", ")", ":", "if", "not", "funcs", ":", "return", "lambda", "*", "args", ":", "args", "[", "0", "]", "if", "args", "else", "None", "if", "len", "(", "funcs", ")", "==", "1", ":", "return", "funcs", "[", "0", "]...
chained function composition wrapper creates function f, where f(x) = arg0(arg1(arg2(...argN(x)))) if *funcs is empty, an identity function is returned. Args: *funcs: list of functions to chain Returns: a new function composed of chained calls to *args
[ "chained", "function", "composition", "wrapper" ]
train
https://github.com/usrlocalben/pydux/blob/943ca1c75357b9289f55f17ff2d997a66a3313a4/pydux/compose.py#L3-L26
usrlocalben/pydux
pydux/combine_reducers.py
combine_reducers
def combine_reducers(reducers): """ composition tool for creating reducer trees. Args: reducers: dict with state keys and reducer functions that are responsible for each key Returns: a new, combined reducer function """ final_reducers = {key: reducer ...
python
def combine_reducers(reducers): """ composition tool for creating reducer trees. Args: reducers: dict with state keys and reducer functions that are responsible for each key Returns: a new, combined reducer function """ final_reducers = {key: reducer ...
[ "def", "combine_reducers", "(", "reducers", ")", ":", "final_reducers", "=", "{", "key", ":", "reducer", "for", "key", ",", "reducer", "in", "reducers", ".", "items", "(", ")", "if", "hasattr", "(", "reducer", ",", "'__call__'", ")", "}", "sanity_error", ...
composition tool for creating reducer trees. Args: reducers: dict with state keys and reducer functions that are responsible for each key Returns: a new, combined reducer function
[ "composition", "tool", "for", "creating", "reducer", "trees", ".", "Args", ":", "reducers", ":", "dict", "with", "state", "keys", "and", "reducer", "functions", "that", "are", "responsible", "for", "each", "key" ]
train
https://github.com/usrlocalben/pydux/blob/943ca1c75357b9289f55f17ff2d997a66a3313a4/pydux/combine_reducers.py#L41-L81
UCSBarchlab/PyRTL
examples/introduction-to-hardware.py
software_fibonacci
def software_fibonacci(n): """ a normal old python function to return the Nth fibonacci number. """ a, b = 0, 1 for i in range(n): a, b = b, a + b return a
python
def software_fibonacci(n): """ a normal old python function to return the Nth fibonacci number. """ a, b = 0, 1 for i in range(n): a, b = b, a + b return a
[ "def", "software_fibonacci", "(", "n", ")", ":", "a", ",", "b", "=", "0", ",", "1", "for", "i", "in", "range", "(", "n", ")", ":", "a", ",", "b", "=", "b", ",", "a", "+", "b", "return", "a" ]
a normal old python function to return the Nth fibonacci number.
[ "a", "normal", "old", "python", "function", "to", "return", "the", "Nth", "fibonacci", "number", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/examples/introduction-to-hardware.py#L12-L17
usrlocalben/pydux
pydux/apply_middleware.py
apply_middleware
def apply_middleware(*middlewares): """ creates an enhancer function composed of middleware Args: *middlewares: list of middleware functions to apply Returns: an enhancer for subsequent calls to create_store() """ def inner(create_store_): def create_wrapper(reducer, en...
python
def apply_middleware(*middlewares): """ creates an enhancer function composed of middleware Args: *middlewares: list of middleware functions to apply Returns: an enhancer for subsequent calls to create_store() """ def inner(create_store_): def create_wrapper(reducer, en...
[ "def", "apply_middleware", "(", "*", "middlewares", ")", ":", "def", "inner", "(", "create_store_", ")", ":", "def", "create_wrapper", "(", "reducer", ",", "enhancer", "=", "None", ")", ":", "store", "=", "create_store_", "(", "reducer", ",", "enhancer", "...
creates an enhancer function composed of middleware Args: *middlewares: list of middleware functions to apply Returns: an enhancer for subsequent calls to create_store()
[ "creates", "an", "enhancer", "function", "composed", "of", "middleware" ]
train
https://github.com/usrlocalben/pydux/blob/943ca1c75357b9289f55f17ff2d997a66a3313a4/pydux/apply_middleware.py#L5-L28
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
mux
def mux(index, *mux_ins, **kwargs): """ Multiplexer returning the value of the wire in . :param WireVector index: used as the select input to the multiplexer :param WireVector mux_ins: additional WireVector arguments selected when select>1 :param WireVector kwargs: additional WireVectors, keyword arg "...
python
def mux(index, *mux_ins, **kwargs): """ Multiplexer returning the value of the wire in . :param WireVector index: used as the select input to the multiplexer :param WireVector mux_ins: additional WireVector arguments selected when select>1 :param WireVector kwargs: additional WireVectors, keyword arg "...
[ "def", "mux", "(", "index", ",", "*", "mux_ins", ",", "*", "*", "kwargs", ")", ":", "if", "kwargs", ":", "# only \"default\" is allowed as kwarg.", "if", "len", "(", "kwargs", ")", "!=", "1", "or", "'default'", "not", "in", "kwargs", ":", "try", ":", "...
Multiplexer returning the value of the wire in . :param WireVector index: used as the select input to the multiplexer :param WireVector mux_ins: additional WireVector arguments selected when select>1 :param WireVector kwargs: additional WireVectors, keyword arg "default" If you are selecting between ...
[ "Multiplexer", "returning", "the", "value", "of", "the", "wire", "in", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L16-L82
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
select
def select(sel, truecase, falsecase): """ Multiplexer returning falsecase for select==0, otherwise truecase. :param WireVector sel: used as the select input to the multiplexer :param WireVector falsecase: the WireVector selected if select==0 :param WireVector truecase: the WireVector selected if select...
python
def select(sel, truecase, falsecase): """ Multiplexer returning falsecase for select==0, otherwise truecase. :param WireVector sel: used as the select input to the multiplexer :param WireVector falsecase: the WireVector selected if select==0 :param WireVector truecase: the WireVector selected if select...
[ "def", "select", "(", "sel", ",", "truecase", ",", "falsecase", ")", ":", "sel", ",", "f", ",", "t", "=", "(", "as_wires", "(", "w", ")", "for", "w", "in", "(", "sel", ",", "falsecase", ",", "truecase", ")", ")", "f", ",", "t", "=", "match_bitw...
Multiplexer returning falsecase for select==0, otherwise truecase. :param WireVector sel: used as the select input to the multiplexer :param WireVector falsecase: the WireVector selected if select==0 :param WireVector truecase: the WireVector selected if select==1 The hardware this generates is exactl...
[ "Multiplexer", "returning", "falsecase", "for", "select", "==", "0", "otherwise", "truecase", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L85-L106
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
concat
def concat(*args): """ Concatenates multiple WireVectors into a single WireVector :param WireVector args: inputs to be concatenated :return: WireVector with length equal to the sum of the args' lengths You can provide multiple arguments and they will be combined with the right-most argument being ...
python
def concat(*args): """ Concatenates multiple WireVectors into a single WireVector :param WireVector args: inputs to be concatenated :return: WireVector with length equal to the sum of the args' lengths You can provide multiple arguments and they will be combined with the right-most argument being ...
[ "def", "concat", "(", "*", "args", ")", ":", "if", "len", "(", "args", ")", "<=", "0", ":", "raise", "PyrtlError", "(", "'error, concat requires at least 1 argument'", ")", "if", "len", "(", "args", ")", "==", "1", ":", "return", "as_wires", "(", "args",...
Concatenates multiple WireVectors into a single WireVector :param WireVector args: inputs to be concatenated :return: WireVector with length equal to the sum of the args' lengths You can provide multiple arguments and they will be combined with the right-most argument being the least significant bits ...
[ "Concatenates", "multiple", "WireVectors", "into", "a", "single", "WireVector" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L109-L139
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
signed_add
def signed_add(a, b): """ Return wirevector for result of signed addition. :param a: a wirevector to serve as first input to addition :param b: a wirevector to serve as second input to addition Given a length n and length m wirevector the result of the signed addition is length max(n,m)+1. The in...
python
def signed_add(a, b): """ Return wirevector for result of signed addition. :param a: a wirevector to serve as first input to addition :param b: a wirevector to serve as second input to addition Given a length n and length m wirevector the result of the signed addition is length max(n,m)+1. The in...
[ "def", "signed_add", "(", "a", ",", "b", ")", ":", "a", ",", "b", "=", "match_bitwidth", "(", "as_wires", "(", "a", ")", ",", "as_wires", "(", "b", ")", ",", "signed", "=", "True", ")", "result_len", "=", "len", "(", "a", ")", "+", "1", "ext_a"...
Return wirevector for result of signed addition. :param a: a wirevector to serve as first input to addition :param b: a wirevector to serve as second input to addition Given a length n and length m wirevector the result of the signed addition is length max(n,m)+1. The inputs are twos complement s...
[ "Return", "wirevector", "for", "result", "of", "signed", "addition", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L162-L176
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
signed_mult
def signed_mult(a, b): """ Return a*b where a and b are treated as signed values. """ a, b = as_wires(a), as_wires(b) final_len = len(a) + len(b) # sign extend both inputs to the final target length a, b = a.sign_extended(final_len), b.sign_extended(final_len) # the result is the multiplication ...
python
def signed_mult(a, b): """ Return a*b where a and b are treated as signed values. """ a, b = as_wires(a), as_wires(b) final_len = len(a) + len(b) # sign extend both inputs to the final target length a, b = a.sign_extended(final_len), b.sign_extended(final_len) # the result is the multiplication ...
[ "def", "signed_mult", "(", "a", ",", "b", ")", ":", "a", ",", "b", "=", "as_wires", "(", "a", ")", ",", "as_wires", "(", "b", ")", "final_len", "=", "len", "(", "a", ")", "+", "len", "(", "b", ")", "# sign extend both inputs to the final target length"...
Return a*b where a and b are treated as signed values.
[ "Return", "a", "*", "b", "where", "a", "and", "b", "are", "treated", "as", "signed", "values", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L184-L193
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
signed_lt
def signed_lt(a, b): """ Return a single bit result of signed less than comparison. """ a, b = match_bitwidth(as_wires(a), as_wires(b), signed=True) r = a - b return r[-1] ^ (~a[-1]) ^ (~b[-1])
python
def signed_lt(a, b): """ Return a single bit result of signed less than comparison. """ a, b = match_bitwidth(as_wires(a), as_wires(b), signed=True) r = a - b return r[-1] ^ (~a[-1]) ^ (~b[-1])
[ "def", "signed_lt", "(", "a", ",", "b", ")", ":", "a", ",", "b", "=", "match_bitwidth", "(", "as_wires", "(", "a", ")", ",", "as_wires", "(", "b", ")", ",", "signed", "=", "True", ")", "r", "=", "a", "-", "b", "return", "r", "[", "-", "1", ...
Return a single bit result of signed less than comparison.
[ "Return", "a", "single", "bit", "result", "of", "signed", "less", "than", "comparison", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L196-L200
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
signed_le
def signed_le(a, b): """ Return a single bit result of signed less than or equal comparison. """ a, b = match_bitwidth(as_wires(a), as_wires(b), signed=True) r = a - b return (r[-1] ^ (~a[-1]) ^ (~b[-1])) | (a == b)
python
def signed_le(a, b): """ Return a single bit result of signed less than or equal comparison. """ a, b = match_bitwidth(as_wires(a), as_wires(b), signed=True) r = a - b return (r[-1] ^ (~a[-1]) ^ (~b[-1])) | (a == b)
[ "def", "signed_le", "(", "a", ",", "b", ")", ":", "a", ",", "b", "=", "match_bitwidth", "(", "as_wires", "(", "a", ")", ",", "as_wires", "(", "b", ")", ",", "signed", "=", "True", ")", "r", "=", "a", "-", "b", "return", "(", "r", "[", "-", ...
Return a single bit result of signed less than or equal comparison.
[ "Return", "a", "single", "bit", "result", "of", "signed", "less", "than", "or", "equal", "comparison", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L203-L207
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
signed_gt
def signed_gt(a, b): """ Return a single bit result of signed greater than comparison. """ a, b = match_bitwidth(as_wires(a), as_wires(b), signed=True) r = b - a return r[-1] ^ (~a[-1]) ^ (~b[-1])
python
def signed_gt(a, b): """ Return a single bit result of signed greater than comparison. """ a, b = match_bitwidth(as_wires(a), as_wires(b), signed=True) r = b - a return r[-1] ^ (~a[-1]) ^ (~b[-1])
[ "def", "signed_gt", "(", "a", ",", "b", ")", ":", "a", ",", "b", "=", "match_bitwidth", "(", "as_wires", "(", "a", ")", ",", "as_wires", "(", "b", ")", ",", "signed", "=", "True", ")", "r", "=", "b", "-", "a", "return", "r", "[", "-", "1", ...
Return a single bit result of signed greater than comparison.
[ "Return", "a", "single", "bit", "result", "of", "signed", "greater", "than", "comparison", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L210-L214
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
signed_ge
def signed_ge(a, b): """ Return a single bit result of signed greater than or equal comparison. """ a, b = match_bitwidth(as_wires(a), as_wires(b), signed=True) r = b - a return (r[-1] ^ (~a[-1]) ^ (~b[-1])) | (a == b)
python
def signed_ge(a, b): """ Return a single bit result of signed greater than or equal comparison. """ a, b = match_bitwidth(as_wires(a), as_wires(b), signed=True) r = b - a return (r[-1] ^ (~a[-1]) ^ (~b[-1])) | (a == b)
[ "def", "signed_ge", "(", "a", ",", "b", ")", ":", "a", ",", "b", "=", "match_bitwidth", "(", "as_wires", "(", "a", ")", ",", "as_wires", "(", "b", ")", ",", "signed", "=", "True", ")", "r", "=", "b", "-", "a", "return", "(", "r", "[", "-", ...
Return a single bit result of signed greater than or equal comparison.
[ "Return", "a", "single", "bit", "result", "of", "signed", "greater", "than", "or", "equal", "comparison", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L217-L221
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
shift_right_arithmetic
def shift_right_arithmetic(bits_to_shift, shift_amount): """ Shift right arithmetic operation. :param bits_to_shift: WireVector to shift right :param shift_amount: WireVector specifying amount to shift :return: WireVector of same length as bits_to_shift This function returns a new WireVector of le...
python
def shift_right_arithmetic(bits_to_shift, shift_amount): """ Shift right arithmetic operation. :param bits_to_shift: WireVector to shift right :param shift_amount: WireVector specifying amount to shift :return: WireVector of same length as bits_to_shift This function returns a new WireVector of le...
[ "def", "shift_right_arithmetic", "(", "bits_to_shift", ",", "shift_amount", ")", ":", "a", ",", "shamt", "=", "_check_shift_inputs", "(", "bits_to_shift", ",", "shift_amount", ")", "bit_in", "=", "bits_to_shift", "[", "-", "1", "]", "# shift in sign_bit", "dir", ...
Shift right arithmetic operation. :param bits_to_shift: WireVector to shift right :param shift_amount: WireVector specifying amount to shift :return: WireVector of same length as bits_to_shift This function returns a new WireVector of length equal to the length of the input `bits_to_shift` but whe...
[ "Shift", "right", "arithmetic", "operation", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L250-L267
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
match_bitwidth
def match_bitwidth(*args, **opt): """ Matches the bitwidth of all of the input arguments with zero or sign extend :param args: WireVectors of which to match bitwidths :param opt: Optional keyword argument 'signed=True' (defaults to False) :return: tuple of args in order with extended bits Example ...
python
def match_bitwidth(*args, **opt): """ Matches the bitwidth of all of the input arguments with zero or sign extend :param args: WireVectors of which to match bitwidths :param opt: Optional keyword argument 'signed=True' (defaults to False) :return: tuple of args in order with extended bits Example ...
[ "def", "match_bitwidth", "(", "*", "args", ",", "*", "*", "opt", ")", ":", "# TODO: when we drop 2.7 support, this code should be cleaned up with explicit", "# kwarg support for \"signed\" rather than the less than helpful \"**opt\"", "if", "len", "(", "opt", ")", "==", "0", ...
Matches the bitwidth of all of the input arguments with zero or sign extend :param args: WireVectors of which to match bitwidths :param opt: Optional keyword argument 'signed=True' (defaults to False) :return: tuple of args in order with extended bits Example of matching the bitwidths of two WireVecto...
[ "Matches", "the", "bitwidth", "of", "all", "of", "the", "input", "arguments", "with", "zero", "or", "sign", "extend" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L308-L338
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
as_wires
def as_wires(val, bitwidth=None, truncating=True, block=None): """ Return wires from val which may be wires, integers, strings, or bools. :param val: a wirevector-like object or something that can be converted into a Const :param bitwidth: The bitwidth the resulting wire should be :param bool tru...
python
def as_wires(val, bitwidth=None, truncating=True, block=None): """ Return wires from val which may be wires, integers, strings, or bools. :param val: a wirevector-like object or something that can be converted into a Const :param bitwidth: The bitwidth the resulting wire should be :param bool tru...
[ "def", "as_wires", "(", "val", ",", "bitwidth", "=", "None", ",", "truncating", "=", "True", ",", "block", "=", "None", ")", ":", "from", ".", "memory", "import", "_MemIndexed", "block", "=", "working_block", "(", "block", ")", "if", "isinstance", "(", ...
Return wires from val which may be wires, integers, strings, or bools. :param val: a wirevector-like object or something that can be converted into a Const :param bitwidth: The bitwidth the resulting wire should be :param bool truncating: determines whether bits will be dropped to achieve the de...
[ "Return", "wires", "from", "val", "which", "may", "be", "wires", "integers", "strings", "or", "bools", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L341-L388
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
bitfield_update
def bitfield_update(w, range_start, range_end, newvalue, truncating=False): """ Return wirevector w but with some of the bits overwritten by newvalue. :param w: a wirevector to use as the starting point for the update :param range_start: the start of the range of bits to be updated :param range_end: th...
python
def bitfield_update(w, range_start, range_end, newvalue, truncating=False): """ Return wirevector w but with some of the bits overwritten by newvalue. :param w: a wirevector to use as the starting point for the update :param range_start: the start of the range of bits to be updated :param range_end: th...
[ "def", "bitfield_update", "(", "w", ",", "range_start", ",", "range_end", ",", "newvalue", ",", "truncating", "=", "False", ")", ":", "from", ".", "corecircuits", "import", "concat_list", "w", "=", "as_wires", "(", "w", ")", "idxs", "=", "list", "(", "ra...
Return wirevector w but with some of the bits overwritten by newvalue. :param w: a wirevector to use as the starting point for the update :param range_start: the start of the range of bits to be updated :param range_end: the end of the range of bits to be updated :param newvalue: the value to be writte...
[ "Return", "wirevector", "w", "but", "with", "some", "of", "the", "bits", "overwritten", "by", "newvalue", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L391-L441
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
enum_mux
def enum_mux(cntrl, table, default=None, strict=True): """ Build a mux for the control signals specified by an enum. :param cntrl: is a wirevector and control for the mux. :param table: is a dictionary of the form mapping enum->wirevector. :param default: is a wirevector to use when the key is not pres...
python
def enum_mux(cntrl, table, default=None, strict=True): """ Build a mux for the control signals specified by an enum. :param cntrl: is a wirevector and control for the mux. :param table: is a dictionary of the form mapping enum->wirevector. :param default: is a wirevector to use when the key is not pres...
[ "def", "enum_mux", "(", "cntrl", ",", "table", ",", "default", "=", "None", ",", "strict", "=", "True", ")", ":", "# check dictionary keys are of the right type", "keytypeset", "=", "set", "(", "type", "(", "x", ")", "for", "x", "in", "table", ".", "keys",...
Build a mux for the control signals specified by an enum. :param cntrl: is a wirevector and control for the mux. :param table: is a dictionary of the form mapping enum->wirevector. :param default: is a wirevector to use when the key is not present. In addtion it is possible to use the key 'otherwis...
[ "Build", "a", "mux", "for", "the", "control", "signals", "specified", "by", "an", "enum", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L444-L495
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
rtl_any
def rtl_any(*vectorlist): """ Hardware equivalent of python native "any". :param WireVector vectorlist: all arguments are WireVectors of length 1 :return: WireVector of length 1 Returns a 1-bit WireVector which will hold a '1' if any of the inputs are '1' (i.e. it is a big ol' OR gate) """ ...
python
def rtl_any(*vectorlist): """ Hardware equivalent of python native "any". :param WireVector vectorlist: all arguments are WireVectors of length 1 :return: WireVector of length 1 Returns a 1-bit WireVector which will hold a '1' if any of the inputs are '1' (i.e. it is a big ol' OR gate) """ ...
[ "def", "rtl_any", "(", "*", "vectorlist", ")", ":", "if", "len", "(", "vectorlist", ")", "<=", "0", ":", "raise", "PyrtlError", "(", "'rtl_any requires at least 1 argument'", ")", "converted_vectorlist", "=", "[", "as_wires", "(", "v", ")", "for", "v", "in",...
Hardware equivalent of python native "any". :param WireVector vectorlist: all arguments are WireVectors of length 1 :return: WireVector of length 1 Returns a 1-bit WireVector which will hold a '1' if any of the inputs are '1' (i.e. it is a big ol' OR gate)
[ "Hardware", "equivalent", "of", "python", "native", "any", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L548-L562
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
rtl_all
def rtl_all(*vectorlist): """ Hardware equivalent of python native "all". :param WireVector vectorlist: all arguments are WireVectors of length 1 :return: WireVector of length 1 Returns a 1-bit WireVector which will hold a '1' only if all of the inputs are '1' (i.e. it is a big ol' AND gate) "...
python
def rtl_all(*vectorlist): """ Hardware equivalent of python native "all". :param WireVector vectorlist: all arguments are WireVectors of length 1 :return: WireVector of length 1 Returns a 1-bit WireVector which will hold a '1' only if all of the inputs are '1' (i.e. it is a big ol' AND gate) "...
[ "def", "rtl_all", "(", "*", "vectorlist", ")", ":", "if", "len", "(", "vectorlist", ")", "<=", "0", ":", "raise", "PyrtlError", "(", "'rtl_all requires at least 1 argument'", ")", "converted_vectorlist", "=", "[", "as_wires", "(", "v", ")", "for", "v", "in",...
Hardware equivalent of python native "all". :param WireVector vectorlist: all arguments are WireVectors of length 1 :return: WireVector of length 1 Returns a 1-bit WireVector which will hold a '1' only if all of the inputs are '1' (i.e. it is a big ol' AND gate)
[ "Hardware", "equivalent", "of", "python", "native", "all", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L565-L579
UCSBarchlab/PyRTL
pyrtl/corecircuits.py
_basic_mult
def _basic_mult(A, B): """ A stripped-down copy of the Wallace multiplier in rtllib """ if len(B) == 1: A, B = B, A # so that we can reuse the code below :) if len(A) == 1: return concat_list(list(A & b for b in B) + [Const(0)]) # keep WireVector len consistent result_bitwidth = len(A...
python
def _basic_mult(A, B): """ A stripped-down copy of the Wallace multiplier in rtllib """ if len(B) == 1: A, B = B, A # so that we can reuse the code below :) if len(A) == 1: return concat_list(list(A & b for b in B) + [Const(0)]) # keep WireVector len consistent result_bitwidth = len(A...
[ "def", "_basic_mult", "(", "A", ",", "B", ")", ":", "if", "len", "(", "B", ")", "==", "1", ":", "A", ",", "B", "=", "B", ",", "A", "# so that we can reuse the code below :)", "if", "len", "(", "A", ")", "==", "1", ":", "return", "concat_list", "(",...
A stripped-down copy of the Wallace multiplier in rtllib
[ "A", "stripped", "-", "down", "copy", "of", "the", "Wallace", "multiplier", "in", "rtllib" ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/corecircuits.py#L582-L613
UCSBarchlab/PyRTL
pyrtl/conditional.py
_push_condition
def _push_condition(predicate): """As we enter new conditions, this pushes them on the predicate stack.""" global _depth _check_under_condition() _depth += 1 if predicate is not otherwise and len(predicate) > 1: raise PyrtlError('all predicates for conditional assignments must wirevectors of...
python
def _push_condition(predicate): """As we enter new conditions, this pushes them on the predicate stack.""" global _depth _check_under_condition() _depth += 1 if predicate is not otherwise and len(predicate) > 1: raise PyrtlError('all predicates for conditional assignments must wirevectors of...
[ "def", "_push_condition", "(", "predicate", ")", ":", "global", "_depth", "_check_under_condition", "(", ")", "_depth", "+=", "1", "if", "predicate", "is", "not", "otherwise", "and", "len", "(", "predicate", ")", ">", "1", ":", "raise", "PyrtlError", "(", ...
As we enter new conditions, this pushes them on the predicate stack.
[ "As", "we", "enter", "new", "conditions", "this", "pushes", "them", "on", "the", "predicate", "stack", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/conditional.py#L119-L127
UCSBarchlab/PyRTL
pyrtl/conditional.py
_build
def _build(lhs, rhs): """Stores the wire assignment details until finalize is called.""" _check_under_condition() final_predicate, pred_set = _current_select() _check_and_add_pred_set(lhs, pred_set) _predicate_map.setdefault(lhs, []).append((final_predicate, rhs))
python
def _build(lhs, rhs): """Stores the wire assignment details until finalize is called.""" _check_under_condition() final_predicate, pred_set = _current_select() _check_and_add_pred_set(lhs, pred_set) _predicate_map.setdefault(lhs, []).append((final_predicate, rhs))
[ "def", "_build", "(", "lhs", ",", "rhs", ")", ":", "_check_under_condition", "(", ")", "final_predicate", ",", "pred_set", "=", "_current_select", "(", ")", "_check_and_add_pred_set", "(", "lhs", ",", "pred_set", ")", "_predicate_map", ".", "setdefault", "(", ...
Stores the wire assignment details until finalize is called.
[ "Stores", "the", "wire", "assignment", "details", "until", "finalize", "is", "called", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/conditional.py#L138-L143
UCSBarchlab/PyRTL
pyrtl/conditional.py
_pred_sets_are_in_conflict
def _pred_sets_are_in_conflict(pred_set_a, pred_set_b): """ Find conflict in sets, return conflict if found, else None. """ # pred_sets conflict if we cannot find one shared predicate that is "negated" in one # and "non-negated" in the other for pred_a, bool_a in pred_set_a: for pred_b, bool_b i...
python
def _pred_sets_are_in_conflict(pred_set_a, pred_set_b): """ Find conflict in sets, return conflict if found, else None. """ # pred_sets conflict if we cannot find one shared predicate that is "negated" in one # and "non-negated" in the other for pred_a, bool_a in pred_set_a: for pred_b, bool_b i...
[ "def", "_pred_sets_are_in_conflict", "(", "pred_set_a", ",", "pred_set_b", ")", ":", "# pred_sets conflict if we cannot find one shared predicate that is \"negated\" in one", "# and \"non-negated\" in the other", "for", "pred_a", ",", "bool_a", "in", "pred_set_a", ":", "for", "pr...
Find conflict in sets, return conflict if found, else None.
[ "Find", "conflict", "in", "sets", "return", "conflict", "if", "found", "else", "None", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/conditional.py#L171-L179
UCSBarchlab/PyRTL
pyrtl/conditional.py
_finalize
def _finalize(): """Build the required muxes and call back to WireVector to finalize the wirevector build.""" from .memory import MemBlock from pyrtl.corecircuits import select for lhs in _predicate_map: # handle memory write ports if isinstance(lhs, MemBlock): p, (addr, data...
python
def _finalize(): """Build the required muxes and call back to WireVector to finalize the wirevector build.""" from .memory import MemBlock from pyrtl.corecircuits import select for lhs in _predicate_map: # handle memory write ports if isinstance(lhs, MemBlock): p, (addr, data...
[ "def", "_finalize", "(", ")", ":", "from", ".", "memory", "import", "MemBlock", "from", "pyrtl", ".", "corecircuits", "import", "select", "for", "lhs", "in", "_predicate_map", ":", "# handle memory write ports", "if", "isinstance", "(", "lhs", ",", "MemBlock", ...
Build the required muxes and call back to WireVector to finalize the wirevector build.
[ "Build", "the", "required", "muxes", "and", "call", "back", "to", "WireVector", "to", "finalize", "the", "wirevector", "build", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/conditional.py#L182-L212
UCSBarchlab/PyRTL
pyrtl/conditional.py
_current_select
def _current_select(): """ Function to calculate the current "predicate" in the current context. Returns a tuple of information: (predicate, pred_set). The value pred_set is a set([ (predicate, bool), ... ]) as described in the _reset_conditional_state """ # helper to create the conjuction of ...
python
def _current_select(): """ Function to calculate the current "predicate" in the current context. Returns a tuple of information: (predicate, pred_set). The value pred_set is a set([ (predicate, bool), ... ]) as described in the _reset_conditional_state """ # helper to create the conjuction of ...
[ "def", "_current_select", "(", ")", ":", "# helper to create the conjuction of predicates", "def", "and_with_possible_none", "(", "a", ",", "b", ")", ":", "assert", "(", "a", "is", "not", "None", "or", "b", "is", "not", "None", ")", "if", "a", "is", "None", ...
Function to calculate the current "predicate" in the current context. Returns a tuple of information: (predicate, pred_set). The value pred_set is a set([ (predicate, bool), ... ]) as described in the _reset_conditional_state
[ "Function", "to", "calculate", "the", "current", "predicate", "in", "the", "current", "context", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/conditional.py#L215-L262
UCSBarchlab/PyRTL
pyrtl/analysis/estimate.py
area_estimation
def area_estimation(tech_in_nm=130, block=None): """ Estimates the total area of the block. :param tech_in_nm: the size of the circuit technology to be estimated (for example, 65 is 65nm and 250 is 0.25um) :return: tuple of estimated areas (logic, mem) in terms of mm^2 The estimations are base...
python
def area_estimation(tech_in_nm=130, block=None): """ Estimates the total area of the block. :param tech_in_nm: the size of the circuit technology to be estimated (for example, 65 is 65nm and 250 is 0.25um) :return: tuple of estimated areas (logic, mem) in terms of mm^2 The estimations are base...
[ "def", "area_estimation", "(", "tech_in_nm", "=", "130", ",", "block", "=", "None", ")", ":", "def", "mem_area_estimate", "(", "tech_in_nm", ",", "bits", ",", "ports", ",", "is_rom", ")", ":", "# http://www.cs.ucsb.edu/~sherwood/pubs/ICCD-srammodel.pdf", "# ROM is a...
Estimates the total area of the block. :param tech_in_nm: the size of the circuit technology to be estimated (for example, 65 is 65nm and 250 is 0.25um) :return: tuple of estimated areas (logic, mem) in terms of mm^2 The estimations are based off of 130nm stdcell designs for the logic, and cus...
[ "Estimates", "the", "total", "area", "of", "the", "block", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/analysis/estimate.py#L29-L116
UCSBarchlab/PyRTL
pyrtl/analysis/estimate.py
_bits_ports_and_isrom_from_memory
def _bits_ports_and_isrom_from_memory(mem): """ Helper to extract mem bits and ports for estimation. """ is_rom = False bits = 2**mem.addrwidth * mem.bitwidth read_ports = len(mem.readport_nets) try: write_ports = len(mem.writeport_nets) except AttributeError: # dealing with ROMs ...
python
def _bits_ports_and_isrom_from_memory(mem): """ Helper to extract mem bits and ports for estimation. """ is_rom = False bits = 2**mem.addrwidth * mem.bitwidth read_ports = len(mem.readport_nets) try: write_ports = len(mem.writeport_nets) except AttributeError: # dealing with ROMs ...
[ "def", "_bits_ports_and_isrom_from_memory", "(", "mem", ")", ":", "is_rom", "=", "False", "bits", "=", "2", "**", "mem", ".", "addrwidth", "*", "mem", ".", "bitwidth", "read_ports", "=", "len", "(", "mem", ".", "readport_nets", ")", "try", ":", "write_port...
Helper to extract mem bits and ports for estimation.
[ "Helper", "to", "extract", "mem", "bits", "and", "ports", "for", "estimation", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/analysis/estimate.py#L119-L133
UCSBarchlab/PyRTL
pyrtl/analysis/estimate.py
yosys_area_delay
def yosys_area_delay(library, abc_cmd=None, block=None): """ Synthesize with Yosys and return estimate of area and delay. :param library: stdcell library file to target in liberty format :param abc_cmd: string of commands for yosys to pass to abc for synthesis :param block: pyrtl block to analyze :...
python
def yosys_area_delay(library, abc_cmd=None, block=None): """ Synthesize with Yosys and return estimate of area and delay. :param library: stdcell library file to target in liberty format :param abc_cmd: string of commands for yosys to pass to abc for synthesis :param block: pyrtl block to analyze :...
[ "def", "yosys_area_delay", "(", "library", ",", "abc_cmd", "=", "None", ",", "block", "=", "None", ")", ":", "if", "abc_cmd", "is", "None", ":", "abc_cmd", "=", "'strash;scorr;ifraig;retime;dch,-f;map;print_stats;'", "else", ":", "# first, replace whitespace with comm...
Synthesize with Yosys and return estimate of area and delay. :param library: stdcell library file to target in liberty format :param abc_cmd: string of commands for yosys to pass to abc for synthesis :param block: pyrtl block to analyze :return: a tuple of numbers: area, delay The area and delay a...
[ "Synthesize", "with", "Yosys", "and", "return", "estimate", "of", "area", "and", "delay", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/analysis/estimate.py#L329-L389
UCSBarchlab/PyRTL
pyrtl/analysis/estimate.py
TimingAnalysis.max_freq
def max_freq(self, tech_in_nm=130, ffoverhead=None): """ Estimates the max frequency of a block in MHz. :param tech_in_nm: the size of the circuit technology to be estimated (for example, 65 is 65nm and 250 is 0.25um) :param ffoverhead: setup and ff propagation delay in picoseconds ...
python
def max_freq(self, tech_in_nm=130, ffoverhead=None): """ Estimates the max frequency of a block in MHz. :param tech_in_nm: the size of the circuit technology to be estimated (for example, 65 is 65nm and 250 is 0.25um) :param ffoverhead: setup and ff propagation delay in picoseconds ...
[ "def", "max_freq", "(", "self", ",", "tech_in_nm", "=", "130", ",", "ffoverhead", "=", "None", ")", ":", "cp_length", "=", "self", ".", "max_length", "(", ")", "scale_factor", "=", "130.0", "/", "tech_in_nm", "if", "ffoverhead", "is", "None", ":", "clock...
Estimates the max frequency of a block in MHz. :param tech_in_nm: the size of the circuit technology to be estimated (for example, 65 is 65nm and 250 is 0.25um) :param ffoverhead: setup and ff propagation delay in picoseconds :return: a number representing an estimate of the max fre...
[ "Estimates", "the", "max", "frequency", "of", "a", "block", "in", "MHz", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/analysis/estimate.py#L234-L254
UCSBarchlab/PyRTL
pyrtl/analysis/estimate.py
TimingAnalysis.critical_path
def critical_path(self, print_cp=True, cp_limit=100): """ Takes a timing map and returns the critical paths of the system. :param print_cp: Whether to print the critical path to the terminal after calculation :return: a list containing tuples with the 'first' wire as the ...
python
def critical_path(self, print_cp=True, cp_limit=100): """ Takes a timing map and returns the critical paths of the system. :param print_cp: Whether to print the critical path to the terminal after calculation :return: a list containing tuples with the 'first' wire as the ...
[ "def", "critical_path", "(", "self", ",", "print_cp", "=", "True", ",", "cp_limit", "=", "100", ")", ":", "critical_paths", "=", "[", "]", "# storage of all completed critical paths", "wire_src_map", ",", "dst_map", "=", "self", ".", "block", ".", "net_connectio...
Takes a timing map and returns the critical paths of the system. :param print_cp: Whether to print the critical path to the terminal after calculation :return: a list containing tuples with the 'first' wire as the first value and the critical paths (which themselves are lists ...
[ "Takes", "a", "timing", "map", "and", "returns", "the", "critical", "paths", "of", "the", "system", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/analysis/estimate.py#L267-L306
UCSBarchlab/PyRTL
pyrtl/analysis/estimate.py
TimingAnalysis.print_critical_paths
def print_critical_paths(critical_paths): """ Prints the results of the critical path length analysis. Done by default by the `timing_critical_path()` function. """ line_indent = " " * 2 # print the critical path for cp_with_num in enumerate(critical_paths): ...
python
def print_critical_paths(critical_paths): """ Prints the results of the critical path length analysis. Done by default by the `timing_critical_path()` function. """ line_indent = " " * 2 # print the critical path for cp_with_num in enumerate(critical_paths): ...
[ "def", "print_critical_paths", "(", "critical_paths", ")", ":", "line_indent", "=", "\" \"", "*", "2", "# print the critical path", "for", "cp_with_num", "in", "enumerate", "(", "critical_paths", ")", ":", "print", "(", "\"Critical path\"", ",", "cp_with_num", "[",...
Prints the results of the critical path length analysis. Done by default by the `timing_critical_path()` function.
[ "Prints", "the", "results", "of", "the", "critical", "path", "length", "analysis", ".", "Done", "by", "default", "by", "the", "timing_critical_path", "()", "function", "." ]
train
https://github.com/UCSBarchlab/PyRTL/blob/0988e5c9c10ededd5e1f58d5306603f9edf4b3e2/pyrtl/analysis/estimate.py#L309-L320
v1k45/python-qBittorrent
qbittorrent/client.py
Client._post
def _post(self, endpoint, data, **kwargs): """ Method to perform POST request on the API. :param endpoint: Endpoint of the API. :param data: POST DATA for the request. :param kwargs: Other keyword arguments for requests. :return: Response of the POST request. ""...
python
def _post(self, endpoint, data, **kwargs): """ Method to perform POST request on the API. :param endpoint: Endpoint of the API. :param data: POST DATA for the request. :param kwargs: Other keyword arguments for requests. :return: Response of the POST request. ""...
[ "def", "_post", "(", "self", ",", "endpoint", ",", "data", ",", "*", "*", "kwargs", ")", ":", "return", "self", ".", "_request", "(", "endpoint", ",", "'post'", ",", "data", ",", "*", "*", "kwargs", ")" ]
Method to perform POST request on the API. :param endpoint: Endpoint of the API. :param data: POST DATA for the request. :param kwargs: Other keyword arguments for requests. :return: Response of the POST request.
[ "Method", "to", "perform", "POST", "request", "on", "the", "API", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L46-L56
v1k45/python-qBittorrent
qbittorrent/client.py
Client._request
def _request(self, endpoint, method, data=None, **kwargs): """ Method to hanle both GET and POST requests. :param endpoint: Endpoint of the API. :param method: Method of HTTP request. :param data: POST DATA for the request. :param kwargs: Other keyword arguments. ...
python
def _request(self, endpoint, method, data=None, **kwargs): """ Method to hanle both GET and POST requests. :param endpoint: Endpoint of the API. :param method: Method of HTTP request. :param data: POST DATA for the request. :param kwargs: Other keyword arguments. ...
[ "def", "_request", "(", "self", ",", "endpoint", ",", "method", ",", "data", "=", "None", ",", "*", "*", "kwargs", ")", ":", "final_url", "=", "self", ".", "url", "+", "endpoint", "if", "not", "self", ".", "_is_authenticated", ":", "raise", "LoginRequi...
Method to hanle both GET and POST requests. :param endpoint: Endpoint of the API. :param method: Method of HTTP request. :param data: POST DATA for the request. :param kwargs: Other keyword arguments. :return: Response for the request.
[ "Method", "to", "hanle", "both", "GET", "and", "POST", "requests", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L58-L91
v1k45/python-qBittorrent
qbittorrent/client.py
Client.login
def login(self, username='admin', password='admin'): """ Method to authenticate the qBittorrent Client. Declares a class attribute named ``session`` which stores the authenticated session if the login is correct. Else, shows the login error. :param username: Username. ...
python
def login(self, username='admin', password='admin'): """ Method to authenticate the qBittorrent Client. Declares a class attribute named ``session`` which stores the authenticated session if the login is correct. Else, shows the login error. :param username: Username. ...
[ "def", "login", "(", "self", ",", "username", "=", "'admin'", ",", "password", "=", "'admin'", ")", ":", "self", ".", "session", "=", "requests", ".", "Session", "(", ")", "login", "=", "self", ".", "session", ".", "post", "(", "self", ".", "url", ...
Method to authenticate the qBittorrent Client. Declares a class attribute named ``session`` which stores the authenticated session if the login is correct. Else, shows the login error. :param username: Username. :param password: Password. :return: Response to login req...
[ "Method", "to", "authenticate", "the", "qBittorrent", "Client", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L93-L113
v1k45/python-qBittorrent
qbittorrent/client.py
Client.torrents
def torrents(self, **filters): """ Returns a list of torrents matching the supplied filters. :param filter: Current status of the torrents. :param category: Fetch all torrents with the supplied label. :param sort: Sort torrents by. :param reverse: Enable reverse sorting....
python
def torrents(self, **filters): """ Returns a list of torrents matching the supplied filters. :param filter: Current status of the torrents. :param category: Fetch all torrents with the supplied label. :param sort: Sort torrents by. :param reverse: Enable reverse sorting....
[ "def", "torrents", "(", "self", ",", "*", "*", "filters", ")", ":", "params", "=", "{", "}", "for", "name", ",", "value", "in", "filters", ".", "items", "(", ")", ":", "# make sure that old 'status' argument still works", "name", "=", "'filter'", "if", "na...
Returns a list of torrents matching the supplied filters. :param filter: Current status of the torrents. :param category: Fetch all torrents with the supplied label. :param sort: Sort torrents by. :param reverse: Enable reverse sorting. :param limit: Limit the number of torrents...
[ "Returns", "a", "list", "of", "torrents", "matching", "the", "supplied", "filters", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L150-L169
v1k45/python-qBittorrent
qbittorrent/client.py
Client.preferences
def preferences(self): """ Get the current qBittorrent preferences. Can also be used to assign individual preferences. For setting multiple preferences at once, see ``set_preferences`` method. Note: Even if this is a ``property``, to fetch the current preferences...
python
def preferences(self): """ Get the current qBittorrent preferences. Can also be used to assign individual preferences. For setting multiple preferences at once, see ``set_preferences`` method. Note: Even if this is a ``property``, to fetch the current preferences...
[ "def", "preferences", "(", "self", ")", ":", "prefs", "=", "self", ".", "_get", "(", "'query/preferences'", ")", "class", "Proxy", "(", "Client", ")", ":", "\"\"\"\n Proxy class to to allow assignment of individual preferences.\n this class overrides som...
Get the current qBittorrent preferences. Can also be used to assign individual preferences. For setting multiple preferences at once, see ``set_preferences`` method. Note: Even if this is a ``property``, to fetch the current preferences dict, you are required to call it ...
[ "Get", "the", "current", "qBittorrent", "preferences", ".", "Can", "also", "be", "used", "to", "assign", "individual", "preferences", ".", "For", "setting", "multiple", "preferences", "at", "once", "see", "set_preferences", "method", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L211-L268
v1k45/python-qBittorrent
qbittorrent/client.py
Client.download_from_link
def download_from_link(self, link, **kwargs): """ Download torrent using a link. :param link: URL Link or list of. :param savepath: Path to download the torrent. :param category: Label or Category of the torrent(s). :return: Empty JSON data. """ # old:ne...
python
def download_from_link(self, link, **kwargs): """ Download torrent using a link. :param link: URL Link or list of. :param savepath: Path to download the torrent. :param category: Label or Category of the torrent(s). :return: Empty JSON data. """ # old:ne...
[ "def", "download_from_link", "(", "self", ",", "link", ",", "*", "*", "kwargs", ")", ":", "# old:new format", "old_arg_map", "=", "{", "'save_path'", ":", "'savepath'", "}", "# , 'label': 'category'}", "# convert old option names to new option names", "options", "=", ...
Download torrent using a link. :param link: URL Link or list of. :param savepath: Path to download the torrent. :param category: Label or Category of the torrent(s). :return: Empty JSON data.
[ "Download", "torrent", "using", "a", "link", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L279-L307
v1k45/python-qBittorrent
qbittorrent/client.py
Client.download_from_file
def download_from_file(self, file_buffer, **kwargs): """ Download torrent using a file. :param file_buffer: Single file() buffer or list of. :param save_path: Path to download the torrent. :param label: Label of the torrent(s). :return: Empty JSON data. """ ...
python
def download_from_file(self, file_buffer, **kwargs): """ Download torrent using a file. :param file_buffer: Single file() buffer or list of. :param save_path: Path to download the torrent. :param label: Label of the torrent(s). :return: Empty JSON data. """ ...
[ "def", "download_from_file", "(", "self", ",", "file_buffer", ",", "*", "*", "kwargs", ")", ":", "if", "isinstance", "(", "file_buffer", ",", "list", ")", ":", "torrent_files", "=", "{", "}", "for", "i", ",", "f", "in", "enumerate", "(", "file_buffer", ...
Download torrent using a file. :param file_buffer: Single file() buffer or list of. :param save_path: Path to download the torrent. :param label: Label of the torrent(s). :return: Empty JSON data.
[ "Download", "torrent", "using", "a", "file", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L309-L330
v1k45/python-qBittorrent
qbittorrent/client.py
Client.add_trackers
def add_trackers(self, infohash, trackers): """ Add trackers to a torrent. :param infohash: INFO HASH of torrent. :param trackers: Trackers. """ data = {'hash': infohash.lower(), 'urls': trackers} return self._post('command/addTrackers', data=data...
python
def add_trackers(self, infohash, trackers): """ Add trackers to a torrent. :param infohash: INFO HASH of torrent. :param trackers: Trackers. """ data = {'hash': infohash.lower(), 'urls': trackers} return self._post('command/addTrackers', data=data...
[ "def", "add_trackers", "(", "self", ",", "infohash", ",", "trackers", ")", ":", "data", "=", "{", "'hash'", ":", "infohash", ".", "lower", "(", ")", ",", "'urls'", ":", "trackers", "}", "return", "self", ".", "_post", "(", "'command/addTrackers'", ",", ...
Add trackers to a torrent. :param infohash: INFO HASH of torrent. :param trackers: Trackers.
[ "Add", "trackers", "to", "a", "torrent", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L332-L341
v1k45/python-qBittorrent
qbittorrent/client.py
Client._process_infohash_list
def _process_infohash_list(infohash_list): """ Method to convert the infohash_list to qBittorrent API friendly values. :param infohash_list: List of infohash. """ if isinstance(infohash_list, list): data = {'hashes': '|'.join([h.lower() for h in infohash_list])} ...
python
def _process_infohash_list(infohash_list): """ Method to convert the infohash_list to qBittorrent API friendly values. :param infohash_list: List of infohash. """ if isinstance(infohash_list, list): data = {'hashes': '|'.join([h.lower() for h in infohash_list])} ...
[ "def", "_process_infohash_list", "(", "infohash_list", ")", ":", "if", "isinstance", "(", "infohash_list", ",", "list", ")", ":", "data", "=", "{", "'hashes'", ":", "'|'", ".", "join", "(", "[", "h", ".", "lower", "(", ")", "for", "h", "in", "infohash_...
Method to convert the infohash_list to qBittorrent API friendly values. :param infohash_list: List of infohash.
[ "Method", "to", "convert", "the", "infohash_list", "to", "qBittorrent", "API", "friendly", "values", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L344-L354
v1k45/python-qBittorrent
qbittorrent/client.py
Client.pause_multiple
def pause_multiple(self, infohash_list): """ Pause multiple torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/pauseAll', data=data)
python
def pause_multiple(self, infohash_list): """ Pause multiple torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/pauseAll', data=data)
[ "def", "pause_multiple", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/pauseAll'", ",", "data", "=", "data", ")" ]
Pause multiple torrents. :param infohash_list: Single or list() of infohashes.
[ "Pause", "multiple", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L370-L377
v1k45/python-qBittorrent
qbittorrent/client.py
Client.set_label
def set_label(self, infohash_list, label): """ Set the label on multiple torrents. IMPORTANT: OLD API method, kept as it is to avoid breaking stuffs. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) data[...
python
def set_label(self, infohash_list, label): """ Set the label on multiple torrents. IMPORTANT: OLD API method, kept as it is to avoid breaking stuffs. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) data[...
[ "def", "set_label", "(", "self", ",", "infohash_list", ",", "label", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "data", "[", "'label'", "]", "=", "label", "return", "self", ".", "_post", "(", "'command/setLabel'"...
Set the label on multiple torrents. IMPORTANT: OLD API method, kept as it is to avoid breaking stuffs. :param infohash_list: Single or list() of infohashes.
[ "Set", "the", "label", "on", "multiple", "torrents", ".", "IMPORTANT", ":", "OLD", "API", "method", "kept", "as", "it", "is", "to", "avoid", "breaking", "stuffs", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L379-L388
v1k45/python-qBittorrent
qbittorrent/client.py
Client.set_category
def set_category(self, infohash_list, category): """ Set the category on multiple torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) data['category'] = category return self._post('command/setCateg...
python
def set_category(self, infohash_list, category): """ Set the category on multiple torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) data['category'] = category return self._post('command/setCateg...
[ "def", "set_category", "(", "self", ",", "infohash_list", ",", "category", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "data", "[", "'category'", "]", "=", "category", "return", "self", ".", "_post", "(", "'comman...
Set the category on multiple torrents. :param infohash_list: Single or list() of infohashes.
[ "Set", "the", "category", "on", "multiple", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L390-L398
v1k45/python-qBittorrent
qbittorrent/client.py
Client.resume_multiple
def resume_multiple(self, infohash_list): """ Resume multiple paused torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/resumeAll', data=data)
python
def resume_multiple(self, infohash_list): """ Resume multiple paused torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/resumeAll', data=data)
[ "def", "resume_multiple", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/resumeAll'", ",", "data", "=", "data", ")" ]
Resume multiple paused torrents. :param infohash_list: Single or list() of infohashes.
[ "Resume", "multiple", "paused", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L414-L421
v1k45/python-qBittorrent
qbittorrent/client.py
Client.delete
def delete(self, infohash_list): """ Delete torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/delete', data=data)
python
def delete(self, infohash_list): """ Delete torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/delete', data=data)
[ "def", "delete", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/delete'", ",", "data", "=", "data", ")" ]
Delete torrents. :param infohash_list: Single or list() of infohashes.
[ "Delete", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L423-L430
v1k45/python-qBittorrent
qbittorrent/client.py
Client.delete_permanently
def delete_permanently(self, infohash_list): """ Permanently delete torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/deletePerm', data=data)
python
def delete_permanently(self, infohash_list): """ Permanently delete torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/deletePerm', data=data)
[ "def", "delete_permanently", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/deletePerm'", ",", "data", "=", "data", ")" ]
Permanently delete torrents. :param infohash_list: Single or list() of infohashes.
[ "Permanently", "delete", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L432-L439
v1k45/python-qBittorrent
qbittorrent/client.py
Client.recheck
def recheck(self, infohash_list): """ Recheck torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/recheck', data=data)
python
def recheck(self, infohash_list): """ Recheck torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/recheck', data=data)
[ "def", "recheck", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/recheck'", ",", "data", "=", "data", ")" ]
Recheck torrents. :param infohash_list: Single or list() of infohashes.
[ "Recheck", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L441-L448
v1k45/python-qBittorrent
qbittorrent/client.py
Client.increase_priority
def increase_priority(self, infohash_list): """ Increase priority of torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/increasePrio', data=data)
python
def increase_priority(self, infohash_list): """ Increase priority of torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/increasePrio', data=data)
[ "def", "increase_priority", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/increasePrio'", ",", "data", "=", "data", ")" ]
Increase priority of torrents. :param infohash_list: Single or list() of infohashes.
[ "Increase", "priority", "of", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L450-L457
v1k45/python-qBittorrent
qbittorrent/client.py
Client.decrease_priority
def decrease_priority(self, infohash_list): """ Decrease priority of torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/decreasePrio', data=data)
python
def decrease_priority(self, infohash_list): """ Decrease priority of torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/decreasePrio', data=data)
[ "def", "decrease_priority", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/decreasePrio'", ",", "data", "=", "data", ")" ]
Decrease priority of torrents. :param infohash_list: Single or list() of infohashes.
[ "Decrease", "priority", "of", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L459-L466
v1k45/python-qBittorrent
qbittorrent/client.py
Client.set_max_priority
def set_max_priority(self, infohash_list): """ Set torrents to maximum priority level. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/topPrio', data=data)
python
def set_max_priority(self, infohash_list): """ Set torrents to maximum priority level. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/topPrio', data=data)
[ "def", "set_max_priority", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/topPrio'", ",", "data", "=", "data", ")" ]
Set torrents to maximum priority level. :param infohash_list: Single or list() of infohashes.
[ "Set", "torrents", "to", "maximum", "priority", "level", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L468-L475
v1k45/python-qBittorrent
qbittorrent/client.py
Client.set_min_priority
def set_min_priority(self, infohash_list): """ Set torrents to minimum priority level. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/bottomPrio', data=data)
python
def set_min_priority(self, infohash_list): """ Set torrents to minimum priority level. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/bottomPrio', data=data)
[ "def", "set_min_priority", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/bottomPrio'", ",", "data", "=", "data", ")" ]
Set torrents to minimum priority level. :param infohash_list: Single or list() of infohashes.
[ "Set", "torrents", "to", "minimum", "priority", "level", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L477-L484
v1k45/python-qBittorrent
qbittorrent/client.py
Client.set_file_priority
def set_file_priority(self, infohash, file_id, priority): """ Set file of a torrent to a supplied priority level. :param infohash: INFO HASH of torrent. :param file_id: ID of the file to set priority. :param priority: Priority level of the file. """ if priority n...
python
def set_file_priority(self, infohash, file_id, priority): """ Set file of a torrent to a supplied priority level. :param infohash: INFO HASH of torrent. :param file_id: ID of the file to set priority. :param priority: Priority level of the file. """ if priority n...
[ "def", "set_file_priority", "(", "self", ",", "infohash", ",", "file_id", ",", "priority", ")", ":", "if", "priority", "not", "in", "[", "0", ",", "1", ",", "2", ",", "7", "]", ":", "raise", "ValueError", "(", "\"Invalid priority, refer WEB-UI docs for info....
Set file of a torrent to a supplied priority level. :param infohash: INFO HASH of torrent. :param file_id: ID of the file to set priority. :param priority: Priority level of the file.
[ "Set", "file", "of", "a", "torrent", "to", "a", "supplied", "priority", "level", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L486-L503
v1k45/python-qBittorrent
qbittorrent/client.py
Client.get_torrent_download_limit
def get_torrent_download_limit(self, infohash_list): """ Get download speed limit of the supplied torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/getTorrentsDlLimit', data=da...
python
def get_torrent_download_limit(self, infohash_list): """ Get download speed limit of the supplied torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/getTorrentsDlLimit', data=da...
[ "def", "get_torrent_download_limit", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/getTorrentsDlLimit'", ",", "data", "=", "data", ")" ]
Get download speed limit of the supplied torrents. :param infohash_list: Single or list() of infohashes.
[ "Get", "download", "speed", "limit", "of", "the", "supplied", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L542-L549
v1k45/python-qBittorrent
qbittorrent/client.py
Client.set_torrent_download_limit
def set_torrent_download_limit(self, infohash_list, limit): """ Set download speed limit of the supplied torrents. :param infohash_list: Single or list() of infohashes. :param limit: Speed limit in bytes. """ data = self._process_infohash_list(infohash_list) data...
python
def set_torrent_download_limit(self, infohash_list, limit): """ Set download speed limit of the supplied torrents. :param infohash_list: Single or list() of infohashes. :param limit: Speed limit in bytes. """ data = self._process_infohash_list(infohash_list) data...
[ "def", "set_torrent_download_limit", "(", "self", ",", "infohash_list", ",", "limit", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "data", ".", "update", "(", "{", "'limit'", ":", "limit", "}", ")", "return", "self...
Set download speed limit of the supplied torrents. :param infohash_list: Single or list() of infohashes. :param limit: Speed limit in bytes.
[ "Set", "download", "speed", "limit", "of", "the", "supplied", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L551-L560
v1k45/python-qBittorrent
qbittorrent/client.py
Client.get_torrent_upload_limit
def get_torrent_upload_limit(self, infohash_list): """ Get upoload speed limit of the supplied torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/getTorrentsUpLimit', data=data)
python
def get_torrent_upload_limit(self, infohash_list): """ Get upoload speed limit of the supplied torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/getTorrentsUpLimit', data=data)
[ "def", "get_torrent_upload_limit", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/getTorrentsUpLimit'", ",", "data", "=", "data", ")" ]
Get upoload speed limit of the supplied torrents. :param infohash_list: Single or list() of infohashes.
[ "Get", "upoload", "speed", "limit", "of", "the", "supplied", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L562-L569
v1k45/python-qBittorrent
qbittorrent/client.py
Client.set_torrent_upload_limit
def set_torrent_upload_limit(self, infohash_list, limit): """ Set upload speed limit of the supplied torrents. :param infohash_list: Single or list() of infohashes. :param limit: Speed limit in bytes. """ data = self._process_infohash_list(infohash_list) data.upd...
python
def set_torrent_upload_limit(self, infohash_list, limit): """ Set upload speed limit of the supplied torrents. :param infohash_list: Single or list() of infohashes. :param limit: Speed limit in bytes. """ data = self._process_infohash_list(infohash_list) data.upd...
[ "def", "set_torrent_upload_limit", "(", "self", ",", "infohash_list", ",", "limit", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "data", ".", "update", "(", "{", "'limit'", ":", "limit", "}", ")", "return", "self",...
Set upload speed limit of the supplied torrents. :param infohash_list: Single or list() of infohashes. :param limit: Speed limit in bytes.
[ "Set", "upload", "speed", "limit", "of", "the", "supplied", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L571-L580
v1k45/python-qBittorrent
qbittorrent/client.py
Client.set_preferences
def set_preferences(self, **kwargs): """ Set preferences of qBittorrent. Read all possible preferences @ http://git.io/vEgDQ :param kwargs: set preferences in kwargs form. """ json_data = "json={}".format(json.dumps(kwargs)) headers = {'content-type': 'applicatio...
python
def set_preferences(self, **kwargs): """ Set preferences of qBittorrent. Read all possible preferences @ http://git.io/vEgDQ :param kwargs: set preferences in kwargs form. """ json_data = "json={}".format(json.dumps(kwargs)) headers = {'content-type': 'applicatio...
[ "def", "set_preferences", "(", "self", ",", "*", "*", "kwargs", ")", ":", "json_data", "=", "\"json={}\"", ".", "format", "(", "json", ".", "dumps", "(", "kwargs", ")", ")", "headers", "=", "{", "'content-type'", ":", "'application/x-www-form-urlencoded'", "...
Set preferences of qBittorrent. Read all possible preferences @ http://git.io/vEgDQ :param kwargs: set preferences in kwargs form.
[ "Set", "preferences", "of", "qBittorrent", ".", "Read", "all", "possible", "preferences", "@", "http", ":", "//", "git", ".", "io", "/", "vEgDQ" ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L583-L593
v1k45/python-qBittorrent
qbittorrent/client.py
Client.toggle_sequential_download
def toggle_sequential_download(self, infohash_list): """ Toggle sequential download in supplied torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/toggleSequentialDownload', dat...
python
def toggle_sequential_download(self, infohash_list): """ Toggle sequential download in supplied torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/toggleSequentialDownload', dat...
[ "def", "toggle_sequential_download", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/toggleSequentialDownload'", ",", "data", "=", "data", ")...
Toggle sequential download in supplied torrents. :param infohash_list: Single or list() of infohashes.
[ "Toggle", "sequential", "download", "in", "supplied", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L609-L616
v1k45/python-qBittorrent
qbittorrent/client.py
Client.toggle_first_last_piece_priority
def toggle_first_last_piece_priority(self, infohash_list): """ Toggle first/last piece priority of supplied torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/toggleFirstLastPie...
python
def toggle_first_last_piece_priority(self, infohash_list): """ Toggle first/last piece priority of supplied torrents. :param infohash_list: Single or list() of infohashes. """ data = self._process_infohash_list(infohash_list) return self._post('command/toggleFirstLastPie...
[ "def", "toggle_first_last_piece_priority", "(", "self", ",", "infohash_list", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "return", "self", ".", "_post", "(", "'command/toggleFirstLastPiecePrio'", ",", "data", "=", "data"...
Toggle first/last piece priority of supplied torrents. :param infohash_list: Single or list() of infohashes.
[ "Toggle", "first", "/", "last", "piece", "priority", "of", "supplied", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L618-L625
v1k45/python-qBittorrent
qbittorrent/client.py
Client.force_start
def force_start(self, infohash_list, value=True): """ Force start selected torrents. :param infohash_list: Single or list() of infohashes. :param value: Force start value (bool) """ data = self._process_infohash_list(infohash_list) data.update({'value': json.dump...
python
def force_start(self, infohash_list, value=True): """ Force start selected torrents. :param infohash_list: Single or list() of infohashes. :param value: Force start value (bool) """ data = self._process_infohash_list(infohash_list) data.update({'value': json.dump...
[ "def", "force_start", "(", "self", ",", "infohash_list", ",", "value", "=", "True", ")", ":", "data", "=", "self", ".", "_process_infohash_list", "(", "infohash_list", ")", "data", ".", "update", "(", "{", "'value'", ":", "json", ".", "dumps", "(", "valu...
Force start selected torrents. :param infohash_list: Single or list() of infohashes. :param value: Force start value (bool)
[ "Force", "start", "selected", "torrents", "." ]
train
https://github.com/v1k45/python-qBittorrent/blob/04f9482a022dcc78c56b0b9acb9ca455f855ae24/qbittorrent/client.py#L627-L636
taogeT/flask-vue
flask_vue/__init__.py
vue_find_resource
def vue_find_resource(name, use_minified=None): """Resource finding function, also available in templates. :param name: Script to find a URL for. :param use_minified': If set to True/False, use/don't use minified. If None, honors VUE_USE_MINIFIED. :return: A URL. """ t...
python
def vue_find_resource(name, use_minified=None): """Resource finding function, also available in templates. :param name: Script to find a URL for. :param use_minified': If set to True/False, use/don't use minified. If None, honors VUE_USE_MINIFIED. :return: A URL. """ t...
[ "def", "vue_find_resource", "(", "name", ",", "use_minified", "=", "None", ")", ":", "target", "=", "list", "(", "filter", "(", "lambda", "x", ":", "x", "[", "'name'", "]", "==", "name", ",", "current_app", ".", "config", "[", "'VUE_CONFIGURATION'", "]",...
Resource finding function, also available in templates. :param name: Script to find a URL for. :param use_minified': If set to True/False, use/don't use minified. If None, honors VUE_USE_MINIFIED. :return: A URL.
[ "Resource", "finding", "function", "also", "available", "in", "templates", "." ]
train
https://github.com/taogeT/flask-vue/blob/7a742f1de60ce8e0ca5eb7a22f03d826f242b86b/flask_vue/__init__.py#L9-L27
nirum/tableprint
tableprint/utils.py
humantime
def humantime(time): """Converts a time in seconds to a reasonable human readable time Parameters ---------- t : float The number of seconds Returns ------- time : string The human readable formatted value of the given time """ try: time = float(time) ex...
python
def humantime(time): """Converts a time in seconds to a reasonable human readable time Parameters ---------- t : float The number of seconds Returns ------- time : string The human readable formatted value of the given time """ try: time = float(time) ex...
[ "def", "humantime", "(", "time", ")", ":", "try", ":", "time", "=", "float", "(", "time", ")", "except", "(", "ValueError", ",", "TypeError", ")", ":", "raise", "ValueError", "(", "\"Input must be numeric\"", ")", "# weeks", "if", "time", ">=", "7", "*",...
Converts a time in seconds to a reasonable human readable time Parameters ---------- t : float The number of seconds Returns ------- time : string The human readable formatted value of the given time
[ "Converts", "a", "time", "in", "seconds", "to", "a", "reasonable", "human", "readable", "time" ]
train
https://github.com/nirum/tableprint/blob/50ab4b96706fce8ee035a4d48cb456e3271eab3d/tableprint/utils.py#L13-L67
nirum/tableprint
tableprint/utils.py
ansi_len
def ansi_len(string): """Extra length due to any ANSI sequences in the string.""" return len(string) - wcswidth(re.compile(r'\x1b[^m]*m').sub('', string))
python
def ansi_len(string): """Extra length due to any ANSI sequences in the string.""" return len(string) - wcswidth(re.compile(r'\x1b[^m]*m').sub('', string))
[ "def", "ansi_len", "(", "string", ")", ":", "return", "len", "(", "string", ")", "-", "wcswidth", "(", "re", ".", "compile", "(", "r'\\x1b[^m]*m'", ")", ".", "sub", "(", "''", ",", "string", ")", ")" ]
Extra length due to any ANSI sequences in the string.
[ "Extra", "length", "due", "to", "any", "ANSI", "sequences", "in", "the", "string", "." ]
train
https://github.com/nirum/tableprint/blob/50ab4b96706fce8ee035a4d48cb456e3271eab3d/tableprint/utils.py#L70-L72
nirum/tableprint
tableprint/utils.py
format_line
def format_line(data, linestyle): """Formats a list of elements using the given line style""" return linestyle.begin + linestyle.sep.join(data) + linestyle.end
python
def format_line(data, linestyle): """Formats a list of elements using the given line style""" return linestyle.begin + linestyle.sep.join(data) + linestyle.end
[ "def", "format_line", "(", "data", ",", "linestyle", ")", ":", "return", "linestyle", ".", "begin", "+", "linestyle", ".", "sep", ".", "join", "(", "data", ")", "+", "linestyle", ".", "end" ]
Formats a list of elements using the given line style
[ "Formats", "a", "list", "of", "elements", "using", "the", "given", "line", "style" ]
train
https://github.com/nirum/tableprint/blob/50ab4b96706fce8ee035a4d48cb456e3271eab3d/tableprint/utils.py#L75-L77
nirum/tableprint
tableprint/utils.py
parse_width
def parse_width(width, n): """Parses an int or array of widths Parameters ---------- width : int or array_like n : int """ if isinstance(width, int): widths = [width] * n else: assert len(width) == n, "Widths and data do not match" widths = width return wid...
python
def parse_width(width, n): """Parses an int or array of widths Parameters ---------- width : int or array_like n : int """ if isinstance(width, int): widths = [width] * n else: assert len(width) == n, "Widths and data do not match" widths = width return wid...
[ "def", "parse_width", "(", "width", ",", "n", ")", ":", "if", "isinstance", "(", "width", ",", "int", ")", ":", "widths", "=", "[", "width", "]", "*", "n", "else", ":", "assert", "len", "(", "width", ")", "==", "n", ",", "\"Widths and data do not mat...
Parses an int or array of widths Parameters ---------- width : int or array_like n : int
[ "Parses", "an", "int", "or", "array", "of", "widths" ]
train
https://github.com/nirum/tableprint/blob/50ab4b96706fce8ee035a4d48cb456e3271eab3d/tableprint/utils.py#L80-L95
nirum/tableprint
tableprint/printer.py
table
def table(data, headers=None, format_spec=FMT, width=WIDTH, align=ALIGN, style=STYLE, out=sys.stdout): """Print a table with the given data Parameters ---------- data : array_like An (m x n) array containing the data to print (m rows of n columns) headers : list, optional A list of...
python
def table(data, headers=None, format_spec=FMT, width=WIDTH, align=ALIGN, style=STYLE, out=sys.stdout): """Print a table with the given data Parameters ---------- data : array_like An (m x n) array containing the data to print (m rows of n columns) headers : list, optional A list of...
[ "def", "table", "(", "data", ",", "headers", "=", "None", ",", "format_spec", "=", "FMT", ",", "width", "=", "WIDTH", ",", "align", "=", "ALIGN", ",", "style", "=", "STYLE", ",", "out", "=", "sys", ".", "stdout", ")", ":", "# Number of columns in the t...
Print a table with the given data Parameters ---------- data : array_like An (m x n) array containing the data to print (m rows of n columns) headers : list, optional A list of n strings consisting of the header of each of the n columns (Default: None) format_spec : string, option...
[ "Print", "a", "table", "with", "the", "given", "data" ]
train
https://github.com/nirum/tableprint/blob/50ab4b96706fce8ee035a4d48cb456e3271eab3d/tableprint/printer.py#L79-L123
nirum/tableprint
tableprint/printer.py
header
def header(headers, width=WIDTH, align=ALIGN, style=STYLE, add_hr=True): """Returns a formatted row of column header strings Parameters ---------- headers : list of strings A list of n strings, the column headers width : int The width of each column (Default: 11) style : strin...
python
def header(headers, width=WIDTH, align=ALIGN, style=STYLE, add_hr=True): """Returns a formatted row of column header strings Parameters ---------- headers : list of strings A list of n strings, the column headers width : int The width of each column (Default: 11) style : strin...
[ "def", "header", "(", "headers", ",", "width", "=", "WIDTH", ",", "align", "=", "ALIGN", ",", "style", "=", "STYLE", ",", "add_hr", "=", "True", ")", ":", "tablestyle", "=", "STYLES", "[", "style", "]", "widths", "=", "parse_width", "(", "width", ","...
Returns a formatted row of column header strings Parameters ---------- headers : list of strings A list of n strings, the column headers width : int The width of each column (Default: 11) style : string or tuple, optional A formatting style (see STYLES) Returns --...
[ "Returns", "a", "formatted", "row", "of", "column", "header", "strings" ]
train
https://github.com/nirum/tableprint/blob/50ab4b96706fce8ee035a4d48cb456e3271eab3d/tableprint/printer.py#L126-L160
nirum/tableprint
tableprint/printer.py
row
def row(values, width=WIDTH, format_spec=FMT, align=ALIGN, style=STYLE): """Returns a formatted row of data Parameters ---------- values : array_like An iterable array of data (numbers or strings), each value is printed in a separate column width : int The width of each column (Def...
python
def row(values, width=WIDTH, format_spec=FMT, align=ALIGN, style=STYLE): """Returns a formatted row of data Parameters ---------- values : array_like An iterable array of data (numbers or strings), each value is printed in a separate column width : int The width of each column (Def...
[ "def", "row", "(", "values", ",", "width", "=", "WIDTH", ",", "format_spec", "=", "FMT", ",", "align", "=", "ALIGN", ",", "style", "=", "STYLE", ")", ":", "tablestyle", "=", "STYLES", "[", "style", "]", "widths", "=", "parse_width", "(", "width", ","...
Returns a formatted row of data Parameters ---------- values : array_like An iterable array of data (numbers or strings), each value is printed in a separate column width : int The width of each column (Default: 11) format_spec : string The precision format string used to ...
[ "Returns", "a", "formatted", "row", "of", "data" ]
train
https://github.com/nirum/tableprint/blob/50ab4b96706fce8ee035a4d48cb456e3271eab3d/tableprint/printer.py#L163-L216
nirum/tableprint
tableprint/printer.py
hrule
def hrule(n=1, width=WIDTH, linestyle=LineStyle('', '─', '─', '')): """Returns a formatted string used as a border between table rows Parameters ---------- n : int The number of columns in the table width : int The width of each column (Default: 11) linestyle : tuple A...
python
def hrule(n=1, width=WIDTH, linestyle=LineStyle('', '─', '─', '')): """Returns a formatted string used as a border between table rows Parameters ---------- n : int The number of columns in the table width : int The width of each column (Default: 11) linestyle : tuple A...
[ "def", "hrule", "(", "n", "=", "1", ",", "width", "=", "WIDTH", ",", "linestyle", "=", "LineStyle", "(", "''", ",", "'─', ", "'", "', ''", ")", ":", "", "", "", "widths", "=", "parse_width", "(", "width", ",", "n", ")", "hrstr", "=", "linestyle",...
Returns a formatted string used as a border between table rows Parameters ---------- n : int The number of columns in the table width : int The width of each column (Default: 11) linestyle : tuple A LineStyle namedtuple containing the characters for (begin, hr, sep, end). ...
[ "Returns", "a", "formatted", "string", "used", "as", "a", "border", "between", "table", "rows" ]
train
https://github.com/nirum/tableprint/blob/50ab4b96706fce8ee035a4d48cb456e3271eab3d/tableprint/printer.py#L219-L242