2022-01-14 21:29:24 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
2022-08-14 16:37:57 +00:00
|
|
|
, fetchurl
|
2022-01-14 21:29:24 +00:00
|
|
|
, pkg-config
|
|
|
|
, cmake
|
2022-09-27 07:45:48 +00:00
|
|
|
, python3Packages
|
2022-01-14 21:29:24 +00:00
|
|
|
, libpng
|
|
|
|
, zlib
|
|
|
|
, eigen
|
|
|
|
, protobuf
|
|
|
|
, howard-hinnant-date
|
|
|
|
, nlohmann_json
|
|
|
|
, boost
|
|
|
|
, oneDNN
|
2022-08-14 16:37:57 +00:00
|
|
|
, gtest
|
2022-10-03 15:28:11 +00:00
|
|
|
, pythonSupport ? false
|
2022-09-27 07:45:48 +00:00
|
|
|
, nsync
|
|
|
|
, flatbuffers
|
2022-01-14 21:29:24 +00:00
|
|
|
}:
|
|
|
|
|
2022-10-03 15:28:11 +00:00
|
|
|
# Python Support
|
|
|
|
#
|
|
|
|
# When enabling Python support a wheel is made and stored in a `dist` output.
|
|
|
|
# This wheel is then installed in a separate derivation.
|
|
|
|
|
|
|
|
assert pythonSupport -> lib.versionOlder protobuf.version "3.20";
|
|
|
|
|
2022-01-14 21:29:24 +00:00
|
|
|
let
|
2022-08-14 16:37:57 +00:00
|
|
|
# prefetch abseil
|
|
|
|
# Note: keep URL in sync with `cmake/external/abseil-cpp.cmake`
|
|
|
|
abseil = fetchurl {
|
|
|
|
url = "https://github.com/abseil/abseil-cpp/archive/refs/tags/20211102.0.zip";
|
|
|
|
sha256 = "sha256-pFZ/8C+spnG5XjHTFbqxi0K2xvGmDpHG6oTlohQhEsI=";
|
2022-01-14 21:29:24 +00:00
|
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "onnxruntime";
|
2022-08-14 16:37:57 +00:00
|
|
|
version = "1.12.1";
|
2022-01-14 21:29:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "microsoft";
|
|
|
|
repo = "onnxruntime";
|
|
|
|
rev = "v${version}";
|
2022-08-14 16:37:57 +00:00
|
|
|
sha256 = "sha256-wwllEemiHTp9aJcCd1gsTS4WUVMp5wW+4i/+6DzmAeM=";
|
|
|
|
fetchSubmodules = true;
|
2022-01-14 21:29:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
2022-08-14 16:37:57 +00:00
|
|
|
# Use dnnl from nixpkgs instead of submodules
|
2022-01-14 21:29:24 +00:00
|
|
|
(fetchpatch {
|
|
|
|
name = "system-dnnl.patch";
|
|
|
|
url = "https://aur.archlinux.org/cgit/aur.git/plain/system-dnnl.diff?h=python-onnxruntime&id=0185531906bda3a9aba93bbb0f3dcfeb0ae671ad";
|
|
|
|
sha256 = "sha256-58RBrQnAWNtc/1pmFs+PkZ6qCsL1LfMY3P0exMKzotA=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
2022-09-27 07:45:48 +00:00
|
|
|
python3Packages.python
|
2022-08-14 16:37:57 +00:00
|
|
|
gtest
|
2022-09-27 07:45:48 +00:00
|
|
|
] ++ lib.optionals pythonSupport (with python3Packages; [
|
|
|
|
setuptools
|
|
|
|
wheel
|
|
|
|
pip
|
2022-10-03 15:28:11 +00:00
|
|
|
pythonOutputDistHook
|
2022-09-27 07:45:48 +00:00
|
|
|
]);
|
2022-01-14 21:29:24 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libpng
|
|
|
|
zlib
|
|
|
|
howard-hinnant-date
|
|
|
|
nlohmann_json
|
|
|
|
boost
|
|
|
|
oneDNN
|
2022-10-03 15:28:11 +00:00
|
|
|
protobuf
|
|
|
|
] ++ lib.optionals pythonSupport [
|
2022-09-27 07:45:48 +00:00
|
|
|
nsync
|
2022-10-03 15:28:11 +00:00
|
|
|
python3Packages.numpy
|
|
|
|
python3Packages.pybind11
|
|
|
|
];
|
2022-01-14 21:29:24 +00:00
|
|
|
|
2022-08-14 16:37:57 +00:00
|
|
|
# TODO: build server, and move .so's to lib output
|
2022-10-03 15:28:11 +00:00
|
|
|
# Python's wheel is stored in a separate dist output
|
|
|
|
outputs = [ "out" "dev" ] ++ lib.optionals pythonSupport [ "dist" ];
|
2022-08-14 16:37:57 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2022-01-14 21:29:24 +00:00
|
|
|
cmakeDir = "../cmake";
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-Donnxruntime_PREFER_SYSTEM_LIB=ON"
|
|
|
|
"-Donnxruntime_BUILD_SHARED_LIB=ON"
|
|
|
|
"-Donnxruntime_ENABLE_LTO=ON"
|
2022-08-14 16:37:57 +00:00
|
|
|
"-Donnxruntime_BUILD_UNIT_TESTS=ON"
|
2022-01-14 21:29:24 +00:00
|
|
|
"-Donnxruntime_USE_PREINSTALLED_EIGEN=ON"
|
|
|
|
"-Donnxruntime_USE_MPI=ON"
|
|
|
|
"-Deigen_SOURCE_PATH=${eigen.src}"
|
|
|
|
"-Donnxruntime_USE_DNNL=YES"
|
2022-09-27 07:45:48 +00:00
|
|
|
] ++ lib.optionals pythonSupport [
|
|
|
|
"-Donnxruntime_ENABLE_PYTHON=ON"
|
2022-01-14 21:29:24 +00:00
|
|
|
];
|
|
|
|
|
2022-08-14 16:37:57 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace cmake/external/abseil-cpp.cmake \
|
|
|
|
--replace "${abseil.url}" "${abseil}"
|
2022-09-27 10:33:45 +00:00
|
|
|
|
|
|
|
substituteInPlace cmake/libonnxruntime.pc.cmake.in \
|
|
|
|
--replace '$'{prefix}/@CMAKE_INSTALL_ @CMAKE_INSTALL_
|
2022-08-14 16:37:57 +00:00
|
|
|
'';
|
|
|
|
|
2022-09-27 07:45:48 +00:00
|
|
|
postBuild = lib.optionalString pythonSupport ''
|
|
|
|
${python3Packages.python.interpreter} ../setup.py bdist_wheel
|
|
|
|
'';
|
|
|
|
|
2022-08-14 16:37:57 +00:00
|
|
|
postInstall = ''
|
|
|
|
# perform parts of `tools/ci_build/github/linux/copy_strip_binary.sh`
|
|
|
|
install -m644 -Dt $out/include \
|
|
|
|
../include/onnxruntime/core/framework/provider_options.h \
|
|
|
|
../include/onnxruntime/core/providers/cpu/cpu_provider_factory.h \
|
|
|
|
../include/onnxruntime/core/session/onnxruntime_*.h
|
|
|
|
'';
|
2022-01-14 21:29:24 +00:00
|
|
|
|
2022-10-03 15:28:11 +00:00
|
|
|
passthru = {
|
|
|
|
inherit protobuf;
|
|
|
|
tests = lib.optionalAttrs pythonSupport {
|
|
|
|
python = python3Packages.onnxruntime;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-08-14 16:37:57 +00:00
|
|
|
meta = with lib; {
|
2022-01-14 21:29:24 +00:00
|
|
|
description = "Cross-platform, high performance scoring engine for ML models";
|
|
|
|
longDescription = ''
|
|
|
|
ONNX Runtime is a performance-focused complete scoring engine
|
|
|
|
for Open Neural Network Exchange (ONNX) models, with an open
|
|
|
|
extensible architecture to continually address the latest developments
|
|
|
|
in AI and Deep Learning. ONNX Runtime stays up to date with the ONNX
|
|
|
|
standard with complete implementation of all ONNX operators, and
|
|
|
|
supports all ONNX releases (1.2+) with both future and backwards
|
|
|
|
compatibility.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/microsoft/onnxruntime";
|
2022-08-14 16:37:57 +00:00
|
|
|
changelog = "https://github.com/microsoft/onnxruntime/releases/tag/v${version}";
|
2022-01-14 21:29:24 +00:00
|
|
|
# https://github.com/microsoft/onnxruntime/blob/master/BUILD.md#architectures
|
2022-08-14 16:37:57 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jonringer puffnfresh ck3d ];
|
2022-01-14 21:29:24 +00:00
|
|
|
};
|
|
|
|
}
|