-
### Review Mojo's priorities
- [X] I have read the [roadmap and priorities](https://docs.modular.com/mojo/roadmap.html#overall-priorities) and I believe this request falls within the priorities.
…
-
ISPC Runtime uses ambiguous names for external and internal interfaces so it is easy to mess up for end-user.
The following improvements should be done:
1. improve naming in ISPC Runtime interfaces
…
-
## Preliminary Steps
Please confirm you have...
- [x] reviewed [How Linguist Works](https://github.com/github/linguist#how-linguist-works),
- [x] reviewed the [Troubleshooting](https://github…
-
Hola se ve lo que agrego?
-
Need to design/implement matrix type in ISPC language.
-
`erf` and `erfc` are widely used math functions, and they have both C/C++ stdlib implementations and SVML intrinsics, so it would be great if we can use it in ISPC.
What is the process to add a built…
-
Hi,
When compiling and running bc7e.ispc on a computer with an apple M1 cpu, I consistently hit this assert.
`bc7e.ispc:2890:2: Assertion failed: *pCur_ofs
-
> Intel(r) SPMD Program Compiler (ispc), 1.12.0 (build commit 2a3fc60 @ 20190816, LLVM 8.0.0)
When compiling for multiple targets, the dispatch header will have a function named the same as the fun…
-
It looks like the short vector size is actually rounded up to the next power of 2. It is probably done for small sizes due to some performance concerns (e.g., 3 to 4), despite the fact that it is erro…
-
#### Steps to reproduce
Compile the following code (enum.ispc):
```
enum material_type {
DIFFUSE = 0,
};
struct sphere {
material_type type;
};
export uniform float render(uniform …