Reputation: 53
When I'm building my gentoo system, my nvidia gpu is usually unused, can I make some use of it?
Upvotes: 5
Views: 3430
Reputation:
No, you cannot.
GPUs are typically best at accelerating massively parallel math-heavy tasks that involve little branching. Compiling software is basically the exact opposite of this - it's branch-heavy and does not parallelize well beyond the file level.
Upvotes: 8