You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -10,14 +10,14 @@ Caveats:
10
10
* I'm developing on macOS and Python 3.5 at the moment
11
11
* PyTorch2c currently supports PyTorch version 0.1.10
12
12
13
-
**NOTE: autograd is currently being refactored in PyTorch. Work on this project will resume as soon as things settle down.**
13
+
**NOTE: autograd is currently being refactored in PyTorch: this project is of limited utility until the autograd branch in PyTorch is merged**
14
14
15
15
## TODO
16
16
17
17
*[x] Solve storage serialization issues
18
18
*[ ] Complete testing infrastructure (generate a number of input-output pairs)
19
19
*[x] Generate CMakeLists.txt as part of output for tests
20
-
*[] Implement wrappers for the complete API (big one)
20
+
*[-] Implement wrappers for the complete API (in progress)
21
21
22
22
## Trying things out
23
23
@@ -28,8 +28,9 @@ sh scripts/build_deps.sh
28
28
```
29
29
Now you can execute tests with `sh scripts/run_test.sh [test-name]`, where `test-name` is the name of the corresponding Python script in the `test` directory, e.g.
30
30
```
31
+
sh scripts/run_test.sh base
31
32
sh scripts/run_test.sh feedforward
32
-
sh scripts/run_test.sh mnist
33
+
sh scripts/run_test.sh mnist # currently broken due to PyTorch being in flux (issue with ConvNdBackward not being inspectable)
33
34
```
34
35
Tests return `1` if the value of the output tensor from the compiled code matches the value of the output tensor computed from PyTorch while compiling.
0 commit comments