Skip to content

Commit

Permalink
Merge pull request #228 from hvdijk/non-fatal-half
Browse files Browse the repository at this point in the history
Downgrade half-precision being unsupported to a warning.
  • Loading branch information
hvdijk authored Nov 22, 2023
2 parents dc79f31 + cfbc4e1 commit b432ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/mux/targets/host/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ set(fp16_supported_arches ARM64;ARM)
if(CA_HOST_ENABLE_FP16)
set(arch ${CMAKE_SYSTEM_PROCESSOR})
if(NOT ${arch} IN_LIST fp16_supported_arches)
message(FATAL_ERROR "half-precision is not supported on ${arch} targets")
message(WARNING "half-precision is not supported on ${arch} targets")
endif()
endif()

Expand Down

0 comments on commit b432ed7

Please sign in to comment.