Skip to content

Commit 0fa10d1

Browse files
authored
Merge pull request #171 from esc/rename-project-in-docs
Rename project in docs
2 parents c8c0d7a + 00343fc commit 0fa10d1

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
# -- Project information -----------------------------------------------------
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

9-
project = 'numba-rvsdg'
9+
project = 'numba-scfg'
1010
copyright = '2023, Numba Developers'
1111
author = 'Numba Developers'
12-
release = '0.0.6-dev0'
12+
release = '0.0.8-dev0'
1313

1414
import os
1515
import sys

docs/source/contributing.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Contributing Guidelines
33
=======================
44

5-
numba-rvsdg originated to fulfill the needs of the Numba_ project.
5+
numba-scfg originated to fulfill the needs of the Numba_ project.
66
It is maintained mostly by the Numba team. We tend to prioritize
77
the needs and constraints of Numba over other conflicting desires.
88

@@ -21,7 +21,7 @@ Communication methods
2121
Forum
2222
-----
2323

24-
numba-rvsdg uses the Numba Discourse as a forum for longer running threads such as
24+
numba-scfg uses the Numba Discourse as a forum for longer running threads such as
2525
design discussions and roadmap planning. There are various categories available
2626
and it can be reached at: `numba.discourse.group
2727
<https://numba.discourse.group/>`_.
@@ -32,15 +32,15 @@ Bug reports
3232
-----------
3333

3434
We use the
35-
`Github issue tracker <https://github.com/numba/numba-rvsdg/issues>`_
35+
`Github issue tracker <https://github.com/numba/numba-scfg/issues>`_
3636
to track both bug reports and feature requests. If you report an
3737
issue, please include:
3838

3939
* What you are trying to do.
4040

4141
* Your operating system.
4242

43-
* What version of numba-rvsdg you are running.
43+
* What version of numba-scfg you are running.
4444

4545
* A description of the problem---for example, the full error
4646
traceback or the unexpected results you are getting.
@@ -55,7 +55,7 @@ Pull requests
5555

5656
To contribute code:
5757

58-
#. Fork our `Github repository <https://github.com/numba/numba-rvsdg>`_.
58+
#. Fork our `Github repository <https://github.com/numba/numba-scfg>`_.
5959

6060
#. Create a branch representing your work.
6161

@@ -78,9 +78,9 @@ Coding conventions
7878
Documentation
7979
=============
8080

81-
This numba-rvsdg documentation is built using Sphinx and maintained
81+
This numba-scfg documentation is built using Sphinx and maintained
8282
in the ``docs`` directory inside the
83-
`numba-rvsdg repository <https://github.com/numba/numba-rvsdg>`_.
83+
`numba-scfg repository <https://github.com/numba/numba-scfg>`_.
8484

8585
#. Edit the source files under ``docs/source/``.
8686

docs/source/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
.. numba-rvsdg documentation master file, created by
1+
.. numba-scfg documentation master file, created by
22
sphinx-quickstart on Tue May 16 17:22:12 2023.
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55
66
===========
7-
numba-rvsdg
7+
numba-scfg
88
===========
99

10-
:emphasis:`Numba compatible RVSDG (Regionalized Value State Dependence Graph) utilities.`
10+
:emphasis:`Numba compatible SCFG (Structured Control Flow Graph) utilities.`
1111

12-
This repository contains Numba_ compatible utilities for working with RVSDGs
13-
(Regionalized Value State Dependency Graphs). RVSDGs are a type of Intermediary
12+
This repository contains Numba_ compatible utilities for working with SCFGs
13+
(Structured Control Flow Graphs). SCFGs are a type of Intermediary
1414
Representation (IR) suitable for regularizing Python bytecode within Numba_.
1515

1616
The code in this repository is an implementation of the CFG restructuring

docs/source/user_guide/install.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Setting up the conda development environment
88

99
The conda environment and all necessary dependencies can be setup using the following commands::
1010

11-
conda env create -n numba-rvsdg python=3.11
12-
conda activate numba-rvsdg
11+
conda env create -n numba-scfg python=3.11
12+
conda activate numba-scfg
1313
pip install pyyaml python-graphviz
1414

1515
.. note::
@@ -18,14 +18,14 @@ The conda environment and all necessary dependencies can be setup using the foll
1818
Installation using pip
1919
----------------------
2020

21-
Users can install numba-rvsdg using pip as follows::
21+
Users can install numba-scfg using pip as follows::
2222

23-
pip install numba-rvsdg
23+
pip install numba-scfg
2424

25-
Alternatively, after setting up the appropriate environment, Users can also manually install numba-rvsdg using it's git repository.
25+
Alternatively, after setting up the appropriate environment, Users can also manually install numba-scfg using it's git repository.
2626
A development version of the package can be installed as follows::
2727

28-
git clone https://github.com/numba/numba-rvsdg.git
29-
cd numba-rvsdg/
30-
conda activate numba-rvsdg # or the enviroment that you've setup
28+
git clone https://github.com/numba/numba-scfg.git
29+
cd numba-scfg/
30+
conda activate numba-scfg # or the enviroment that you've setup
3131
pip install -e .[dev]

0 commit comments

Comments
 (0)