Reputation: 1336
We have a small C++ project with the following architecture.
These two were compiled into a DLL:
Then another implementation of the same algorithm is written by someone else.
The main()
function does this:
We found that running the very same code and DLL on different computers returned quite different speed ratios. On one computer an implementation scored 6.4, and the very same implementation scored 2.8 on another machine. How could that be?
Upvotes: 1
Views: 100
Reputation: 38218
There could be tons of factors, but here are a few:
Upvotes: 1