Bend/KNOWN_ISSUES.md

33 lines
1.6 KiB
Markdown
Raw Normal View History

# Known Issues
2024-05-18 20:00:22 +03:00
### Why are my numbers giving me wrong results?
- Either cause overflowing u24 or mixing different number types.
2024-05-18 19:38:52 +03:00
2024-05-18 20:00:22 +03:00
### Can i run this on AMD/METAL GPUs?
- We plan on adding support to many other GPUs as soon as the CUDA version is sufficiently stable.
2024-05-18 19:38:52 +03:00
2024-05-18 20:00:22 +03:00
### Can i run this on windows?
- We're still working on the windows support, for the moment, please use [WSL2](https://learn.microsoft.com/en-us/windows/wsl/install).
2024-05-18 20:00:22 +03:00
### How do i use IO?
- IO is still being developed and is expected to come soon.
2024-05-18 19:38:52 +03:00
2024-05-18 20:00:22 +03:00
### how to do FFI?
- not as soon as IO, but planned or at least something similar to FFI.
2024-05-18 19:38:52 +03:00
2024-05-18 20:00:22 +03:00
### Are there any Libraries, Packages etc?
- A package manager will be added soon.
2024-05-18 19:38:52 +03:00
2024-05-18 20:00:22 +03:00
### I got an error when installing HVM on Linux
- If the error contains anything regarding `ccbin`, please refer to [HVM#291](https://github.com/HigherOrderCO/HVM/issues/291)
2024-05-18 19:38:52 +03:00
2024-05-18 20:00:22 +03:00
- If the error contains anything regarding `libc` missing, please refer to [HVM#355](https://github.com/HigherOrderCO/Bend/issues/355)
2024-05-18 19:38:52 +03:00
2024-05-18 20:33:33 +03:00
### I'm getting an error of failed assertion
2024-05-18 20:00:22 +03:00
- HVM currently has a bug in it's conversion of f32 to f24 and it's unable to read the number 0.0. We already have a fix that we're working on.
2024-05-18 19:38:52 +03:00
2024-05-18 20:33:33 +03:00
### Why am i getting a CUDA not supported error even tho i have it installed?
2024-05-18 20:00:22 +03:00
- The current iteration of the `hvm.cu` was written with the 4090 in mind, and won't work on older GPUs, since they contain about half of the newer GPUs shared memory, for better understanding please refer to [HVM#283](https://github.com/HigherOrderCO/HVM/issues/283), we are working on the support for other GPUs and will release it soon.
2024-05-18 20:02:14 +03:00