MarekKowalski / HoloFace

A framework for facial augmented reality on HoloLens
MIT License
97 stars 16 forks source link

ARM build for HoloLens 2 #8

Open PJBowron opened 4 years ago

PJBowron commented 4 years ago

Hi, I'm looking into updating the projects to the latest SDK and platform toolsets in order to produce an ARM build to run on HoloLens 2. Unfortunately the repo ships with pre-built x86 LAPACK libraries so I'm wondering if you can point me as specifically as possible to the source of the current libraries so I can look into making equivalent ARM builds!

Many thanks for sharing this great project!

MarekKowalski commented 4 years ago

Hi, thanks for trying to get it to work on HL2! I believe we used blas's and lapack's reference implementations from here: http://www.netlib.org/lapack/#_lapack_version_3_9_0_2 http://www.netlib.org/blas/ As you probably know, these are not the optimized implementations. Given that this code was written mostly around 2015-2016, we probably used the library version from that time. Unfortunately, there is no way for me to check exactly what version it was.

Having said that, any lapack implementation should work, since I believe they share the same interface. Also, I do not think we actually use any very complex operations from lapack.

Let me know if I can help further.

Marek