-
Hi!
There seems to be an issue when using sizeof, causing a fatal error:
https://ispc.godbolt.org/z/4ecPEM6Tx
```
typedef float vec3;
export void func()
{
const int test = sizeof(ve…
-
```
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
```
result in
[cmake] -- Configuring done (3.3s)
[cmake] CMake Error at library/CMakeLists.txt:283 (add_library):
[cmake] …
-
When marking a for loop with #pragma unroll the loop will be unrolled but bounds checks will still occur between the unrolled segments. This causes ISPC to perform slightly slower than hand coded loo…
-
Hey, I seem to be getting a DNS Lexicon error when renewing a sub-domain for our LDAP Server that didn't happen before. Possibly due to a Python or PDNS Version Change?
PowerDNS Version: 4.8.3
Pyt…
-
Hello,
i'm not able to compile it on centos 7
by default, the 'cmake'c comment use cmake2 so I've updated the config.py with 'cmake3' line 22 & 30 and I have an error with oind folder, even if it e…
-
### Is your feature request related to a problem? Please describe
I'd like to add execution support for ISPC.
### Describe the solution you'd like
Currently, to execute, ISPC needs a `C` file…
-
This program:
```c
int main() {
int* a = 0;
int const * const b = (int const * const)a;
return 0;
}
```
Compiles fine with `gcc`, but not with `ispc`. The error:
`…
-
The ISPC compiler has a bunch of examples that we might want to port to Rust: https://github.com/ispc/ispc/tree/master/examples
_Originally posted by @gnzlbg in https://github.com/anp/lolbench/issu…
-
-
I know it's been a while since this repo has been active, but I stumbled upon your work while developing an ISPC training class for my team internally at Intel. One of the exercises in the homework i…