+add Parameter 'activation' to function SimdSynetInnerProduct16bInit. #1341
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: MSBuild | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build_and_test_vs2022: | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| build_type: [Debug, Release] | |
| platform: [Win32, x64] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Add MSBuild to PATH | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Restore NuGet packages | |
| working-directory: ${{env.GITHUB_WORKSPACE}} | |
| run: nuget restore ./prj/vs2022 -Project2ProjectTimeOut 300 | |
| - name: Host properties | |
| shell: powershell | |
| run: echo "$((Get-CimInstance Win32_Processor).Name), $((Get-CimInstance Win32_Processor).NumberOfCores) cores, $((Get-CimInstance Win32_Processor).NumberOfLogicalProcessors) threads." | |
| - name: Build | |
| working-directory: ${{env.GITHUB_WORKSPACE}} | |
| run: msbuild /m /p:Configuration=${{matrix.build_type}} /p:Platform=${{matrix.platform}} -maxCpuCount:4 ./prj/vs2022/Simd.sln | |
| - name: Test | |
| working-directory: ${{env.GITHUB_WORKSPACE}} | |
| run: bin\v143\${{matrix.platform}}\${{matrix.build_type}}\Test.exe "-r=." -m=a -tt=4 "-ot=log_${{matrix.platform}}_${{matrix.build_type}}.txt" -ts=10 | |