Skip to content
Snippets Groups Projects
  1. Jan 24, 2020
  2. Nov 08, 2019
  3. Oct 26, 2019
  4. Oct 25, 2019
  5. Oct 04, 2019
  6. Aug 21, 2019
    • ReinUsesLisp's avatar
      shader_ir: Implement VOTE · 4e35177e
      ReinUsesLisp authored
      Implement VOTE using Nvidia's intrinsics. Documentation about these can
      be found here
      https://developer.nvidia.com/reading-between-threads-shader-intrinsics
      
      Instead of using portable ARB instructions I opted to use Nvidia
      intrinsics because these are the closest we have to how Tegra X1
      hardware renders.
      
      To stub VOTE on non-Nvidia drivers (including nouveau) this commit
      simulates a GPU with a warp size of one, returning what is meaningful
      for the instruction being emulated:
      
      * anyThreadNV(value) -> value
      * allThreadsNV(value) -> value
      * allThreadsEqualNV(value) -> true
      
      ballotARB, also known as "uint64_t(activeThreadsNV())", emits
      
      VOTE.ANY Rd, PT, PT;
      
      on nouveau's compiler. This doesn't match exactly to Nvidia's code
      
      VOTE.ALL Rd, PT, PT;
      
      Which is emulated with activeThreadsNV() by this commit. In theory this
      shouldn't really matter since .ANY, .ALL and .EQ affect the predicates
      (set to PT on those cases) and not the registers.
      4e35177e
  7. Jul 19, 2019
  8. Jul 16, 2019
    • Lioncash's avatar
      shader_ir: std::move Node instance where applicable · bebbdc20
      Lioncash authored
      These are std::shared_ptr instances underneath the hood, which means
      copying them isn't as cheap as a regular pointer. Particularly so on
      weakly-ordered systems.
      
      This avoids atomic reference count increments and decrements where they
      aren't necessary for the core set of operations.
      bebbdc20
  9. Jul 09, 2019
  10. Jun 21, 2019
  11. Jun 05, 2019
  12. Apr 18, 2019
  13. Feb 26, 2019
  14. Feb 03, 2019
  15. Jan 28, 2019
  16. Jan 15, 2019
Loading