This contains my bachelors thesis and associated tex files, code snippets and maybe more. Topic: Data Movement in Heterogeneous Memories with Intel Data Streaming Accelerator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
311 B

  1. { sources ? import ./sources.nix
  2. , pkgs ? import sources.nixpkgs { }
  3. }:
  4. let
  5. tex = import ./tex-toolchain.nix { inherit pkgs; };
  6. inherit (import sources."gitignore.nix" { inherit (pkgs) lib; }) gitignoreSource;
  7. in
  8. {
  9. pdf = pkgs.callPackage ./build.nix {
  10. inherit gitignoreSource;
  11. inherit tex;
  12. };
  13. }