Unnamed Void
Unnamed Void

Reputation: 53

Could GPU accelerate gcc/g++ compilation

When I'm building my gentoo system, my nvidia gpu is usually unused, can I make some use of it?

Upvotes: 5

Views: 3430

Answers (1)

user149341
user149341

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

Related Questions