diff options
Diffstat (limited to 'pkgs/development/compilers/tvm/default.nix')
-rw-r--r-- | pkgs/development/compilers/tvm/default.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/development/compilers/tvm/default.nix b/pkgs/development/compilers/tvm/default.nix deleted file mode 100644 index 45579ad8f16a..000000000000 --- a/pkgs/development/compilers/tvm/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, cmake }: - -stdenv.mkDerivation rec { - pname = "tvm"; - version = "0.17.0"; - - src = fetchFromGitHub { - owner = "apache"; - repo = "incubator-tvm"; - rev = "v${version}"; - fetchSubmodules = true; - hash = "sha256-5Jr+xubQoASNgy/UR/K5pvzMs4szP9LidFOLs3h+KSY="; - }; - - nativeBuildInputs = [ cmake ]; - # TVM CMake build uses some sources in the project's ./src/target/opt/ - # directory which errneously gets mangled by the eager `fixCmakeFiles` - # function in Nix's CMake setup-hook.sh to ./src/target/var/empty/, - # which then breaks the build. Toggling this flag instructs Nix to - # not mangle the legitimate use of the opt/ folder. - dontFixCmake = true; - - meta = with lib; { - homepage = "https://tvm.apache.org/"; - description = "End to End Deep Learning Compiler Stack for CPUs, GPUs and accelerators"; - license = licenses.asl20; - platforms = platforms.all; - maintainers = with maintainers; [ adelbertc ]; - }; -} |