Skip to content

Instantly share code, notes, and snippets.

@schiller-manuel
Created December 26, 2015 02:16
Show Gist options
  • Select an option

  • Save schiller-manuel/6bf2a85e9d43994ab6dd to your computer and use it in GitHub Desktop.

Select an option

Save schiller-manuel/6bf2a85e9d43994ab6dd to your computer and use it in GitHub Desktop.
performance test "inclusive_scan_by_key" for new implementation
<?xml version="1.0" ?>
<testsuite name="inclusive_scan_by_key">
<platform>
<device name="GeForce GTX 680">
<property name="revision" value="3.0"/>
<property name="global memory" value="4286959616" units="bytes"/>
<property name="multiprocessors" value="8"/>
<property name="cores" value="64"/>
<property name="constant memory" value="65536" units="bytes"/>
<property name="shared memory per block" value="49152" units="bytes"/>
<property name="warp size" value="32"/>
<property name="max threads per block" value="1024"/>
<property name="clock rate" value="1.137" units="GHz"/>
</device>
<compilation>
<property name="CUDA_VERSION" value="7000"/>
<property name="host compiler" value="GCC 40804"/>
<property name="__DATE__" value="Dec 26 2015"/>
<property name="__TIME__" value="01:01:51"/>
</compilation>
</platform>
<test name="inclusive_scan_by_key_int_char_16777216">
<variable name="KeyType" value="int"/>
<variable name="ValueType" value="char"/>
<variable name="InputSize" value="16777216"/>
<result name="Time" value="0.00641005" units="seconds"/>
<result name="Throughput" value="2.61733" units="GOp/s"/>
<result name="Bandwidth" value="52.3466" units="GBytes/s"/>
<status result="Success" message=""/>
</test>
<test name="inclusive_scan_by_key_int_short_16777216">
<variable name="KeyType" value="int"/>
<variable name="ValueType" value="short"/>
<variable name="InputSize" value="16777216"/>
<result name="Time" value="0.00692713" units="seconds"/>
<result name="Throughput" value="2.42196" units="GOp/s"/>
<result name="Bandwidth" value="58.1269" units="GBytes/s"/>
<status result="Success" message=""/>
</test>
<test name="inclusive_scan_by_key_int_int_16777216">
<variable name="KeyType" value="int"/>
<variable name="ValueType" value="int"/>
<variable name="InputSize" value="16777216"/>
<result name="Time" value="0.00813906" units="seconds"/>
<result name="Throughput" value="2.06132" units="GOp/s"/>
<result name="Bandwidth" value="65.9623" units="GBytes/s"/>
<status result="Success" message=""/>
</test>
<test name="inclusive_scan_by_key_int_long_16777216">
<variable name="KeyType" value="int"/>
<variable name="ValueType" value="long"/>
<variable name="InputSize" value="16777216"/>
<result name="Time" value="0.0256909" units="seconds"/>
<result name="Throughput" value="0.653041" units="GOp/s"/>
<result name="Bandwidth" value="31.346" units="GBytes/s"/>
<status result="Success" message=""/>
</test>
</testsuite>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment