Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
name: Linux
steps:
- name: Checkout repository
uses: actions/checkout@v2.5.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: 10

Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
config: [Debug, Release]
steps:
- name: Checkout repository
uses: actions/checkout@v2.5.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: 10

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4.0.0
with:
fetch-depth: 10

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
name: macOS

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.0.0

- name: Build wheels
uses: pypa/cibuildwheel@v2.12.1
Expand All @@ -57,7 +57,7 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.0.0

- name: Build sdist
run: pipx run build --sdist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
name: macOS
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4.0.0
with:
fetch-depth: 10

Expand Down
18 changes: 7 additions & 11 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -188,18 +188,14 @@ target_link_libraries(ipc_toolkit PRIVATE ipc::toolkit::warnings)

## SIMD support
if(IPC_TOOLKIT_WITH_SIMD)
# Figure out SSE level support
message(STATUS "Seaching for SSE...")
find_package(SSE)
# Figure out AVX level support
message(STATUS "Searching for AVX...")
find_package(AVX)
# Figure out FMA level support
message(STATUS "Searching for FMA...")
find_package(FMA)
# Add SSE, AVX, and FMA flags to compiler flags
string(REPLACE " " ";" SIMD_FLAGS "${SSE_FLAGS} ${AVX_FLAGS} ${FMA_FLAGS}")
# Figure out SIMD support
message(STATUS "Testing SIMD capabilities...")
find_package(SIMD)
# Add SIMD flags to compiler flags
message(STATUS "Using SIMD flags: ${SIMD_FLAGS}")
target_compile_options(ipc_toolkit PRIVATE ${SIMD_FLAGS})
else()
message(STATUS "SIMD support disabled")
endif()

# Use C++17
Expand Down
163 changes: 0 additions & 163 deletions cmake/find/FindAVX.cmake

This file was deleted.

107 changes: 0 additions & 107 deletions cmake/find/FindFMA.cmake

This file was deleted.

Loading