Skip to content

Commit

Permalink
CsCheck 3.0.0-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyLloyd committed Nov 1, 2023
1 parent 7da25e9 commit 88d37d1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 31 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,31 +30,6 @@ jobs:
path: MKL.NET.Native/bin/build/win-x64/Release/MKL.NET.Native.dll
- name: Test
run: dotnet run --project Tests -c Release -f net6.0 -r win-x64 --no-self-contained -- -perf --info --nost --time 60 --wait 10 --skip
windows_core_86:
runs-on: windows-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
include-prerelease: true
- name: Download Native
run: ./Scripts/Download-Devel win-x86
- name: Build Native
run: |
cmake --version
cmake -A Win32 -S MKL.NET.Native -B MKL.NET.Native/bin/build/win-x86
cmake --build MKL.NET.Native/bin/build/win-x86 --config Release --verbose
- name: Upload Native
uses: actions/upload-artifact@v2
with:
name: win-x86
path: MKL.NET.Native/bin/build/win-x86/Release/MKL.NET.Native.dll
- name: Test
run: dotnet run --project Tests -c Release -f net6.0 -r win-x86 -- -perf --info --nost --time 60 --wait 10 --skip
linux_core_64:
runs-on: ubuntu-latest
env:
Expand Down
12 changes: 6 additions & 6 deletions Tests/Stats.EstimatorTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ let quartile = test "quartile" {
// //Check.close VeryLow expected.q[4] actual.Q4
//}

test "faster" {
test "perf" {
let! xs = Gen.Double.OneTwo.Array
Check.faster
(fun () ->
Expand Down Expand Up @@ -168,7 +168,7 @@ let quantile = test "quantile" {
// //Check.close VeryLow expected.q[4] actual.Q4
//}

test "faster" {
test "perf" {
let! xs = Gen.Double.OneTwo.Array
Check.faster
(fun () ->
Expand Down Expand Up @@ -355,7 +355,7 @@ let moment4 = test "moment4" {
Check.close VeryHigh expected.Kurtosis actual.Kurtosis
}

test "faster" {
test "perf" {
let! xs = Gen.Double.OneTwo.Array
Check.faster
(fun () ->
Expand Down Expand Up @@ -420,7 +420,7 @@ let moment3 = test "moment3" {
Check.close VeryHigh expected.Skewness actual.Skewness
}

test "faster" {
test "perf" {
let! xs = Gen.Double.OneTwo.Array
Check.faster
(fun () ->
Expand Down Expand Up @@ -482,7 +482,7 @@ let moment2 = test "moment2" {
Check.close VeryHigh expected.StandardDeviation actual.StandardDeviation
}

test "faster" {
test "perf" {
let! xs = Gen.Double.OneTwo.Array
Check.faster
(fun () ->
Expand Down Expand Up @@ -540,7 +540,7 @@ let moment1 = test "moment1" {
Check.close VeryHigh expected.Mean actual.Mean
}

test "faster" {
test "perf" {
let! xs = Gen.Double.OneTwo.Array
Check.faster
(fun () ->
Expand Down

0 comments on commit 88d37d1

Please sign in to comment.