Skip to content

Commit 9819fc3

Browse files
authored
update sysname (apache#43)
2 parents d830281 + 4470ada commit 9819fc3

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# DeepVisor
2-
DeepVisor is a JIT compiler for PyTorch programs. It can extract the operator graph from PyTorch programs and optimize the graph with a wide range of deep learning graph compilers.
1+
# MagPy
2+
MagPy is a JIT compiler for PyTorch programs. It can extract the operator graph from PyTorch programs and optimize the graph with a wide range of deep learning graph compilers.
33

44
# Installation
5-
DeepVisor now supports Python 3.9. The support of other Python versions is working in progress.
5+
MagPy now supports Python 3.9. The support of other Python versions is working in progress.
66

77
1. Install CUDA. CUDA 11.8 is recommended.
88
2. Install dependencies:
99
```bash
1010
pip install -r requirements.txt -f https://download.pytorch.org/whl/torch_stable.html
1111
```
12-
3. Install DeepVisor:
12+
3. Install MagPy:
1313
```bash
1414
pip install -e .
1515
```
@@ -21,14 +21,14 @@ DeepVisor now supports Python 3.9. The support of other Python versions is worki
2121

2222
# Example Usage
2323

24-
The following script compiles and runs a simple PyTorch program with DeepVisor.
24+
The following script compiles and runs a simple PyTorch program with MagPy.
2525

2626
```python
2727
LD_PRELOAD=build/ldlong.v3.9.12.so python test/example.py
2828
```
2929

3030
# Citation
31-
If you find DeepVisor useful in your research, please consider citing the following paper:
31+
If you find MagPy useful in your research, please consider citing the following paper:
3232

33-
> DeepVisor: Effective Operator Graph Instantiation for Deep Learning by Execution State Monitoring; Chen Zhang, Rongchao Dong, Haojie Wang, Runxin Zhong, Jike Chen, and Jidong Zhai, Tsinghua University; will be appeared in USENIX ATC'24.
33+
> MagPy: Effective Operator Graph Instantiation for Deep Learning by Execution State Monitoring; Chen Zhang, Rongchao Dong, Haojie Wang, Runxin Zhong, Jike Chen, and Jidong Zhai, Tsinghua University; will be appeared in USENIX ATC'24.
3434

frontend/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def is_user_defined_func(func: Callable[..., Any]) -> bool:
229229
return False
230230

231231
root_module = get_root_module(func)
232-
print("root module", func, "===is==", root_module, type(root_module))
232+
# print("root module", func, "===is==", root_module, type(root_module))
233233
if root_module == 'torch' and hasattr(
234234
func, '__name__') and func.__name__ == '_call_impl':
235235
return True

0 commit comments

Comments
 (0)