arrayfire-rust icon indicating copy to clipboard operation
arrayfire-rust copied to clipboard

Statically linking arrayfire

Open vadixidav opened this issue 5 years ago • 12 comments

Right now arrayfire has to be used by linking to the DLL. Since the only parts of arrayfire that are included in the Rust bindings are BSD 3-clause, there should be no problem statically linking arrayfire. Is it possible that we could choose whether or not arrayfire is statically linked to ease distribution? Also, is there any downside to just always statically linking arrayfire? I feel like that would be more in-line with what the Rust community expects: adding a crate to your Cargo.toml should "just work".

vadixidav avatar Feb 28 '19 14:02 vadixidav

There is one major problem with doing that I think. Rust crates can't go beyond a certain size. ArrayFire binaries are big right now, definitely not in the range of crate size, the last time I checked it was 10MB

9prady9 avatar Feb 28 '19 14:02 9prady9

Whether you use static or dynamic binaries of ArrayFire, the size can't go to 10MB for sure.

9prady9 avatar Feb 28 '19 15:02 9prady9

Looks like per crate limits were added but I don't know yet if it's released.

9prady9 avatar Feb 28 '19 15:02 9prady9

Also, I am not really sure if it's good idea to club binary along with crate using static linking. Because right now there is an advantage : user can install/modify ArrayFire installation independent of crate version and as long as crate <major.minor> version matches ArrayFire's <major.minor> version, it is ready for use.

9prady9 avatar Feb 28 '19 15:02 9prady9

A feature could be added to enable dynamic linking as well. By default it could be statically linked, but for deployment it could then be dynamically linked by enabling the feature.

vadixidav avatar Feb 28 '19 17:02 vadixidav

@vadixidav I have no experience doing such packaging(involving static linking but handling all OSes) in rust crates. Can you please point to another crate that does this.

9prady9 avatar Mar 01 '19 06:03 9prady9

@9prady9 Sure, I actually just did this for the Rust flann bindings here. Check the flann-sys directory. This was being built using CMake, which it looks like ArrayFire is as well. If you would like, I can attempt this myself. This would make it so that, by default, ArrayFire would be built by Cargo and statically linked, but if you enabled the special dynamic link flag then it would try to use the shared library. Does this sound fine?

vadixidav avatar Mar 01 '19 16:03 vadixidav

I am concerned by build times of ArrayFire - it takes too much time to be honest. Let me check flann-sys. Sure, give it a try and feel free to contact on slack for quick response if you face problems during static build.

9prady9 avatar Mar 01 '19 17:03 9prady9

https://github.com/arrayfire/arrayfire/issues/313

9prady9 avatar Mar 31 '20 11:03 9prady9

@umar456 Can you please share your findings w.r.t creating a static library of ArrayFire here.

9prady9 avatar May 09 '22 05:05 9prady9

@vadixidav Did you get the chance to try it out ?

9prady9 avatar May 09 '22 05:05 9prady9

@vadixidav Did you get the chance to try it out ?

I haven't, but I can give it a try when I get a chance.

vadixidav avatar May 09 '22 06:05 vadixidav