yum-archive/TaSTT-Whisper
High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model
git clone https://git.yummers.dev/yum-archive/TaSTT-Whisper
8c4603c
master
1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <ItemGroup Label="ProjectConfigurations"> 4 <ProjectConfiguration Include="Debug|x64"> 5 <Configuration>Debug</Configuration> 6 <Platform>x64</Platform> 7 </ProjectConfiguration> 8 <ProjectConfiguration Include="Release|x64"> 9 <Configuration>Release</Configuration> 10 <Platform>x64</Platform> 11 </ProjectConfiguration> 12 </ItemGroup> 13 <PropertyGroup Label="Globals"> 14 <VCProjectVersion>16.0</VCProjectVersion> 15 <Keyword>Win32Proj</Keyword> 16 <ProjectGuid>{8478a77c-d851-4c63-9511-1770cc82d33e}</ProjectGuid> 17 <RootNamespace>compareTraces</RootNamespace> 18 <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion> 19 </PropertyGroup> 20 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 21 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 22 <ConfigurationType>Application</ConfigurationType> 23 <UseDebugLibraries>true</UseDebugLibraries> 24 <PlatformToolset>v143</PlatformToolset> 25 <CharacterSet>Unicode</CharacterSet> 26 </PropertyGroup> 27 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 28 <ConfigurationType>Application</ConfigurationType> 29 <UseDebugLibraries>false</UseDebugLibraries> 30 <PlatformToolset>v143</PlatformToolset> 31 <WholeProgramOptimization>true</WholeProgramOptimization> 32 <CharacterSet>Unicode</CharacterSet> 33 </PropertyGroup> 34 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 35 <ImportGroup Label="ExtensionSettings"> 36 </ImportGroup> 37 <ImportGroup Label="Shared"> 38 </ImportGroup> 39 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 40 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 41 </ImportGroup> 42 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 43 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 44 </ImportGroup> 45 <PropertyGroup Label="UserMacros" /> 46 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 47 <ClCompile> 48 <WarningLevel>Level3</WarningLevel> 49 <SDLCheck>true</SDLCheck> 50 <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 51 <ConformanceMode>true</ConformanceMode> 52 <LanguageStandard>stdcpp20</LanguageStandard> 53 <PrecompiledHeader>Use</PrecompiledHeader> 54 <EnableEnhancedInstructionSet>AdvancedVectorExtensions</EnableEnhancedInstructionSet> 55 </ClCompile> 56 <Link> 57 <SubSystem>Console</SubSystem> 58 <GenerateDebugInformation>true</GenerateDebugInformation> 59 </Link> 60 </ItemDefinitionGroup> 61 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 62 <ClCompile> 63 <WarningLevel>Level3</WarningLevel> 64 <FunctionLevelLinking>true</FunctionLevelLinking> 65 <IntrinsicFunctions>true</IntrinsicFunctions> 66 <SDLCheck>true</SDLCheck> 67 <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 68 <ConformanceMode>true</ConformanceMode> 69 <LanguageStandard>stdcpp20</LanguageStandard> 70 <PrecompiledHeader>Use</PrecompiledHeader> 71 <EnableEnhancedInstructionSet>AdvancedVectorExtensions</EnableEnhancedInstructionSet> 72 </ClCompile> 73 <Link> 74 <SubSystem>Console</SubSystem> 75 <EnableCOMDATFolding>true</EnableCOMDATFolding> 76 <OptimizeReferences>true</OptimizeReferences> 77 <GenerateDebugInformation>true</GenerateDebugInformation> 78 </Link> 79 </ItemDefinitionGroup> 80 <ItemGroup> 81 <ClCompile Include="CommandLineArgs.cpp" /> 82 <ClCompile Include="compareTraces.cpp" /> 83 <ClCompile Include="compare.cpp" /> 84 <ClCompile Include="stdafx.cpp"> 85 <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader> 86 <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader> 87 </ClCompile> 88 <ClCompile Include="testUtils.cpp" /> 89 <ClCompile Include="TraceReader.cpp" /> 90 </ItemGroup> 91 <ItemGroup> 92 <ClInclude Include="CommandLineArgs.h" /> 93 <ClInclude Include="compare.h" /> 94 <ClInclude Include="stdafx.h" /> 95 <ClInclude Include="TraceReader.h" /> 96 </ItemGroup> 97 <ItemGroup> 98 <Text Include="Readme.txt" /> 99 </ItemGroup> 100 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 101 <ImportGroup Label="ExtensionTargets"> 102 </ImportGroup> 103</Project>