aneshlya
aneshlya
> Is it mandatory to provide a new implementation for erf and erfc when __math_lib == __math_lib_ispc || __math_lib == __math_lib_ispc_fast like other functions in stdlib.ispc? Depends on implementation. If...
Hi @Treata11, please rebase your change on top of the `main` to enable CI runs.
The CI is failing on ispcrt jobs. @Treata11, are you interested in completing this PR? Could you provide some brief description of the change and motivation behind it? I assume...
The CI jobs, which are failing, build ispcrt separately from ispc. So from what I see `ISPC_FRAMEWORK ` is applicable to ispcrt only, not to ispc, so you should move...
Also consider moving `ISPC_FRAMEWORK` option to ispcrt and renaming it to `ISPCRT_FRAMEWORK`.
Hi @Treata11 , Just to let you know, we're approaching the release and if you want to have the changes in the source code tagged for the release - it's...
So all these ``` check_isa, ispc, ispc-opt, ispc-slim ``` are binaries, not libraries. You may see `add_library` commands in the root `CMakeLists.txt` file but they are all `OBJECT` libraries rather...
@azwolski , please reproduce and try to investigate the issue. To dump IR after each ISPC phase use ```--debug-phase=first:last --dump-file=```. Note that ISPC is usually aggressively inlining all functions, you...
Thanks for your analysis! One possible solution for this issue can be to run `LoopFullUnrollPass` after the first lining. The fix adds a second opportunity for full loop unrolling after...