Closed ElaineYao closed 1 year ago
Hi @ElaineYao,
Client versions of Skylake are not the same as the server in terms of ISA level support so we cannot simply change the code you linked to to read if (model == 85 || model = 94)
. However, you can make this change in your local repo and the rest of the code will just work. You will need to keep in mind that "Skylake" in your case means Skylake Client and not try to run the same corpus on Skylake Server.
We will not be supporting model 94 in the upstream because we don't have access to such machines.
Hi,
I used the command below to check SiliFuzz's support for my CPU:
PLATFORM_ID=$(./tools/silifuzz_platform_id)
The output indicates that my Intel Skylake (Client) CPU is unsupported:After checking the source code and the Wiki, I found that SiliFuzz supports Intel Skylake (Server) CPUs with model 85.
I wonder if it's possible for SiliFuzz to support Intel Skylake (Client) CPUs with model 94 as well?