diff --git a/src/panfrost/bifrost/isa_parse.py b/src/panfrost/bifrost/bifrost_isa.py similarity index 100% rename from src/panfrost/bifrost/isa_parse.py rename to src/panfrost/bifrost/bifrost_isa.py diff --git a/src/panfrost/bifrost/gen_disasm.py b/src/panfrost/bifrost/gen_disasm.py index e487e4b0524..11acf5ae9b3 100644 --- a/src/panfrost/bifrost/gen_disasm.py +++ b/src/panfrost/bifrost/gen_disasm.py @@ -22,7 +22,7 @@ import sys import itertools -from isa_parse import parse_instructions, opname_to_c, expand_states +from bifrost_isa import parse_instructions, opname_to_c, expand_states from mako.template import Template instructions = parse_instructions(sys.argv[1], include_unused = True) diff --git a/src/panfrost/bifrost/gen_pack.py b/src/panfrost/bifrost/gen_pack.py index af3b2866e96..d265d93bf11 100644 --- a/src/panfrost/bifrost/gen_pack.py +++ b/src/panfrost/bifrost/gen_pack.py @@ -21,7 +21,7 @@ # IN THE SOFTWARE. import sys -from isa_parse import parse_instructions, opname_to_c +from bifrost_isa import parse_instructions, opname_to_c from mako.template import Template instructions = parse_instructions(sys.argv[1])