forked from hasktorch/hasktorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
185 lines (167 loc) · 6.47 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
{
description = "Hasktorch";
nixConfig = {
substituters = [
https://cache.nixos.org
https://hydra.iohk.io
https://hasktorch.cachix.org
];
trusted-public-keys = [
hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=
hasktorch.cachix.org-1:wLjNS6HuFVpmzbmv01lxwjdCOtWRD8pQVR3Zr/wVoQc=
];
bash-prompt = "\\[\\033[1m\\][dev-hasktorch]\\[\\033\[m\\]\\040\\w$\\040";
};
inputs = {
nixpkgs.follows = "haskell-nix/nixpkgs-unstable";
haskell-nix = {
url = "github:input-output-hk/haskell.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
utils.follows = "haskell-nix/flake-utils";
iohkNix = {
url = "github:input-output-hk/iohk-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
libtorch-nix = {
url = "github:hasktorch/libtorch-nix";
inputs.utils.follows = "haskell-nix/flake-utils";
inputs.nixpkgs.follows = "nixpkgs";
};
tokenizers = {
url = "github:hasktorch/tokenizers/flakes";
inputs.utils.follows = "haskell-nix/flake-utils";
};
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
};
outputs = { self
, nixpkgs
, haskell-nix
, libtorch-nix
, utils
, iohkNix
, tokenizers
, pre-commit-hooks
, ... }: with utils.lib;
let
inherit (nixpkgs) lib;
inherit (lib);
inherit (iohkNix.lib) collectExes;
build-config.dev = import ./nix/dev-config.nix; # only used to generate devshell
build-config.cpu = { profiling = true; cudaSupport = false; cudaMajorVersion = "invalid"; };
build-config.cuda-10 = { profiling = true; cudaSupport = true; cudaMajorVersion = "10"; };
build-config.cuda-11 = { profiling = true; cudaSupport = true; cudaMajorVersion = "11"; };
hasktorch.overlays = {
cpu-config = final: prev: { hasktorch-config = build-config.cpu; } // (libtorch-nix.overlays.cpu final prev);
cuda-10-config = final: prev: { hasktorch-config = build-config.cuda-10; } // (libtorch-nix.overlays.cudatoolkit_10_2 final prev);
cuda-11-config = final: prev: { hasktorch-config = build-config.cuda-11; } // (libtorch-nix.overlays.cudatoolkit_11_3 final prev);
dev-tools = final: prev: {
haskell-nix = prev.haskell-nix // {
custom-tools = prev.haskell-nix.custom-tools // (prev.callPackage ./nix/haskell-language-server {});
};
};
hasktorch-project = final: prev: {
hasktorchProject = import ./nix/haskell.nix ({
pkgs = prev;
compiler-nix-name = "ghc8107";
inherit (prev) lib;
inherit (prev.hasktorch-config) profiling cudaSupport;
});
};
};
generic-pkgset = system: ty:
let
overlays = [
haskell-nix.overlay
iohkNix.overlays.haskell-nix-extra
tokenizers.overlay
hasktorch.overlays."${ty}-config"
hasktorch.overlays.dev-tools
hasktorch.overlays.hasktorch-project
];
in
{ pkgs = import nixpkgs { inherit system overlays; };
legacyPkgs = haskell-nix.legacyPackages.${system}.appendOverlays overlays;
};
in { inherit (hasktorch) overlays; } // (eachSystem [ "x86_64-linux" "x86_64-darwin" ] (system:
let
mk-pkgset = generic-pkgset system;
pkgset = rec {
cpu = mk-pkgset "cpu";
cuda-10 = mk-pkgset "cuda-10";
cuda-11 = mk-pkgset "cuda-11";
};
mapper = name-pred: name-map: with lib.attrsets; mapAttrs' (name: nameValuePair (if (name-pred name) then (name-map name) else name));
mapper2 = name-pred: name-map: with lib.attrsets;
mapAttrs' (p: v: nameValuePair p (mapper name-pred name-map v));
build-flake = ty: with lib.strings; with lib.lists;
let
inherit (pkgset.${ty}) pkgs;
pkg-flake = pkgs.hasktorchProject.flake {};
in
mapper2
#(n: head (splitString ":" n) == "hasktorch")
(n: hasInfix ":" n && head (splitString ":" n) != "codegen")
(n: let parts = splitString ":" n; in concatStringsSep ":" (concatLists [["${head parts}-${ty}"] (tail parts)]))
pkg-flake;
builds = {
cpu = build-flake "cpu";
cuda-10 = build-flake "cuda-10";
cuda-11 = build-flake "cuda-11";
};
ghc = pkgset.cpu.pkgs.hasktorchProject.ghcWithPackages (_: []);
extra-packages = {
packages = {
haddocks-join = (pkgset.cpu.pkgs.callPackage ./nix/haddock-combine.nix {
inherit ghc;
}) {
hsdocs = [
builds.cpu.packages."libtorch-ffi-cpu:lib:libtorch-ffi".doc
builds.cpu.packages."libtorch-ffi-helper-cpu:lib:libtorch-ffi-helper".doc
builds.cpu.packages."hasktorch-cpu:lib:hasktorch".doc
builds.cpu.packages."hasktorch-gradually-typed-cpu:lib:hasktorch-gradually-typed".doc
];
};
};
checks = {
# pre-commit-check = pre-commit-hooks.lib.${system}.run {
# src = ./.;
# hooks = {
# nixpkgs-fmt = {
# enable = true;
# excludes = [
# "^nix/sources\.nix"
# ];
# };
# ormolu = {
# enable = true;
# excludes = [
# "^Setup.hs$"
# "^libtorch-ffi/.*$"
# ];
# };
# };
# };
};
};
packages = with builds;
builtins.foldl' (sum: v: lib.recursiveUpdate sum v) {} (
if system == "x86_64-darwin"
then [cpu extra-packages]
else [cpu cuda-10 cuda-11 extra-packages]
);
in with builds;
packages // (
let
dev = with pkgset;
if !build-config.dev.cudaSupport then cpu else
if build-config.dev.cudaMajorVersion == "10" then cuda-10 else cuda-11;
in {
lib = pkgset;
devShell = dev.pkgs.callPackage ./shell.nix {
# preCommitShellHook = self.checks.${system}.pre-commit-check.shellHook;
inherit (build-config.dev) cudaSupport cudaMajorVersion;
};
} )
));
}