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
CUDA and `rustc` are of course, mandatory dependencies. `arch=compute_86` is recommended, since its usability is verified. For lower versions, please modify `lsm/build.rs`:
@@ -58,10 +71,16 @@ CUDA and `rustc` are of course, mandatory dependencies. `arch=compute_86` is rec
58
71
59
72
Once you have the correct CUDA (and nvidia driver) and Rust Env, compilation should be smooth (if the source of Rust is correctly set). For (us) Chinese users, the source of rust libs should be changed to some faster domestic mirror sources, otherwise... wait for 10 years and the compilation might complete.
60
73
61
-
Currently, there is only one usable executable file in this repo:
74
+
To run the simulator:
62
75
```shell
63
76
cd lsm
64
77
cargo build --release
65
78
cargo run --release --bin=sim
66
79
```
80
+
To run the editor:
81
+
```shell
82
+
cd lsm
83
+
cargo build --release
84
+
cargo run --release --bin=edit
85
+
```
67
86
And there u go, a screen pops up and after setting the initial pose (left button, long press), you will see the simulated stuffs...
0 commit comments