cuda-samples/Samples/3_CUDA_Features/warpAggregatedAtomicsCG/NsightEclipse.xml

85 lines
2.3 KiB
XML
Raw Normal View History

2018-03-03 08:07:37 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE entry SYSTEM "SamplesInfo.dtd">
<entry>
<name>warpAggregatedAtomicsCG</name>
<cflags>
<flag>--std=c++11</flag>
</cflags>
2022-01-13 14:05:24 +08:00
<cuda_api_list>
<toolkit>cudaMemcpy</toolkit>
2022-01-13 14:05:24 +08:00
<toolkit>cudaFree</toolkit>
<toolkit>cudaDeviceGetAttribute</toolkit>
<toolkit>cudaMemset</toolkit>
2022-01-13 14:05:24 +08:00
<toolkit>cudaMalloc</toolkit>
</cuda_api_list>
<description><![CDATA[This sample demonstrates how using Cooperative Groups (CG) to perform warp aggregated atomics to single and multiple counters, a useful technique to improve performance when many threads atomically add to a single or multiple counters.]]></description>
2018-03-03 08:07:37 +08:00
<includepaths>
<path>./</path>
<path>../</path>
2022-01-13 14:05:24 +08:00
<path>../../../Common</path>
2018-03-03 08:07:37 +08:00
</includepaths>
<keyconcepts>
<concept level="basic">Cooperative Groups</concept>
<concept level="basic">Atomic Intrinsics</concept>
</keyconcepts>
<keywords>
<keyword>GPGPU</keyword>
<keyword>Cooperative Groups</keyword>
<keyword>Atomic</keyword>
<keyword>CPP11</keyword>
2018-03-03 08:07:37 +08:00
</keywords>
<libraries>
</libraries>
<librarypaths>
</librarypaths>
<nsight_eclipse>true</nsight_eclipse>
<primary_file>warpAggregatedAtomicsCG.cu</primary_file>
<scopes>
<scope>1:CUDA Advanced Topics</scope>
</scopes>
2022-01-13 14:05:24 +08:00
<sm-arch>sm35</sm-arch>
<sm-arch>sm37</sm-arch>
<sm-arch>sm50</sm-arch>
<sm-arch>sm52</sm-arch>
<sm-arch>sm53</sm-arch>
<sm-arch>sm60</sm-arch>
<sm-arch>sm61</sm-arch>
<sm-arch>sm70</sm-arch>
<sm-arch>sm72</sm-arch>
<sm-arch>sm75</sm-arch>
<sm-arch>sm80</sm-arch>
<sm-arch>sm86</sm-arch>
<sm-arch>sm87</sm-arch>
<sm-arch>sm90</sm-arch>
2018-03-03 08:07:37 +08:00
<supported_envs>
<env>
<arch>x86_64</arch>
<platform>linux</platform>
</env>
<env>
<arch>ppc64le</arch>
<platform>linux</platform>
</env>
<env>
<arch>x86_64</arch>
<platform>macosx</platform>
</env>
<env>
<platform>windows7</platform>
</env>
<env>
<arch>arm</arch>
</env>
<env>
<arch>aarch64</arch>
</env>
2022-01-13 14:05:24 +08:00
<env>
<arch>sbsa</arch>
</env>
2018-03-03 08:07:37 +08:00
</supported_envs>
<supported_sm_architectures>
2022-01-13 14:05:24 +08:00
<from>3.5</from>
2018-03-03 08:07:37 +08:00
</supported_sm_architectures>
<title>Warp Aggregated Atomics using Cooperative Groups</title>
</entry>