Not everything with parallelism is suitable for GPUs
Not everything with parallelism is suitable for GPUs
Posted Aug 10, 2023 22:01 UTC (Thu) by DemiMarie (subscriber, #164188)In reply to: Using all of those cores by farnz
Parent article: Another round of speculative-execution vulnerabilities
GPUs have other limitations, though. For instance, the SIMT model means that GPUs are terrible at workloads with lots of non-uniform control flow. That isn’t a huge limitation for math or graphics, but it is a serious limitation for what I call “business logic” workloads, where a significant part of the problem is figuring out what to do next. This includes e.g. web applications, which have a huge amount of parallelism but lots of conditional branches and non-uniform memory accesses.
