Automatic differentiation (#5)

This commit is contained in:
Patrick Stevens
2023-03-25 22:19:04 +00:00
committed by GitHub
parent adff7ac3fd
commit 32caf8d7d6
14 changed files with 894 additions and 150 deletions

View File

@@ -23,7 +23,7 @@
crate2nix,
...
}: let
name = "little_learner";
name = "little_learner_app";
in
utils.lib.eachDefaultSystem
(
@@ -77,7 +77,7 @@
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
};
in rec {
packages.${name} = project.rootCrate.build;
packages.${name} = project.workspaceMembers.${name}.build;
# `nix build`
defaultPackage = packages.${name};