MLCompilerBridge
Tools for streamlining communication with ML models for compiler optimizations.
|
Variables | |
version_regex = re.compile(r"^project\(MLCompilerBridge VERSION (?P<version>[^)]+)\)$") | |
str | toml_field_regex = r'version[ ]*=[ ]*"(.*)"' |
str | VERSION = "" |
vmatch = version_regex.match(line) | |
list | lines = [] |
str | new_text = f'version = "{VERSION}"\n' |
fetch_version.lines = [] |
Definition at line 23 of file fetch_version.py.
str fetch_version.new_text = f'version = "{VERSION}"\n' |
Definition at line 30 of file fetch_version.py.
str fetch_version.toml_field_regex = r'version[ ]*=[ ]*"(.*)"' |
Definition at line 12 of file fetch_version.py.
fetch_version.VERSION = "" |
Definition at line 14 of file fetch_version.py.
fetch_version.version_regex = re.compile(r"^project\(MLCompilerBridge VERSION (?P<version>[^)]+)\)$") |
Definition at line 11 of file fetch_version.py.
fetch_version.vmatch = version_regex.match(line) |
Definition at line 17 of file fetch_version.py.