Skip to content

Commit 6269306

Browse files
jypabbradar
authored andcommittedNov 4, 2017
pythonPackages.tensorflow: add flags for efficent math on CPU
1 parent bb87d2c commit 6269306

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎pkgs/development/python-modules/tensorflow/default.nix

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
, cudaSupport ? false, nvidia_x11 ? null, cudatoolkit ? null, cudnn ? null
88
# Default from ./configure script
99
, cudaCapabilities ? [ "3.5" "5.2" ]
10+
, sse42Support ? false
11+
, avx2Support ? false
12+
, fmaSupport ? false
1013
}:
1114

1215
assert cudaSupport -> cudatoolkit != null
@@ -77,6 +80,9 @@ let
7780
hardeningDisable = [ "all" ];
7881

7982
bazelFlags = [ "--config=opt" ]
83+
++ lib.optional sse42Support "--copt=-msse4.2"
84+
++ lib.optional avx2Support "--copt=-mavx2"
85+
++ lib.optional fmaSupport "--copt=-mfma"
8086
++ lib.optional cudaSupport "--config=cuda";
8187

8288
bazelTarget = "//tensorflow/tools/pip_package:build_pip_package";

0 commit comments

Comments
 (0)
Please sign in to comment.