-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
scrufulufugus
committed
Jun 8, 2024
0 parents
commit 9523330
Showing
5 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Optimized GPU-Based Matrix Inversion Though The Use of Thread-Data Remapping | ||
|
||
## PDF Versions | ||
|
||
[Proposal - Rendered](https://github.com/scrufulufugus/tdr-inverse-materials/blob/pdf/Proposal.pdf) | ||
|
||
[Final Presentation - Rendered](https://github.com/scrufulufugus/tdr-inverse-materials/blob/pdf/Presentation.pdf) | ||
|
||
[Final Paper - Rendered](https://github.com/scrufulufugus/tdr-inverse-materials/blob/pdf/Paper.pdf) | ||
|
||
## About <a name="about"></a> | ||
|
||
This is a collection of papers and presentation materials done as a masters project. The code that these documents relate to [can be found here](https://github.com/scrufulufugus/tdr-inverse). | ||
|
||
## Building <a name="building"></a> | ||
|
||
All documents are written with [Emacs Org Mode](https://orgmode.org/), which is compiled to LaTeX, which is compiled to PDFs. This process is automated by nix and deployed on commit to the [pdf](https://github.com/scrufulufugus/tdr-inverse-materials/tree/pdf) branch. The nix packages can be built locally if one wants to: | ||
|
||
1. Install nix with flake and nix-command support, you can follow [this guide](https://zero-to-nix.com/start/install): | ||
|
||
``` sh | ||
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install | ||
``` | ||
|
||
2. Clone this repository and enter it: | ||
|
||
```sh | ||
git clone https://github.com/scrufulufugus/tdr-inverse-materials.git | ||
cd tdr-inverse-materials | ||
``` | ||
|
||
3. Build with nix | ||
|
||
```sh | ||
nix build -o results | ||
# Copy the PDFs out of the nix store | ||
cp -L --no-preserve=all -t ./ ./result/* | ||
``` |