Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ within Numba.
The code in this repository is an implementation of the CFG restructuring
algorithms in Bahmann2015, specifically those from section 4.1 and 4.2: namely
"loop restructuring" and "branch restructuring". These are interesting for
Numba because they serve to clearly identify regions withing the Python
Numba because they serve to clearly identify regions within the Python
bytecode.

## dependencies
Expand Down Expand Up @@ -42,7 +42,7 @@ numba_rvsdg
├── core
│   ├── datastructures
│   │   ├── basic_block.py # BasicBlock implementation
│   │   ├── scfg.py # SCFG implementation, maps labels to blocks
│   │   ├── scfg.py # SCFG implementation, maps labels to blocks
│   │   ├── byte_flow.py # ByteFlow implementation, SCFG + bytecode
│   │   ├── flow_info.py # Converts program to ByteFlow
│   │   └── labels.py # Collection of Label classes
Expand Down