mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
* Remove binaries for spirv_new (#21) Avoid storing binaries in version control, as it is generally not well suited to this. Instead, in a followup commit we will add a script to regenerate the .spv files from their sources. Signed-off-by: Stuart Brady <stuart.brady@arm.com> * Add Python script to assemble spirv_new binaries (#21) This also changes the ext_cl_khr_spirv_no_integer_wrap_decoration assembly source so that the SPIR-V version is listed as 1.0, to ensure that the output of spirv-dis exactly matches the assembly. Signed-off-by: Stuart Brady <stuart.brady@arm.com>
test_conformance/spirv_new README ================================== The text versions of the spirv files are present in `conformance-tests/test_conformance/spriv_new/spirv_asm`. These text files have been used to generate the binaries in `spirv_bin` using the assembler from `spirv-tools`. The absolute path to `spirv_bin` needs to be passed after `--spirv-binaries-path` token for the test to find the SPIRV binaries. An example invocation looks like the following: ``` ./test_conformance/spirv_new/test_conformance_spirv_new --spirv-binaries-path /home/user/workspace/conformance-tests/test_conformance/spirv_new/spirv_bin/ [other options] ```