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

[fp16] Update to 2024-06-20 #247

Merged
merged 2 commits into from
Sep 2, 2024
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
6 changes: 3 additions & 3 deletions ports/fp16/portfile.cmake
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Maratyszcza/fp16
REF 581ac1c79dd9d9f6f4e8b2934e7a55c7becf0799
SHA512 a7898d9fe4ae183562c87b3e61865b1166dd45ab342f6874a42ec8123f8cf41c0074df0bce7696d378c364ff5f363d33942f12c63d804efacb7423b64f3c10f4
REF 98b0a46bce017382a6351a19577ec43a715b6835
SHA512 d3ae46b5b0c944f1d8dcfbb90689266f4abaff3e0b5ef338d5d79193367f06d1bfbb9ad85a5a7685a894daeee6dc73fc5d73631718be1379cc6918655a0289aa
)

file(INSTALL "${SOURCE_PATH}/include/fp16.h"
DESTINATION "${CURRENT_PACKAGES_DIR}/include"
)
file(INSTALL "${SOURCE_PATH}/include/fp16/fp16.h"
"${SOURCE_PATH}/include/fp16/bitcasts.h"
"${SOURCE_PATH}/include/fp16/psimd.h"
"${SOURCE_PATH}/include/fp16/macros.h"
DESTINATION "${CURRENT_PACKAGES_DIR}/include/fp16"
)
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
Expand Down
2 changes: 1 addition & 1 deletion ports/fp16/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fp16",
"version-date": "2024-04-11",
"version-date": "2024-06-20",
"description": "Header-only library for conversion to/from half-precision floating point formats",
"homepage": "https://github.com/Maratyszcza/FP16",
"dependencies": [
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"port-version": 3
},
"fp16": {
"baseline": "2024-04-11",
"baseline": "2024-06-20",
"port-version": 0
},
"gemmlowp": {
Expand Down
5 changes: 5 additions & 0 deletions versions/f-/fp16.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "fd0050bd793e71eefcd48eeeb1c878d62bc1bf49",
"version-date": "2024-06-20",
"port-version": 0
},
{
"git-tree": "b92ec719d5b81f3b053a82b9350c9e5d1a2b7fa9",
"version-date": "2024-04-11",
Expand Down
Loading