forked from KomputeProject/kompute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKompute.vcxproj.filters
85 lines (85 loc) · 3.41 KB
/
Kompute.vcxproj.filters
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="include">
<UniqueIdentifier>{89AF369E-F58E-B539-FEA6-40106A051C9B}</UniqueIdentifier>
</Filter>
<Filter Include="include\kompute">
<UniqueIdentifier>{BD1A9C73-29A6-0938-32B7-8C2C9EC16538}</UniqueIdentifier>
</Filter>
<Filter Include="include\kompute\logger">
<UniqueIdentifier>{0C2E460E-F827-6F60-E194-0571CD2DD5CC}</UniqueIdentifier>
</Filter>
<Filter Include="include\kompute\operations">
<UniqueIdentifier>{10746AF0-FC83-16C1-653D-7BDF516C055A}</UniqueIdentifier>
</Filter>
<Filter Include="logger">
<UniqueIdentifier>{4507DF0B-31A9-09E2-1A64-1D3606A59032}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\include\ShaderLogisticRegression.hpp">
<Filter>include</Filter>
</ClInclude>
<ClInclude Include="src\include\ShaderOpMult.hpp">
<Filter>include</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\Algorithm.hpp">
<Filter>include\kompute</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\Core.hpp">
<Filter>include\kompute</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\Kompute.hpp">
<Filter>include\kompute</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\Manager.hpp">
<Filter>include\kompute</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\Sequence.hpp">
<Filter>include\kompute</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\Tensor.hpp">
<Filter>include\kompute</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\logger\Logger.hpp">
<Filter>include\kompute\logger</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\operations\OpAlgoDispatch.hpp">
<Filter>include\kompute\operations</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\operations\OpBase.hpp">
<Filter>include\kompute\operations</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\operations\OpMemoryBarrier.hpp">
<Filter>include\kompute\operations</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\operations\OpMult.hpp">
<Filter>include\kompute\operations</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\operations\OpTensorCopy.hpp">
<Filter>include\kompute\operations</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\operations\OpTensorSyncDevice.hpp">
<Filter>include\kompute\operations</Filter>
</ClInclude>
<ClInclude Include="src\include\kompute\operations\OpTensorSyncLocal.hpp">
<Filter>include\kompute\operations</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="src\Algorithm.cpp" />
<ClCompile Include="src\Core.cpp" />
<ClCompile Include="src\Manager.cpp" />
<ClCompile Include="src\OpAlgoDispatch.cpp" />
<ClCompile Include="src\OpMemoryBarrier.cpp" />
<ClCompile Include="src\OpTensorCopy.cpp" />
<ClCompile Include="src\OpTensorSyncDevice.cpp" />
<ClCompile Include="src\OpTensorSyncLocal.cpp" />
<ClCompile Include="src\Sequence.cpp" />
<ClCompile Include="src\Tensor.cpp" />
<ClCompile Include="src\logger\Logger.cpp">
<Filter>logger</Filter>
</ClCompile>
</ItemGroup>
</Project>