-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] bazel, tensorflow: enable Darwin source build #37608
Conversation
@@ -71,7 +92,7 @@ stdenv.mkDerivation rec { | |||
|
|||
# Build the CPP and Java examples to verify that Bazel works. | |||
|
|||
doCheck = true; | |||
doCheck = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be a conditional, I think.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll change this to (!stdenv.isDarwin)
if I can't get tests working
cp test.sh cxx.sh | ||
cp test.sh ld.sh | ||
|
||
echo "(clang \"\$@\" ) || (clang++ \"\$@\" )" >> cc.sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have you tried just doing "clang++" for this? I think that clang++ should support both (although some of the Nix purity stuff may break this).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I initially tried this, but it caused failures when building a few dependencies (I think mostly Protobuf). I'll try to find a log so I can at least put a comment explaining it.
Thanks for working on this! Tensorflow on Darwin would be great. |
@@ -88,7 +92,7 @@ let | |||
|
|||
hardeningDisable = [ "all" ]; | |||
|
|||
bazelFlags = [ "--config=opt" ] | |||
bazelFlags = [ "--config=opt" "--config=monolithic" ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please leave a comment on why is this necessary; let's make it optional for Darwin to avoid static dependencies as much as possible.
@@ -58,7 +61,8 @@ let | |||
nativeBuildInputs = [ swig which ]; | |||
|
|||
buildInputs = [ python jemalloc openmpi glibcLocales numpy ] | |||
++ lib.optionals cudaSupport [ cudatoolkit cudnn nvidia_x11 ]; | |||
++ lib.optionals cudaSupport [ cudatoolkit cudnn nvidia_x11 ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mark stdenv.isDarwin && cudaSupport
as broken.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be a good idea to move the asserts at the top to meta.broken? (see #36229)
@GrahamcOfBorg build bazel |
No attempt on aarch64-linux (full log) The following builds were skipped because they don't evaluate on aarch64-linux: bazel Partial log (click to expand)
|
Failure on x86_64-linux (full log) Attempted: bazel Partial log (click to expand)
|
Failure on x86_64-darwin (full log) Attempted: bazel Partial log (click to expand)
|
removes need to include jdk/jre in dependent packages
@abbradar I cleaned it up quite a bit and added conditionals on everything. Rebuilt py27 + py36 and both succeeded! |
hacky method to solidify NIX_* env vars as Bazel does not pass these through when calling cc/cxx
bazel cc/cxx hacks on darwin
@GrahamcOfBorg build bazel |
No attempt on aarch64-linux (full log) The following builds were skipped because they don't evaluate on aarch64-linux: bazel Partial log (click to expand)
|
Success on x86_64-linux (full log) Attempted: bazel Partial log (click to expand)
|
Failure on x86_64-darwin (full log) Attempted: bazel Partial log (click to expand)
|
Do you have the CLT/Xcode installed? |
@LnL7 Ahh yep (just CLT) – good catch. Since I need it on my main machine, I can work it out Friday on a VM without it installed. Sorry about that! |
That might explain the missing framework, if you add it I can start another build. |
@GrahamcOfBorg build bazel |
No attempt on aarch64-linux (full log) The following builds were skipped because they don't evaluate on aarch64-linux: bazel Partial log (click to expand)
|
@LnL7 The framework was in my staging branch; I just pushed it to this one |
Failure on x86_64-darwin (full log) Attempted: bazel Partial log (click to expand)
|
Success on x86_64-linux (full log) Attempted: bazel Partial log (click to expand)
|
@GrahamcOfBorg build bazel |
Success on x86_64-linux (full log) Attempted: bazel Partial log (click to expand)
|
No attempt on aarch64-linux (full log) The following builds were skipped because they don't evaluate on aarch64-linux: bazel Partial log (click to expand)
|
Failure on x86_64-darwin (full log) Attempted: bazel Partial log (click to expand)
|
@lukeadams No sweat! I've merged #37044 for now. |
I was hoping the framework was the only issue, but I get an |
Closed until I have time to work on this. Not sure when tbh :/ #40424 with |
Motivation for this change
Tracking for WIP patches.
Things done
With this PR tf is buildable for py27/py36, sidestepping the unicode mismatch when using a wheel for py27. This also enables tf c++ artifacts, but I haven't tested those yet.
build-use-sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)