-
* [ ] sin
* [ ] cos
* [ ] tan
* [ ] asin
* [ ] acos
* [ ] atan
* [ ] atan2
* [ ] sinh
* [ ] cosh
* [ ] tanh
* [ ] asinh
* [ ] acosh
* [ ] atanh
-
Bedrock2 seems to share a lot of common goals with Jasmin.
Jasmin also has an [RISC-V branch](https://github.com/jasmin-lang/jasmin/tree/risc5)
Have you considered how they could interact?
-
If we look at any CI it is obvious that `make check` is the most time consuming part of the sequence
```
$ ./bootstrap.sh
$ ./configure
$ make
$ make tests
$ make check
```
Now, there is no …
-
Perhaps this due to instruction formatting constraints, but it seems silly not to provide both when computing one implies computing the other. I guess you could leave it to compiler optimization, but …
-
jOOQ 3.16 introduced a new draft query object model API with https://github.com/jOOQ/jOOQ/issues/12425, and 3.17, 3.18, 3.19 implemented a few improvements on it: https://github.com/jOOQ/jOOQ/issues/1…
-
EVM supports 256-bit operations "natively". While that precision is not needed in a lot of cases it does come as very useful for certain operations, such as handling token balances, in Ethereum.
Wi…
-
When using a macro to compute the static int that parametrize a static type in a type section, we get
```
.....fatal.nim(53) sysFatal
Error: unhandled exception: 'intVal' is not accessib…
-
**Is your feature request related to a problem? Please describe.**
I'd like to be able to optimise existing JPGs without re-encoding them and losing quality.
**Describe the solution you'd like**
…
jahed updated
2 weeks ago
-
-
This is a big one
The only reason we use BLAS is that we don't have efficient implementation of `matrix x matrix` multiplication. Naively doing parallel dot products is not optimal. We need to impl…