https://github.com/danieldk/ir-examples
IR16/17 examples
https://github.com/danieldk/ir-examples
Last synced: 3 months ago
JSON representation
IR16/17 examples
- Host: GitHub
- URL: https://github.com/danieldk/ir-examples
- Owner: danieldk
- Created: 2016-10-24T14:14:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-25T21:06:44.000Z (over 8 years ago)
- Last Synced: 2025-01-02T01:49:35.216Z (5 months ago)
- Language: Jupyter Notebook
- Size: 619 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IR Hauptseminar 16/17 examples
## Compiling
Most of the examples will be in Rust. If you want to run them, install
[rustup](https://www.rustup.rs/) and use nightly:~~~{.bash}
$ rustup install nightly
$ rustup default nightly
~~~You can then use build, test, or benchmark a program by going to one of
the program directories and running (respectively):~~~{.bash}
$ cargo build
$ cargo test
$ cargo bench
~~~Let me know if you have trouble understanding one of the programs. I can
cover it in more depth during the lecture or provide a Java/Python
implementation.## Disclaimer
Most (if not all) of these are just toy examples.