Skip to content

Commit 2fb50d6

Browse files
authored
Add extra multi reduce functions (#14)
* adding extra multi reduce fuctions * adding more versions of multi reduce with different nuimbers of unrol and arguments * remove unused variables, clean up accumulate/ multi reduction * commit of variadic reduction * clean up variadic reduce project
1 parent 93b035e commit 2fb50d6

9 files changed

+2348
-34
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,13 @@
6969
/scratch/r003mi2
7070
/scratch/scratch.inspxeproj
7171
/debug.log
72+
/cmake-build-release/.cmake/api/v1/reply
73+
/cmake-build-release/.cmake/api/v1/query
74+
/cmake-build-release/accumulateExample/CMakeFiles/accumulateExample.dir/accumulate_example.cpp.obj
75+
/cmake-build-release
76+
/VariadicReducrion/e000
77+
/VariadicReducrion/Intel® VTune™ Profiler Results/VariadicReducrion
78+
/VariadicReducrion/x64
79+
/DawnCache
80+
/config
81+
/GPUCache

VariadicReducrion/VariadicReducrion.vcxproj

+350
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup>
4+
<Filter Include="Source Files">
5+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
6+
<Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
7+
</Filter>
8+
<Filter Include="Header Files">
9+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
10+
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
11+
</Filter>
12+
<Filter Include="Resource Files">
13+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
14+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
15+
</Filter>
16+
</ItemGroup>
17+
<ItemGroup>
18+
<ClCompile Include="VariadicReduction.cpp">
19+
<Filter>Source Files</Filter>
20+
</ClCompile>
21+
</ItemGroup>
22+
</Project>

0 commit comments

Comments
 (0)