Skip to content

Commit 10f1b98

Browse files
committed
IMB 2018 Update 1 release
1 parent 38a4755 commit 10f1b98

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+209
-1511
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ files and folders appear on your system:
6060
----------
6161
What's New
6262
----------
63+
New in Intel(R) MPI Benchmarks 2018 Update 1
64+
--------------------------------------------
65+
- Support for the Microsoft* Visual Studio* 2017. Microsoft* Visual Studio* 2012
66+
support is removed.
67+
6368
New in Intel(R) MPI Benchmarks 2018
6469
--------------------------------------------
6570
- Product documentation is now available online only at:

ReadMe_IMB.txt

Lines changed: 29 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--------------------------------------------------
2-
Intel(R) MPI Benchmarks 2018
2+
Intel(R) MPI Benchmarks 2018 Update 1
33
README
44
--------------------------------------------------
55

@@ -11,8 +11,8 @@ Contents
1111
- Product Directories
1212
- What's New
1313
- Command-Line Control
14-
- Building Instructions for Linux* OS
15-
- Building Instructions for Windows* OS
14+
- Build Instructions for Linux* OS
15+
- Build Instructions for Windows* OS
1616
- Copyright and License Information
1717
- Legal Information
1818

@@ -25,10 +25,11 @@ You can run all of the supported benchmarks, or a subset specified in the
2525
command line using one executable file. Use command-line parameters to specify
2626
various settings, such as time measurement, message lengths, and selection of
2727
communicators. For details, see the Intel(R) MPI Benchmarks User's Guide
28-
located in the <install-dir>/doc directory.
28+
located at: https://software.intel.com/en-us/imb-user-guide
2929

30-
By default, Intel(R) MPI Benchmarks is installed at:
31-
- C:\Program Files (x86)\IntelSWTools\imb on Windows* OS
30+
When installed as part of Intel(R) MPI Library, the default location of
31+
the Intel(R) MPI Benchmarks is:
32+
- C:\Program Files (x86)\IntelSWTools\imb on Windows* OS
3233
- /opt/intel/imb on Linux* OS
3334

3435
Before using the Intel(R) MPI Benchmarks, please read the license agreements
@@ -60,6 +61,11 @@ files and folders appear on your system:
6061
----------
6162
What's New
6263
----------
64+
New in Intel(R) MPI Benchmarks 2018 Update 1
65+
--------------------------------------------
66+
- Support for the Microsoft* Visual Studio* 2017. Microsoft* Visual Studio* 2012
67+
support is removed.
68+
6369
New in Intel(R) MPI Benchmarks 2018
6470
--------------------------------------------
6571
- Product documentation is now available online only at:
@@ -128,10 +134,20 @@ You can see the Intel(R) MPI Benchmarks User's Guide for details on the
128134
command-line parameters.
129135

130136
-----------------------------------------
131-
Building Instructions for Linux* OS
137+
Build Instructions for Linux* OS
132138
-----------------------------------------
133-
1) Set the CC variable to point to the appropriate compiler wrapper, mpiicc or mpicc.
134-
2) Run one or more Makefile commands below:
139+
140+
1) Set up the environment for the compiler and Intel(R) MPI Library.
141+
For the Intel(R) compilers, run:
142+
143+
source <compiler_dir>/bin/compilervars.sh intel64
144+
145+
For the Intel(R) MPI Library, run:
146+
147+
source <intel_mpi_dir>/intel64/bin/mpivars.sh
148+
149+
2) Set the CC variable to point to the appropriate compiler wrapper, mpiicc or mpicc.
150+
3) Run one or more Makefile commands below:
135151

136152
make clean - remove legacy binary object files and executable files
137153
make MPI1 - build the executable file for the IMB-MPI1 component
@@ -141,56 +157,22 @@ Building Instructions for Linux* OS
141157
make RMA - build the executable file for IMB-RMA benchmarks
142158
make all - build all executable files available
143159

144-
3) Run the benchmarks as follows:
160+
4) Run the benchmarks as follows:
145161

146162
mpirun -n <number_of_processes> IMB-<component> [arguments]
147163

148164
where <component> is one of the make targets above.
149-
For details, refer to the Intel(R) MPI Benchmarks User's Guide at:
150-
https://software.intel.com/en-us/imb-user-guide
165+
For details, refer to the Intel(R) MPI Benchmarks User's Guide.
151166

152167
-----------------------------------------
153-
Building Instructions for Windows* OS
168+
Build Instructions for Windows* OS
154169
-----------------------------------------
155170
Use the enclosed solution files located in the component-specific
156171
subdirectories under the imb/WINDOWS directory. Click on the respective
157172
".vcproj" or ".vcxproj" project file and use the Microsoft* Visual Studio*
158173
menu to run the associated benchmark application.
159174

160-
Building "x64" Executable Files
161-
-------------------------------
162-
1) Check that the Include, Lib, and Path environment variables are set as follows:
163-
%I_MPI_ROOT%\intel64\include
164-
%I_MPI_ROOT%\intel64\lib
165-
%I_MPI_ROOT%\mpi\intel64\bin
166-
The %I_MPI_ROOT% environment variable is set to the Intel(R) MPI Library
167-
installation directory.
168-
169-
2) Open the ".vcproj" or ".vcxproj" file for the component you would like to
170-
build. From the Visual Studio Project panel:
171-
a) Change the "Solution Platforms" dialog box to "x64".
172-
b) Change the "Solution Configurations" dialog box to "Release".
173-
c) Check other settings as required, for example:
174-
General > Project Defaults
175-
- Set "Character Set" to "Use Multi-Byte Character Set"
176-
C/C++ > General
177-
- Set "Additional Include Directories" to
178-
"$(I_MPI_ROOT)\intel64\include"
179-
- Set "Warning Level" to "Level 1 (/W1)"
180-
C/C++ > Preprocessor
181-
- For the "Preprocessor definitions" within the Visual Studio
182-
projects, add the conditional compilation macros WIN_IMB and
183-
_CRT_SECURE_NO_DEPRECATE. Depending on the components you intend to
184-
use, add one or more of the following macros:
185-
MPI1, EXT, MPIIO, NBC, RMA.
186-
Linker > Input
187-
- Set "Additional Dependencies" to "$(I_MPI_ROOT)\intel64\lib\impi.lib".
188-
Make sure to add quotes.
189-
190-
3) Use F7 or Build > Build Solution to create an executable.
191-
192-
For details, refer to the Intel(R) MPI Benchmarks User's Guide at:
193-
https://software.intel.com/en-us/imb-user-guide
175+
Use F7 or Build > Build Solution to create an executable.
194176

195177
----------------------
196178
Copyright and Licenses

WINDOWS/IMB-EXT_VS_2013/IMB-EXT.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ END
5353
//
5454

5555
VS_VERSION_INFO VERSIONINFO
56-
FILEVERSION 2018,0,0,0
57-
PRODUCTVERSION 2018,0,0,0
56+
FILEVERSION 2018,0,1,0
57+
PRODUCTVERSION 2018,0,1,0
5858
FILEFLAGSMASK 0x17L
5959
#ifdef _DEBUG
6060
FILEFLAGS 0x1L
@@ -71,12 +71,12 @@ BEGIN
7171
BEGIN
7272
VALUE "CompanyName", "Intel Corporation"
7373
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
74-
VALUE "FileVersion", "2018.0.0"
74+
VALUE "FileVersion", "2018.0.1"
7575
VALUE "InternalName", "IMB-EXT"
7676
VALUE "LegalCopyright", "Copyright (C) 2003-2017 Intel Corporation. All rights reserved."
7777
VALUE "OriginalFilename", "IMB-EXT.exe"
7878
VALUE "ProductName", "Intel(R) MPI Benchmarks"
79-
VALUE "ProductVersion", "2018.0.0"
79+
VALUE "ProductVersion", "2018.0.1"
8080
END
8181
END
8282
BLOCK "VarFileInfo"

WINDOWS/IMB-EXT_VS_2013/IMB-EXT.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,12 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "IMB-EXT", "IMB-EXT.vcxproj"
44
EndProject
55
Global
66
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7-
Debug|Win32 = Debug|Win32
87
Debug|x64 = Debug|x64
9-
Release|Win32 = Release|Win32
108
Release|x64 = Release|x64
119
EndGlobalSection
1210
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13-
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Debug|Win32.ActiveCfg = Debug|Win32
14-
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Debug|Win32.Build.0 = Debug|Win32
1511
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Debug|x64.ActiveCfg = Debug|x64
1612
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Debug|x64.Build.0 = Debug|x64
17-
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Release|Win32.ActiveCfg = Release|Win32
18-
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Release|Win32.Build.0 = Release|Win32
1913
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Release|x64.ActiveCfg = Release|x64
2014
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Release|x64.Build.0 = Release|x64
2115
EndGlobalSection

WINDOWS/IMB-EXT_VS_2013/IMB-EXT.vcxproj

Lines changed: 1 addition & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
4-
<ProjectConfiguration Include="Debug|Win32">
5-
<Configuration>Debug</Configuration>
6-
<Platform>Win32</Platform>
7-
</ProjectConfiguration>
84
<ProjectConfiguration Include="Debug|x64">
95
<Configuration>Debug</Configuration>
106
<Platform>x64</Platform>
117
</ProjectConfiguration>
12-
<ProjectConfiguration Include="Release|Win32">
13-
<Configuration>Release</Configuration>
14-
<Platform>Win32</Platform>
15-
</ProjectConfiguration>
168
<ProjectConfiguration Include="Release|x64">
179
<Configuration>Release</Configuration>
1810
<Platform>x64</Platform>
@@ -24,17 +16,6 @@
2416
<Keyword>Win32Proj</Keyword>
2517
</PropertyGroup>
2618
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
27-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
28-
<ConfigurationType>Application</ConfigurationType>
29-
<CharacterSet>MultiByte</CharacterSet>
30-
<WholeProgramOptimization>true</WholeProgramOptimization>
31-
<PlatformToolset>v120</PlatformToolset>
32-
</PropertyGroup>
33-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
34-
<ConfigurationType>Application</ConfigurationType>
35-
<CharacterSet>MultiByte</CharacterSet>
36-
<PlatformToolset>v120</PlatformToolset>
37-
</PropertyGroup>
3819
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
3920
<ConfigurationType>Application</ConfigurationType>
4021
<CharacterSet>MultiByte</CharacterSet>
@@ -49,12 +30,6 @@
4930
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
5031
<ImportGroup Label="ExtensionSettings">
5132
</ImportGroup>
52-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
53-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
54-
</ImportGroup>
55-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
56-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
57-
</ImportGroup>
5833
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
5934
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6035
</ImportGroup>
@@ -64,56 +39,19 @@
6439
<PropertyGroup Label="UserMacros" />
6540
<PropertyGroup>
6641
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
67-
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
68-
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)\</IntDir>
69-
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
7042
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
7143
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\</IntDir>
7244
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
73-
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir>
74-
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir>
75-
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
7645
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
7746
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\</IntDir>
7847
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
79-
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
80-
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
81-
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" />
8248
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
8349
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
8450
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" />
85-
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet>
86-
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
87-
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" />
8851
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|x64'">AllRules.ruleset</CodeAnalysisRuleSet>
8952
<CodeAnalysisRules Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
9053
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
9154
</PropertyGroup>
92-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
93-
<ClCompile>
94-
<Optimization>Disabled</Optimization>
95-
<AdditionalIncludeDirectories>%I_MPI_ROOT%\ia32\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
96-
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;WIN_IMB;_CRT_SECURE_NO_DEPRECATE;EXT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
97-
<MinimalRebuild>true</MinimalRebuild>
98-
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
99-
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
100-
<DisableLanguageExtensions>false</DisableLanguageExtensions>
101-
<PrecompiledHeader>
102-
</PrecompiledHeader>
103-
<WarningLevel>Level1</WarningLevel>
104-
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
105-
<CompileAs>CompileAsC</CompileAs>
106-
<ForcedIncludeFiles>%(ForcedIncludeFiles)</ForcedIncludeFiles>
107-
</ClCompile>
108-
<Link>
109-
<AdditionalDependencies>%I_MPI_ROOT%\ia32\lib\impi.lib;%(AdditionalDependencies)</AdditionalDependencies>
110-
<GenerateDebugInformation>true</GenerateDebugInformation>
111-
<SubSystem>Console</SubSystem>
112-
<ImportLibrary>
113-
</ImportLibrary>
114-
<TargetMachine>MachineX86</TargetMachine>
115-
</Link>
116-
</ItemDefinitionGroup>
11755
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
11856
<Midl>
11957
<TargetEnvironment>X64</TargetEnvironment>
@@ -142,28 +80,6 @@
14280
<TargetMachine>MachineX64</TargetMachine>
14381
</Link>
14482
</ItemDefinitionGroup>
145-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
146-
<ClCompile>
147-
<Optimization>MaxSpeed</Optimization>
148-
<IntrinsicFunctions>true</IntrinsicFunctions>
149-
<AdditionalIncludeDirectories>%I_MPI_ROOT%\ia32\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
150-
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;WIN_IMB;_CRT_SECURE_NO_DEPRECATE;EXT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
151-
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
152-
<FunctionLevelLinking>true</FunctionLevelLinking>
153-
<PrecompiledHeader>
154-
</PrecompiledHeader>
155-
<WarningLevel>Level1</WarningLevel>
156-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
157-
</ClCompile>
158-
<Link>
159-
<AdditionalDependencies>%I_MPI_ROOT%\ia32\lib\impi.lib;%(AdditionalDependencies)</AdditionalDependencies>
160-
<GenerateDebugInformation>true</GenerateDebugInformation>
161-
<SubSystem>Console</SubSystem>
162-
<OptimizeReferences>true</OptimizeReferences>
163-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
164-
<TargetMachine>MachineX86</TargetMachine>
165-
</Link>
166-
</ItemDefinitionGroup>
16783
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
16884
<Midl>
16985
<TargetEnvironment>X64</TargetEnvironment>
@@ -206,6 +122,7 @@
206122
<ClCompile Include="..\..\src\IMB_parse_name_ext.c" />
207123
<ClCompile Include="..\..\src\IMB_strgs.c" />
208124
<ClCompile Include="..\..\src\IMB_user_set_info.c" />
125+
<ClCompile Include="..\..\src\IMB_utils.c" />
209126
<ClCompile Include="..\..\src\IMB_warm_up.c" />
210127
<ClCompile Include="..\..\src\IMB_window.c">
211128
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>

WINDOWS/IMB-EXT_VS_2015/IMB-EXT.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ END
5353
//
5454

5555
VS_VERSION_INFO VERSIONINFO
56-
FILEVERSION 2018,0,0,0
57-
PRODUCTVERSION 2018,0,0,0
56+
FILEVERSION 2018,0,1,0
57+
PRODUCTVERSION 2018,0,1,0
5858
FILEFLAGSMASK 0x17L
5959
#ifdef _DEBUG
6060
FILEFLAGS 0x1L
@@ -71,12 +71,12 @@ BEGIN
7171
BEGIN
7272
VALUE "CompanyName", "Intel Corporation"
7373
VALUE "FileDescription", "Intel(R) MPI Benchmarks"
74-
VALUE "FileVersion", "2018.0.0"
74+
VALUE "FileVersion", "2018.0.1"
7575
VALUE "InternalName", "IMB-EXT"
7676
VALUE "LegalCopyright", "Copyright (C) 2003-2017 Intel Corporation. All rights reserved."
7777
VALUE "OriginalFilename", "IMB-EXT.exe"
7878
VALUE "ProductName", "Intel(R) MPI Benchmarks"
79-
VALUE "ProductVersion", "2018.0.0"
79+
VALUE "ProductVersion", "2018.0.1"
8080
END
8181
END
8282
BLOCK "VarFileInfo"

WINDOWS/IMB-EXT_VS_2015/IMB-EXT.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,12 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "IMB-EXT", "IMB-EXT.vcxproj"
44
EndProject
55
Global
66
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7-
Debug|Win32 = Debug|Win32
87
Debug|x64 = Debug|x64
9-
Release|Win32 = Release|Win32
108
Release|x64 = Release|x64
119
EndGlobalSection
1210
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13-
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Debug|Win32.ActiveCfg = Debug|Win32
14-
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Debug|Win32.Build.0 = Debug|Win32
1511
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Debug|x64.ActiveCfg = Debug|x64
1612
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Debug|x64.Build.0 = Debug|x64
17-
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Release|Win32.ActiveCfg = Release|Win32
18-
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Release|Win32.Build.0 = Release|Win32
1913
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Release|x64.ActiveCfg = Release|x64
2014
{4219D5A9-6972-4B1C-9F07-EB97EEF4EDDA}.Release|x64.Build.0 = Release|x64
2115
EndGlobalSection

0 commit comments

Comments
 (0)