Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement SIMD matrix multiplications #47

Draft
wants to merge 16 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
88 changes: 44 additions & 44 deletions .github/workflows/msvc-17-10.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
# SPDX short identifier: BSL-1.0

name: msvc-17-10
on:
push:
paths:
- '.github/**'
- 'cmake/**'
- 'cml/**'
- 'tests/**'
- 'CMakeLists.txt'
- 'CMakePresets.json'
- 'CML.cmake'
- 'vcpkg.json'

jobs:
msvc-17-10:
name: MSVC 17.10
runs-on: windows-2022
steps:
- name: Install MSVC 17.10
shell: pwsh
run: |
$vspath = 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise'
Test-Path -Path $vspath | Should -Be $true

$vsinstaller = 'C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe'
Test-Path -Path $vsinstaller | Should -Be $true

Start-Process -NoNewWindow -Wait -FilePath $vsinstaller -ArgumentList `
'modify', '--installPath', "`"$vspath`"", '--quiet', '--norestart', '--nocache', '--noUpdateInstaller', `
'--add', 'Microsoft.VisualStudio.Component.VC.14.40.17.10.x86.x64'

- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.29.0"
- uses: lukka/run-vcpkg@v11
- uses: lukka/run-cmake@v10
with:
configurePreset: "cml-ci-msvc17-mt-s"
configurePresetAdditionalArgs: "['-T version=14.40']"
buildPreset: "cml-ci-msvc17-mt-s-release"
testPreset: "cml-ci-msvc17-mt-s-release-test"
# SPDX short identifier: BSL-1.0
name: msvc-17-10
on:
push:
paths:
- '.github/**'
- 'cmake/**'
- 'cml/**'
- 'tests/**'
- 'CMakeLists.txt'
- 'CMakePresets.json'
- 'CML.cmake'
- 'vcpkg.json'
jobs:
msvc-17-10:
name: MSVC 17.10
runs-on: windows-2022
steps:
- name: Install MSVC 17.10
shell: pwsh
run: |
$vspath = 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise'
Test-Path -Path $vspath | Should -Be $true
$vsinstaller = 'C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe'
Test-Path -Path $vsinstaller | Should -Be $true
Start-Process -NoNewWindow -Wait -FilePath $vsinstaller -ArgumentList `
'modify', '--installPath', "`"$vspath`"", '--quiet', '--norestart', '--nocache', '--noUpdateInstaller', `
'--add', 'Microsoft.VisualStudio.Component.VC.14.40.17.10.x86.x64'
- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.29.0"
- uses: lukka/run-vcpkg@v11
- uses: lukka/run-cmake@v10
with:
configurePreset: "cml-ci-msvc17-mt-s"
configurePresetAdditionalArgs: "['-T version=14.40']"
buildPreset: "cml-ci-msvc17-mt-s-release"
testPreset: "cml-ci-msvc17-mt-s-release-test"
58 changes: 29 additions & 29 deletions .github/workflows/msvc-clangcl-latest.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
# SPDX short identifier: BSL-1.0

name: msvc-clangcl-latest
on:
push:
paths:
- '.github/**'
- 'cmake/**'
- 'cml/**'
- 'tests/**'
- 'CMakeLists.txt'
- 'CMakePresets.json'
- 'CML.cmake'
- 'vcpkg.json'

jobs:
msvc-clangcl-latest:
name: MSVC ClangCL Latest
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.29.0"
- uses: lukka/run-vcpkg@v11
- uses: lukka/run-cmake@v10
with:
configurePreset: "cml-ci-ninja-msvc-clangcl-mt-s"
buildPreset: "cml-ci-ninja-msvc-clangcl-mt-s-release"
# SPDX short identifier: BSL-1.0
name: msvc-clangcl-latest
on:
push:
paths:
- '.github/**'
- 'cmake/**'
- 'cml/**'
- 'tests/**'
- 'CMakeLists.txt'
- 'CMakePresets.json'
- 'CML.cmake'
- 'vcpkg.json'
jobs:
msvc-clangcl-latest:
name: MSVC ClangCL Latest
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.29.0"
- uses: lukka/run-vcpkg@v11
- uses: lukka/run-cmake@v10
with:
configurePreset: "cml-ci-ninja-msvc-clangcl-mt-s"
buildPreset: "cml-ci-ninja-msvc-clangcl-mt-s-release"
testPreset: "cml-ci-ninja-msvc-clangcl-mt-s-release-test"
58 changes: 29 additions & 29 deletions .github/workflows/msvc-latest.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
# SPDX short identifier: BSL-1.0

name: msvc-latest.yml
on:
push:
paths:
- '.github/**'
- 'cmake/**'
- 'cml/**'
- 'tests/**'
- 'CMakeLists.txt'
- 'CMakePresets.json'
- 'CML.cmake'
- 'vcpkg.json'

jobs:
msvc-latest:
name: MSVC Latest
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.29.0"
- uses: lukka/run-vcpkg@v11
- uses: lukka/run-cmake@v10
with:
configurePreset: "cml-ci-ninja-msvc-mt-s"
buildPreset: "cml-ci-ninja-msvc-mt-s-release"
# SPDX short identifier: BSL-1.0
name: msvc-latest.yml
on:
push:
paths:
- '.github/**'
- 'cmake/**'
- 'cml/**'
- 'tests/**'
- 'CMakeLists.txt'
- 'CMakePresets.json'
- 'CML.cmake'
- 'vcpkg.json'
jobs:
msvc-latest:
name: MSVC Latest
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.29.0"
- uses: lukka/run-vcpkg@v11
- uses: lukka/run-cmake@v10
with:
configurePreset: "cml-ci-ninja-msvc-mt-s"
buildPreset: "cml-ci-ninja-msvc-mt-s-release"
testPreset: "cml-ci-ninja-msvc-mt-s-release-test"
Loading