This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
tests/src/JIT/Performance/CodeQuality/Math/Functions Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 99 <OutputType >Exe</OutputType >
1010 <ProjectTypeGuids >{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids >
1111 <SolutionDir Condition =" $(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'" >..\..\</SolutionDir >
12- <NuGetTargetMoniker >.NETStandard ,Version=v1.4 </NuGetTargetMoniker >
12+ <NuGetTargetMoniker >.NETCoreApp ,Version=v1.1 </NuGetTargetMoniker >
1313 </PropertyGroup >
1414 <!-- Default configurations to help VS understand the configurations -->
1515 <PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
7070 <Compile Include =" Single\TanSingle.cs" />
7171 <Compile Include =" Single\TanhSingle.cs" />
7272 </ItemGroup >
73- <PropertyGroup >
74- <ProjectJson >$(JitPackagesConfigFileDirectory)benchmark\project.json</ProjectJson >
75- <ProjectLockJson >$(JitPackagesConfigFileDirectory)benchmark\project.lock.json</ProjectLockJson >
76- </PropertyGroup >
7773 <Import Project =" $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
7874 <PropertyGroup Condition =" '$(MsBuildProjectDirOverride)' != '' " >
7975 </PropertyGroup >
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public static void AcosSingleTest()
3838
3939 var diff = MathF . Abs ( acosSingleExpectedResult - result ) ;
4040
41- if ( diff > floatEpsilon )
41+ if ( diff > singleEpsilon )
4242 {
4343 throw new Exception ( $ "Expected Result { acosSingleExpectedResult } ; Actual Result { result } ") ;
4444 }
You can’t perform that action at this time.
0 commit comments