Page 1 of 1

Unit of "speed" in the platform.getSpeed()

Posted: Wed Mar 27, 2013 3:57 am
by cbenzer
What is the meaning or unit of "speed" in the platform.getSpeed() output?

For a Quadro K5000 I get the following output:

platform = Platform.getPlatformByName('CUDA')
print "Platform: ", platform.getName()
print "Speed: ", platform.getSpeed()
print "Supports double: ", platform.supportsDoublePrecision()

Platform: CUDA
Speed: 100.0
Supports double: True

Looking at the K5000 specifications I couldn't find anything that somewhere near 100.

Thanks
Carl

Re: Unit of "speed" in the platform.getSpeed()

Posted: Wed Mar 27, 2013 9:34 am
by peastman
It's a completely arbitrary number. It's just used for selecting the fastest available platform, so the only real significance is that the CUDA platform returns a larger value than the Reference platform.

Peter

Re: Unit of "speed" in the platform.getSpeed()

Posted: Wed Mar 27, 2013 12:17 pm
by cbenzer
Thanks for the clarification.