-
-
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
Darwin caffe #44616
Darwin caffe #44616
Conversation
the sub-frameworks are not reacheable without that extension
propagatedBuildInputs = [ Accelerate ]; | ||
} '' | ||
mkdir -p $out/lib | ||
ln -s /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib $out/lib/libblas.dylib |
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 link to the Accelerate derivation, not /System.
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.
How do you solve an empty ${Accelerate}/Library/Frameworks/Accelerate.framework/Versions/A
?
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.
Yes that's right there are no libraries in that derivation. But this will break when we reintroduce sandboxing.
Have you tried to just use Openblas here? It should work on darwin.
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.
It was using openblas but cmake decided to use Accelerate even when it's not provided. Maybe the best option is to patch the build system.
Failure on x86_64-darwin (full log) Attempted: caffe Partial log (click to expand)
|
Failure on x86_64-linux (full log) Attempted: caffe Partial log (click to expand)
|
@GrahamcOfBorg build caffe |
Success on aarch64-linux (full log) Attempted: caffe Partial log (click to expand)
|
Success on x86_64-darwin (full log) Attempted: caffe Partial log (click to expand)
|
Success on x86_64-linux (full log) Attempted: caffe Partial log (click to expand)
|
Success on aarch64-linux (full log) Attempted: caffe Partial log (click to expand)
|
Success on x86_64-linux (full log) Attempted: caffe Partial log (click to expand)
|
Failure on aarch64-linux (full log) Attempted: caffe Partial log (click to expand)
|
Failure on x86_64-darwin (full log) Attempted: caffe Partial log (click to expand)
|
Success on x86_64-darwin (full log) Attempted: caffe Partial log (click to expand)
|
Failure on x86_64-linux (full log) Attempted: caffe Partial log (click to expand)
|
@@ -201,6 +201,13 @@ in rec { | |||
}; | |||
|
|||
overrides = super: { | |||
Accelerate = stdenv.lib.overrideDerivation super.Accelerate (drv: { | |||
__propagatedImpureHostDeps = drv.__propagatedImpureHostDeps ++ [ |
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 don't think this is necessary since these paths are part of the Accelerate framework itself.
}; | ||
|
||
# work around /usr/lib having different lib names than the framework | ||
macblas = runCommand "macblas" { |
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'd move this to darwin-packages.nix instead of hiding it here.
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 think we want everyone to be using openblas though - not Apple's version.
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.
Yeah, ideally this wouldn't be necessary.
Failure on aarch64-linux (full log) Attempted: caffe Partial log (click to expand)
|
I don't have a lot of experience in the *blas sphere. Here is my understanding:
Roads that I see could be tried:
What should I do next? |
I think it's generally best to avoid frameworks since they are impure, but while not ideal this is reasonable if the build system is too hard to configure. |
@zimbatm I just pushed two commits that are working for me. This adds a patch to get rid of the special cases for macOS. Hope that works! |
Success on aarch64-linux (full log) Attempted: caffe Partial log (click to expand)
|
Success on x86_64-darwin (full log) Attempted: caffe Partial log (click to expand)
|
Success on x86_64-linux (full log) Attempted: caffe Partial log (click to expand)
|
hey, thanks @matthewbauer! Testing with the postInstallCheck phase enabled. If this passes I will merge the PR. |
Motivation for this change
Compile
caffe
on macOS. In the process I added a postInstallCheck to improve the chances that the package is working properly and made some more features configurable.I had to poke bigger holes in the Darwin sandbox in the process.
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)