We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b41588a commit dc9a3cdCopy full SHA for dc9a3cd
actixtorch/Makefile
@@ -7,6 +7,12 @@ lint:
7
test:
8
cargo test --quiet
9
10
+build:
11
+ docker build -t torch .
12
+
13
+rundocker:
14
+ docker run -it --rm -p 8080:8080 torch
15
16
run:
17
cargo run
18
actixtorch/README.md
@@ -0,0 +1,12 @@
1
+### Working PyTorch Actix
2
3
+This runs PyTorch + Actix
4
5
+* To DO: figure the final containerized steps:
6
+currently missing `libtorch_cpu.so:`
+```bash
+docker run -it --rm -p 8080:8080 torch
+actixtorch: error while loading shared libraries: libtorch_cpu.so: cannot open shared object file: No such file or directory
+make: *** [Makefile:14: rundocker] Error 127
+```
0 commit comments