Commit graph

11 commits

Author SHA1 Message Date
Wunkolo
dcd64802a3 Refactor ShaderJITTest into a specialization of ShaderInterpreterTest 2024-03-19 11:17:05 -07:00
Wunk
c89fe05b8a
Fix shader-interpreter non-IEEE outputs (#459)
* Re-enable non-IEEE shader test

* Fix shader-interpreter RCP/RSQ output

Handle the `-0.0` special-case

* Fix shader-interpreter MIN/MAX output

Takes advantage of min/max's properties regarding non-finites to return
NaN depending on its input position:
```
max(NaN, 2.f) -> NaN
max(2.f, NaN) -> 2
min(NaN, 2.f) -> NaN
min(2.f, NaN) -> 2
```

* Fix shader-interpreter FLR indexing bug

`3 - 1` should be `3 - i`
2024-03-12 08:34:02 +02:00
Wunk
fe9939689d
Add shader-jit unit-tests (#458)
* Rename `dynapica` TU to `shader`

These unit-tests in particular only actually test
the shader-interpreter and not any of the JITs.

* Conditionally test the shader-jit

In the case that the host supports the shader-jit, the interpreter and the shader-jit will both be tested with the same unit-tests. Allowing for even more coverage.

* Remove weird git submodule
2024-03-12 02:29:58 +02:00
Wunk
18df066463
Add shader unit-testing (#457)
* Initialize catch-2 based unit tests

* Add nihstro submodule

Enabled only during testing to help with assembling shaders in-code.

* Implement `ADD` instruction unit-test

* Add arithmetic/logical instruction unit tests

* Add embedded catch2 submodule

Will use the host catch2 if available.
2024-03-12 00:53:49 +02:00
noumidev
6c73fb13c5
Proper handling of SetApplicationCpuTimeLimit with invalid parameters (#353)
* Add NotImplemented error code

* Add proper handling of SetAppCpuTimeLimit with invalid params

Set default time limit to 0

* Add AppCpuTimeLimit tests

* Replace spaces with tab
2023-12-18 20:45:57 +02:00
wheremyfoodat
b868b69dbf Add test ROMs for detecting emulators 2023-08-03 11:56:55 +03:00
wheremyfoodat
f1dfa437b9 [Test ROMs] Add Immediate Mode triangle test 2023-04-11 19:04:52 +03:00
wheremyfoodat
224ad643e8 [GSP::GPU] Add PSC0, PSC1 interrupts, set error flag in GSP shared mem to 0 on IRQ (Fixes Citro3D hang) 2023-03-09 03:31:12 +02:00
wheremyfoodat
4395013118 Fix submodules for realsies 2022-09-28 17:25:35 +03:00
wheremyfoodat
dcad7846eb [PICA] Add header for float types 2022-09-22 04:46:13 +03:00
wheremyfoodat
818ade660d Rename test folder & update gitignore 2022-09-18 15:58:35 +03:00