TheLuaOSProject / Kernel

Kernel for the LuaOS operating system
GNU General Public License v3.0
36 stars 4 forks source link

Question ? #29

Open PasVegan opened 1 year ago

PasVegan commented 1 year ago

Hi, I would like to help with the math functions for the lib, Can I have some information about the project please ? Specifically, I would like to know more about the target architecture. Because when implementing mathematical functions, utilizing instruction sets such as SSE2, AVX, ect ... are the best to ensure fast and precise calculations.

Frityet commented 1 year ago

Hi, I would like to help with the math functions for the lib, Can I have some information about the project please ? Specifically, I would like to know more about the target architecture. Because when implementing mathematical functions, utilizing instruction sets such as SSE2, AVX, ect ... are the best to ensure fast and precise calculations.

Wrong project?

Frityet commented 1 year ago

Unless you actually mean you want to contribute to math.h for the LuaOS kernel's stdlib

Frityet commented 1 year ago

Oh I saw your PR #28 , thank you for contributing! LuaOS will primarly target x86_64 however aarch64 is planned later, so any arch specific code (like SIMD) should be in arch/x86_64 for now because there is no aarch64 target. Thank you!