Intel ISPC help

I am trying to use ISPC in my project. According to intel all I have to do is: “include the INTEL ISPCmodule in the build, then add INTEL ISPCfiles to the project.”

I have included the module. Where are the files that I need to add to my project and where do I add them in my project?

I want to know about it as well. is it working for unreal engine 5?

<name>.ispc files are normally added alongside .cpp files, which then require #include <name>.ispc.generated.h to be added.
For the compiling, as of 5.3, ispc seems to be not pre-provided in the pre-built release. In that case, download the official release here, then copy only the binary executor ispc to UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/bin/Linux then build the project as normal.
Also, make sure you have “IntelISPC” in Private/PublicDependencyModuleNames in .Build.cs, and the read-only Target.bCompileISPC is True

1 Like