mirror of
https://github.com/opencv/opencv.git
synced 2024-11-30 22:40:17 +08:00
Merge pull request #25069 from asmorkalov:as/disable_win_arm64_fp16
Disable fp16 instructions detection on Windows ARM64 because of build issues
This commit is contained in:
commit
8f83540018
@ -11,7 +11,8 @@ int test()
|
|||||||
_mm_storel_epi64((__m128i*)dst, v_dst);
|
_mm_storel_epi64((__m128i*)dst, v_dst);
|
||||||
return (int)dst[0];
|
return (int)dst[0];
|
||||||
}
|
}
|
||||||
#elif (defined __GNUC__ && (defined __arm__ || defined __aarch64__)) || (defined _MSC_VER && defined _M_ARM64)
|
#elif (defined __GNUC__ && (defined __arm__ || defined __aarch64__)) /*|| (defined _MSC_VER && defined _M_ARM64)*/
|
||||||
|
// Windows + ARM64 case disabled: https://github.com/opencv/opencv/issues/25052
|
||||||
#include "arm_neon.h"
|
#include "arm_neon.h"
|
||||||
int test()
|
int test()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user