2022-08-12 12:06:08 +00:00
{ stdenv , bazel_5 , buildBazelPackage , isPy3k , lib , fetchFromGitHub , symlinkJoin
2021-12-06 16:07:01 +00:00
, addOpenGLRunpath , fetchpatch , patchelfUnstable
2020-04-24 23:36:52 +00:00
# Python deps
2021-12-06 16:07:01 +00:00
, buildPythonPackage , pythonOlder , python
2020-04-24 23:36:52 +00:00
# Python libraries
2022-04-15 01:41:22 +00:00
, numpy , tensorboard , absl-py
2022-06-26 10:26:21 +00:00
, packaging , setuptools , wheel , keras , keras-preprocessing , google-pasta
2020-10-07 09:15:18 +00:00
, opt-einsum , astunparse , h5py
2021-12-19 01:06:50 +00:00
, termcolor , grpcio , six , wrapt , protobuf-python , tensorflow-estimator
2022-04-15 01:41:22 +00:00
, dill , flatbuffers-python , portpicker , tblib , typing-extensions
2020-04-24 23:36:52 +00:00
# Common deps
2021-01-15 22:18:51 +00:00
, git , pybind11 , which , binutils , glibcLocales , cython , perl
2020-04-24 23:36:52 +00:00
# Common libraries
2022-04-15 01:41:22 +00:00
, jemalloc , mpi , gast , grpc , sqlite , boringssl , jsoncpp , nsync
2021-12-19 01:06:50 +00:00
, curl , snappy , flatbuffers-core , lmdb-core , icu , double-conversion , libpng , libjpeg_turbo , giflib , protobuf-core
2022-04-15 01:41:22 +00:00
# Upstream by default includes cuda support since tensorflow 1.15. We could do
2020-04-24 23:36:52 +00:00
# that in nix as well. It would make some things easier and less confusing, but
# it would also make the default tensorflow package unfree. See
# https://groups.google.com/a/tensorflow.org/forum/#!topic/developers/iRCt5m4qUz0
2022-04-15 01:41:22 +00:00
, cudaSupport ? false , cudaPackages ? { }
2020-04-24 23:36:52 +00:00
, mklSupport ? false , mkl ? null
2021-01-15 22:18:51 +00:00
, tensorboardSupport ? true
2020-04-24 23:36:52 +00:00
# XLA without CUDA is broken
, xlaSupport ? cudaSupport
# Default from ./configure script
2020-11-03 02:18:15 +00:00
, cudaCapabilities ? [ " s m _ 3 5 " " s m _ 5 0 " " s m _ 6 0 " " s m _ 7 0 " " s m _ 7 5 " " c o m p u t e _ 8 0 " ]
2020-09-25 04:45:31 +00:00
, sse42Support ? stdenv . hostPlatform . sse4_2Support
, avx2Support ? stdenv . hostPlatform . avx2Support
, fmaSupport ? stdenv . hostPlatform . fmaSupport
2020-04-24 23:36:52 +00:00
# Darwin deps
2021-12-06 16:07:01 +00:00
, Foundation , Security , cctools , llvmPackages_11
2020-04-24 23:36:52 +00:00
} :
2022-04-15 01:41:22 +00:00
let
inherit ( cudaPackages ) cudatoolkit cudnn nccl ;
in
2020-10-07 09:15:18 +00:00
assert cudaSupport -> cudatoolkit != null
2020-04-24 23:36:52 +00:00
&& cudnn != null ;
# unsupported combination
assert ! ( stdenv . isDarwin && cudaSupport ) ;
assert mklSupport -> mkl != null ;
let
2021-01-15 22:18:51 +00:00
withTensorboard = ( pythonOlder " 3 . 6 " ) || tensorboardSupport ;
2020-04-24 23:36:52 +00:00
cudatoolkit_joined = symlinkJoin {
name = " ${ cudatoolkit . name } - m e r g e d " ;
paths = [
cudatoolkit . lib
cudatoolkit . out
2020-10-07 09:15:18 +00:00
] ++ lib . optionals ( lib . versionOlder cudatoolkit . version " 1 1 " ) [
2020-04-24 23:36:52 +00:00
# for some reason some of the required libs are in the targets/x86_64-linux
# directory; not sure why but this works around it
" ${ cudatoolkit } / t a r g e t s / ${ stdenv . system } "
] ;
} ;
cudatoolkit_cc_joined = symlinkJoin {
name = " ${ cudatoolkit . cc . name } - m e r g e d " ;
paths = [
cudatoolkit . cc
binutils . bintools # for ar, dwp, nm, objcopy, objdump, strip
] ;
} ;
# Needed for _some_ system libraries, grep INCLUDEDIR.
includes_joined = symlinkJoin {
name = " t e n s o r f l o w - d e p s - m e r g e d " ;
paths = [
jsoncpp
] ;
} ;
tfFeature = x : if x then " 1 " else " 0 " ;
2022-08-12 12:06:08 +00:00
version = " 2 . 1 0 . 0 - r c 0 " ;
2020-04-24 23:36:52 +00:00
variant = if cudaSupport then " - g p u " else " " ;
pname = " t e n s o r f l o w ${ variant } " ;
pythonEnv = python . withPackages ( _ :
[ # python deps needed during wheel build time (not runtime, see the buildPythonPackage part for that)
2021-01-15 22:18:51 +00:00
# This list can likely be shortened, but each trial takes multiple hours so won't bother for now.
absl-py
astunparse
dill
flatbuffers-python
gast
google-pasta
grpcio
h5py
2020-04-24 23:36:52 +00:00
keras-preprocessing
2021-01-15 22:18:51 +00:00
numpy
opt-einsum
2022-06-26 10:26:21 +00:00
packaging
2021-12-19 01:06:50 +00:00
protobuf-python
2020-04-24 23:36:52 +00:00
setuptools
2021-01-15 22:18:51 +00:00
six
tblib
2022-04-15 01:41:22 +00:00
tensorboard
2021-12-06 16:07:01 +00:00
tensorflow-estimator
2021-01-15 22:18:51 +00:00
termcolor
typing-extensions
2020-04-24 23:36:52 +00:00
wheel
2021-01-15 22:18:51 +00:00
wrapt
2020-04-24 23:36:52 +00:00
] ) ;
2021-12-06 16:07:01 +00:00
rules_cc_darwin_patched = stdenv . mkDerivation {
name = " r u l e s _ c c - ${ pname } - ${ version } " ;
src = _bazel-build . deps ;
prePatch = " p u s h d r u l e s _ c c " ;
patches = [
# https://github.com/bazelbuild/rules_cc/issues/122
( fetchpatch {
name = " t e n s o r f l o w - r u l e s _ c c - l i b t o o l - p a t h . p a t c h " ;
url = " h t t p s : / / g i t h u b . c o m / b a z e l b u i l d / r u l e s _ c c / c o m m i t / 8 c 4 2 7 a b 3 0 b f 2 1 3 6 3 0 d c 3 b c e 9 d 2 e 9 a 0 e 2 9 d 1 7 8 7 d b . d i f f " ;
sha256 = " s h a 2 5 6 - C 4 v 6 H Y 5 + j m 0 A C U Z 5 8 g B P V e j C Y C Z f u z Y K l H Z 0 m 2 q D H C k = " ;
} )
# https://github.com/bazelbuild/rules_cc/pull/124
( fetchpatch {
name = " t e n s o r f l o w - r u l e s _ c c - i n s t a l l _ n a m e _ t o o l - p a t h . p a t c h " ;
url = " h t t p s : / / g i t h u b . c o m / b a z e l b u i l d / r u l e s _ c c / c o m m i t / 1 5 6 4 9 7 d c 8 9 1 0 0 d b 8 a 3 f 5 7 b 2 3 c 6 3 7 2 4 7 5 9 d 4 3 1 d 0 5 . d i f f " ;
sha256 = " s h a 2 5 6 - N E S 1 K e Q m M i U J Q V o V 6 d S 4 Y G R x x k Z E j O p F S C y O q 9 H Z Y O 0 = " ;
} )
] ;
postPatch = " p o p d " ;
dontConfigure = true ;
dontBuild = true ;
installPhase = ''
runHook preInstall
mv rules_cc / " $ o u t "
runHook postInstall
'' ;
} ;
llvm-raw_darwin_patched = stdenv . mkDerivation {
name = " l l v m - r a w - ${ pname } - ${ version } " ;
src = _bazel-build . deps ;
prePatch = " p u s h d l l v m - r a w " ;
patches = [
# Fix a vendored config.h that requires the 10.13 SDK
./llvm_bazel_fix_macos_10_12_sdk.patch
] ;
postPatch = ''
touch { BUILD , WORKSPACE }
popd
'' ;
dontConfigure = true ;
dontBuild = true ;
installPhase = ''
runHook preInstall
mv llvm-raw / " $ o u t "
runHook postInstall
'' ;
} ;
bazel-build = if stdenv . isDarwin then _bazel-build . overrideAttrs ( prev : {
bazelBuildFlags = prev . bazelBuildFlags ++ [
" - - o v e r r i d e _ r e p o s i t o r y = r u l e s _ c c = ${ rules_cc_darwin_patched } "
" - - o v e r r i d e _ r e p o s i t o r y = l l v m - r a w = ${ llvm-raw_darwin_patched } "
] ;
preBuild = ''
export AR = " ${ cctools } / b i n / l i b t o o l "
'' ;
} ) else _bazel-build ;
_bazel-build = ( buildBazelPackage . override ( lib . optionalAttrs stdenv . isDarwin {
# clang 7 fails to emit a symbol for
# __ZN4llvm11SmallPtrSetIPKNS_10AllocaInstELj8EED1Ev in any of the
# translation units, so the build fails at link time
stdenv = llvmPackages_11 . stdenv ;
} ) ) {
2020-04-24 23:36:52 +00:00
name = " ${ pname } - ${ version } " ;
2022-08-12 12:06:08 +00:00
bazel = bazel_5 ;
2020-04-24 23:36:52 +00:00
src = fetchFromGitHub {
owner = " t e n s o r f l o w " ;
repo = " t e n s o r f l o w " ;
rev = " v ${ version } " ;
2022-08-12 12:06:08 +00:00
hash = " s h a 2 5 6 - z N 8 I 0 w x K r x W c I 0 R u O q D z 6 s r d W 0 Q + k g a Z h J d X M 4 6 N 1 e 8 = " ;
2020-04-24 23:36:52 +00:00
} ;
# On update, it can be useful to steal the changes from gentoo
# https://gitweb.gentoo.org/repo/gentoo.git/tree/sci-libs/tensorflow
nativeBuildInputs = [
2021-12-19 01:06:50 +00:00
which pythonEnv cython perl protobuf-core
2020-04-24 23:36:52 +00:00
] ++ lib . optional cudaSupport addOpenGLRunpath ;
buildInputs = [
jemalloc
2021-02-05 17:12:51 +00:00
mpi
2020-04-24 23:36:52 +00:00
glibcLocales
git
# libs taken from system through the TF_SYS_LIBS mechanism
2021-01-15 22:18:51 +00:00
boringssl
2020-04-24 23:36:52 +00:00
curl
2022-04-15 01:41:22 +00:00
double-conversion
2021-01-15 22:18:51 +00:00
flatbuffers-core
2022-04-15 01:41:22 +00:00
giflib
grpc
2020-04-24 23:36:52 +00:00
icu
2022-04-15 01:41:22 +00:00
jsoncpp
2021-01-15 22:18:51 +00:00
libjpeg_turbo
2022-04-15 01:41:22 +00:00
libpng
2021-01-15 22:18:51 +00:00
lmdb-core
2022-04-15 01:41:22 +00:00
pybind11
snappy
sqlite
2020-04-24 23:36:52 +00:00
] ++ lib . optionals cudaSupport [
cudatoolkit
cudnn
] ++ lib . optionals mklSupport [
mkl
] ++ lib . optionals stdenv . isDarwin [
Foundation
Security
2022-04-15 01:41:22 +00:00
] ++ lib . optionals ( ! stdenv . isDarwin ) [
nsync
2020-04-24 23:36:52 +00:00
] ;
# arbitrarily set to the current latest bazel version, overly careful
TF_IGNORE_MAX_BAZEL_VERSION = true ;
# Take as many libraries from the system as possible. Keep in sync with
# list of valid syslibs in
# https://github.com/tensorflow/tensorflow/blob/master/third_party/systemlibs/syslibs_configure.bzl
2022-04-15 01:41:22 +00:00
TF_SYSTEM_LIBS = lib . concatStringsSep " , " ( [
2020-04-24 23:36:52 +00:00
" a b s l _ p y "
" a s t o r _ a r c h i v e "
2020-10-07 09:15:18 +00:00
" a s t u n p a r s e _ a r c h i v e "
2020-04-24 23:36:52 +00:00
" b o r i n g s s l "
# Not packaged in nixpkgs
# "com_github_googleapis_googleapis"
# "com_github_googlecloudplatform_google_cloud_cpp"
2020-10-07 09:15:18 +00:00
" c o m _ g i t h u b _ g r p c _ g r p c "
2021-12-19 01:06:50 +00:00
" c o m _ g o o g l e _ p r o t o b u f "
2021-01-15 22:18:51 +00:00
# Fails with the error: external/org_tensorflow/tensorflow/core/profiler/utils/tf_op_utils.cc:46:49: error: no matching function for call to 're2::RE2::FullMatch(absl::lts_2020_02_25::string_view&, re2::RE2&)'
# "com_googlesource_code_re2"
2020-04-24 23:36:52 +00:00
" c u r l "
" c y t h o n "
2021-01-15 22:18:51 +00:00
" d i l l _ a r c h i v e "
2020-04-24 23:36:52 +00:00
" d o u b l e _ c o n v e r s i o n "
" f l a t b u f f e r s "
2020-10-07 09:15:18 +00:00
" f u n c t o o l s 3 2 _ a r c h i v e "
2020-04-24 23:36:52 +00:00
" g a s t _ a r c h i v e "
2020-10-07 09:15:18 +00:00
" g i f "
2020-04-24 23:36:52 +00:00
" h w l o c "
" i c u "
" j s o n c p p _ g i t "
2020-10-07 09:15:18 +00:00
" l i b j p e g _ t u r b o "
2020-04-24 23:36:52 +00:00
" l m d b "
" n a s m "
" o p t _ e i n s u m _ a r c h i v e "
" o r g _ s q l i t e "
" p a s t a "
2020-10-07 09:15:18 +00:00
" p n g "
" p y b i n d 1 1 "
2020-04-24 23:36:52 +00:00
" s i x _ a r c h i v e "
" s n a p p y "
2021-01-15 22:18:51 +00:00
" t b l i b _ a r c h i v e "
2020-04-24 23:36:52 +00:00
" t e r m c o l o r _ a r c h i v e "
2021-01-15 22:18:51 +00:00
" t y p i n g _ e x t e n s i o n s _ a r c h i v e "
2020-04-24 23:36:52 +00:00
" w r a p t "
2020-10-07 09:15:18 +00:00
" z l i b "
2022-04-15 01:41:22 +00:00
] ++ lib . optionals ( ! stdenv . isDarwin ) [
" n s y n c " # fails to build on darwin
] ) ;
2020-04-24 23:36:52 +00:00
INCLUDEDIR = " ${ includes_joined } / i n c l u d e " ;
2021-12-19 01:06:50 +00:00
# This is needed for the Nix-provided protobuf dependency to work,
# as otherwise the rule `link_proto_files` tries to create the links
# to `/usr/include/...` which results in build failures.
PROTOBUF_INCLUDE_PATH = " ${ protobuf-core } / i n c l u d e " ;
2020-04-24 23:36:52 +00:00
PYTHON_BIN_PATH = pythonEnv . interpreter ;
TF_NEED_GCP = true ;
TF_NEED_HDFS = true ;
TF_ENABLE_XLA = tfFeature xlaSupport ;
CC_OPT_FLAGS = " " ;
# https://github.com/tensorflow/tensorflow/issues/14454
TF_NEED_MPI = tfFeature cudaSupport ;
TF_NEED_CUDA = tfFeature cudaSupport ;
TF_CUDA_PATHS = lib . optionalString cudaSupport " ${ cudatoolkit_joined } , ${ cudnn } , ${ nccl } " ;
GCC_HOST_COMPILER_PREFIX = lib . optionalString cudaSupport " ${ cudatoolkit_cc_joined } / b i n " ;
GCC_HOST_COMPILER_PATH = lib . optionalString cudaSupport " ${ cudatoolkit_cc_joined } / b i n / g c c " ;
TF_CUDA_COMPUTE_CAPABILITIES = lib . concatStringsSep " , " cudaCapabilities ;
postPatch = ''
2021-01-15 22:18:51 +00:00
# bazel 3.3 should work just as well as bazel 3.1
rm - f . bazelversion
'' + l i b . o p t i o n a l S t r i n g ( ! w i t h T e n s o r b o a r d ) ''
2020-04-24 23:36:52 +00:00
# Tensorboard pulls in a bunch of dependencies, some of which may
# include security vulnerabilities. So we make it optional.
# https://github.com/tensorflow/tensorflow/issues/20280#issuecomment-400230560
2021-01-15 22:18:51 +00:00
sed - i ' /tensorboard ~ = /d ' tensorflow/tools/pip_package/setup.py
2020-04-24 23:36:52 +00:00
'' ;
2021-01-09 10:05:03 +00:00
# https://github.com/tensorflow/tensorflow/pull/39470
NIX_CFLAGS_COMPILE = [ " - W n o - s t r i n g o p - t r u n c a t i o n " ] ;
2020-04-24 23:36:52 +00:00
preConfigure = let
opt_flags = [ ]
++ lib . optionals sse42Support [ " - m s s e 4 . 2 " ]
++ lib . optionals avx2Support [ " - m a v x 2 " ]
++ lib . optionals fmaSupport [ " - m f m a " ] ;
in ''
patchShebangs configure
# dummy ldconfig
mkdir dummy-ldconfig
echo " # ! ${ stdenv . shell } " > dummy-ldconfig/ldconfig
chmod + x dummy-ldconfig/ldconfig
export PATH = " $ P W D / d u m m y - l d c o n f i g : $ P A T H "
export PYTHON_LIB_PATH = " $ N I X _ B U I L D _ T O P / s i t e - p a c k a g e s "
export CC_OPT_FLAGS = " ${ lib . concatStringsSep " " opt_flags } "
mkdir - p " $ P Y T H O N _ L I B _ P A T H "
# To avoid mixing Python 2 and Python 3
unset PYTHONPATH
'' ;
configurePhase = ''
runHook preConfigure
./configure
runHook postConfigure
'' ;
hardeningDisable = [ " f o r m a t " ] ;
bazelBuildFlags = [
" - - c o n f i g = o p t " # optimize using the flags set in the configure phase
]
2022-06-26 10:26:21 +00:00
++ lib . optionals stdenv . cc . isClang [
" - - c x x o p t = - x " " - - c x x o p t = c + + "
" - - h o s t _ c x x o p t = - x " " - - h o s t _ c x x o p t = c + + "
# workaround for https://github.com/bazelbuild/bazel/issues/15359
" - - s p a w n _ s t r a t e g y = s a n d b o x e d "
]
2020-04-24 23:36:52 +00:00
++ lib . optionals ( mklSupport ) [ " - - c o n f i g = m k l " ] ;
bazelTarget = " / / t e n s o r f l o w / t o o l s / p i p _ p a c k a g e : b u i l d _ p i p _ p a c k a g e / / t e n s o r f l o w / t o o l s / l i b _ p a c k a g e : l i b t e n s o r f l o w " ;
2020-10-07 09:15:18 +00:00
removeRulesCC = false ;
2021-01-15 22:18:51 +00:00
# Without this Bazel complaints about sandbox violations.
dontAddBazelOpts = true ;
2020-10-07 09:15:18 +00:00
2020-04-24 23:36:52 +00:00
fetchAttrs = {
# cudaSupport causes fetch of ncclArchive, resulting in different hashes
sha256 = if cudaSupport then
2022-08-12 12:06:08 +00:00
" s h a 2 5 6 - K t V R e q H L 3 z x E 8 T P r q I e r S O t 5 9 M g k e / f t o F Z K M z g X / u 8 = "
2020-04-24 23:36:52 +00:00
else
2021-12-06 16:07:01 +00:00
if stdenv . isDarwin then
2022-08-12 12:06:08 +00:00
# FIXME: this checksum is currently wrong, since the tensorflow dependency fetch is broken on darwin
" s h a 2 5 6 - j 2 k 9 Q + k 4 1 n q 5 n P 1 V j j k k N j X R o v 1 u A d a 4 R C M D M A t h j r 0 = "
2021-12-06 16:07:01 +00:00
else
2022-08-12 12:06:08 +00:00
" s h a 2 5 6 - z H 3 x N F E U 2 J R 0 W w 8 b p D 4 m C i o r G t a o 0 W V P P 4 v k l V M g S 4 A = " ;
2020-04-24 23:36:52 +00:00
} ;
buildAttrs = {
outputs = [ " o u t " " p y t h o n " ] ;
preBuild = ''
patchShebangs .
'' ;
installPhase = ''
mkdir - p " $ o u t "
tar - xf bazel-bin/tensorflow/tools/lib_package/libtensorflow.tar.gz - C " $ o u t "
# Write pkgconfig file.
mkdir " $ o u t / l i b / p k g c o n f i g "
cat > " $ o u t / l i b / p k g c o n f i g / t e n s o r f l o w . p c " < < EOF
Name : TensorFlow
Version : $ { version }
Description : Library for computation using data flow graphs for scalable machine learning
Requires :
Libs : - L $ out/lib - ltensorflow
Cflags : - I $ out/include/tensorflow
EOF
# build the source code, then copy it to $python (build_pip_package
# actually builds a symlink farm so we must dereference them).
bazel-bin/tensorflow/tools/pip_package/build_pip_package - - src " $ P W D / d i s t "
cp - Lr " $ P W D / d i s t " " $ p y t h o n "
'' ;
postFixup = lib . optionalString cudaSupport ''
find $ out - type f \ ( - name ' * . so' - or - name ' * . so . * ' \ ) | while read lib ; do
addOpenGLRunpath " $ l i b "
done
'' ;
2021-04-26 19:14:03 +00:00
requiredSystemFeatures = [
" b i g - p a r a l l e l "
] ;
2020-04-24 23:36:52 +00:00
} ;
2021-01-15 22:18:51 +00:00
meta = with lib ; {
2020-04-24 23:36:52 +00:00
description = " C o m p u t a t i o n u s i n g d a t a f l o w g r a p h s f o r s c a l a b l e m a c h i n e l e a r n i n g " ;
homepage = " h t t p : / / t e n s o r f l o w . o r g " ;
license = licenses . asl20 ;
maintainers = with maintainers ; [ jyp abbradar ] ;
platforms = with platforms ; linux ++ darwin ;
2021-01-15 22:18:51 +00:00
broken = ! ( xlaSupport -> cudaSupport ) ;
2022-02-20 05:27:41 +00:00
} // lib . optionalAttrs stdenv . isDarwin {
timeout = 86400 ; # 24 hours
maxSilent = 14400 ; # 4h, double the default of 7200s
2020-04-24 23:36:52 +00:00
} ;
} ;
in buildPythonPackage {
inherit version pname ;
2021-01-15 22:18:51 +00:00
disabled = ! isPy3k ;
2020-04-24 23:36:52 +00:00
src = bazel-build . python ;
2021-12-06 16:07:01 +00:00
# Adjust dependency requirements:
2022-06-26 10:26:21 +00:00
# - Relax flatbuffers and gast version requirements
2021-12-06 16:07:01 +00:00
# - The purpose of python3Packages.libclang is not clear at the moment and we don't have it packaged yet
# - keras and tensorlow-io-gcs-filesystem will be considered as optional for now.
postPatch = ''
sed - i setup . py \
2022-06-26 10:26:21 +00:00
- e " s / ' f l a t b u f f e r s [ ^ ' ] * ' , / ' f l a t b u f f e r s ' , / " \
2021-12-06 16:07:01 +00:00
- e " s / ' g a s t [ ^ ' ] * ' , / ' g a s t ' , / " \
- e " / ' l i b c l a n g [ ^ ' ] * ' , / d " \
2022-06-26 10:26:21 +00:00
- e " / ' k e r a s [ ^ ' ] * ' ) \? , / d " \
2021-12-06 16:07:01 +00:00
- e " / ' t e n s o r f l o w - i o - g c s - f i l e s y s t e m [ ^ ' ] * ' , / d "
'' ;
2020-04-24 23:36:52 +00:00
# Upstream has a pip hack that results in bin/tensorboard being in both tensorflow
2022-04-15 01:41:22 +00:00
# and the propagated input tensorboard, which causes environment collisions.
2020-04-24 23:36:52 +00:00
# Another possibility would be to have tensorboard only in the buildInputs
# https://github.com/tensorflow/tensorflow/blob/v1.7.1/tensorflow/tools/pip_package/setup.py#L79
postInstall = ''
rm $ out/bin/tensorboard
'' ;
setupPyGlobalFlags = [ " - - p r o j e c t _ n a m e ${ pname } " ] ;
# tensorflow/tools/pip_package/setup.py
propagatedBuildInputs = [
absl-py
2021-01-15 22:18:51 +00:00
astunparse
flatbuffers-python
2020-04-24 23:36:52 +00:00
gast
google-pasta
2021-01-15 22:18:51 +00:00
grpcio
h5py
2020-04-24 23:36:52 +00:00
keras-preprocessing
numpy
2021-01-15 22:18:51 +00:00
opt-einsum
2022-06-26 10:26:21 +00:00
packaging
2021-12-19 01:06:50 +00:00
protobuf-python
2021-01-15 22:18:51 +00:00
six
2021-12-06 16:07:01 +00:00
tensorflow-estimator
2020-04-24 23:36:52 +00:00
termcolor
2021-01-15 22:18:51 +00:00
typing-extensions
2020-04-24 23:36:52 +00:00
wrapt
] ++ lib . optionals withTensorboard [
2022-04-15 01:41:22 +00:00
tensorboard
2020-04-24 23:36:52 +00:00
] ;
2021-12-06 16:07:01 +00:00
# remove patchelfUnstable once patchelf 0.14 with https://github.com/NixOS/patchelf/pull/256 becomes the default
nativeBuildInputs = lib . optional cudaSupport [ addOpenGLRunpath patchelfUnstable ] ;
2020-04-24 23:36:52 +00:00
postFixup = lib . optionalString cudaSupport ''
find $ out - type f \ ( - name ' * . so' - or - name ' * . so . * ' \ ) | while read lib ; do
addOpenGLRunpath " $ l i b "
2020-10-07 09:15:18 +00:00
patchelf - - set-rpath " ${ cudatoolkit } / l i b : ${ cudatoolkit . lib } / l i b : ${ cudnn } / l i b : ${ nccl } / l i b : $ ( p a t c h e l f - - p r i n t - r p a t h " $ lib " ) " " $ l i b "
2020-04-24 23:36:52 +00:00
done
'' ;
# Actual tests are slow and impure.
# TODO try to run them anyway
# TODO better test (files in tensorflow/tools/ci_build/builds/*test)
2022-04-15 01:41:22 +00:00
# TEST_PACKAGES in tensorflow/tools/pip_package/setup.py
checkInputs = [
dill
keras
portpicker
tblib
] ;
2020-04-24 23:36:52 +00:00
checkPhase = ''
$ { python . interpreter } < < EOF
# A simple "Hello world"
import tensorflow as tf
hello = tf . constant ( " H e l l o , w o r l d ! " )
tf . print ( hello )
# Fit a simple model to random data
import numpy as np
np . random . seed ( 0 )
tf . random . set_seed ( 0 )
model = tf . keras . models . Sequential ( [
tf . keras . layers . Dense ( 1 , activation = " l i n e a r " )
] )
model . compile ( optimizer = " s g d " , loss = " m s e " )
x = np . random . uniform ( size = ( 1 , 1 ) )
y = np . random . uniform ( size = ( 1 , ) )
model . fit ( x , y , epochs = 1 )
EOF
'' ;
# Regression test for #77626 removed because not more `tensorflow.contrib`.
2020-05-29 06:06:01 +00:00
passthru = {
2022-04-15 01:41:22 +00:00
inherit cudaPackages ;
2020-05-29 06:06:01 +00:00
deps = bazel-build . deps ;
libtensorflow = bazel-build . out ;
} ;
2020-04-24 23:36:52 +00:00
inherit ( bazel-build ) meta ;
}