Exclude Cadence NNlib function xa_nn_norm3D_16 from build (#3352)

The function causes an internal compiler error on some hifi4 cores.
The function isn't currently used by any kernels.

BUG=478153404
This commit is contained in:
Shlomi Regev 2026-01-27 00:14:25 +00:00 committed by GitHub
parent 7ff5cb833b
commit d4e767053b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -116,7 +116,8 @@ else ifeq ($(TARGET_ARCH), $(filter $(TARGET_ARCH), hifi3 hifi4))
ifeq ($(TARGET_ARCH), hifi4)
EXCLUDED_NNLIB_SRCS += \
$(NNLIB_PATH)/algo/kernels/activations/hifi4/xa_nn_activations_asym8_asym8.c
$(NNLIB_PATH)/algo/kernels/activations/hifi4/xa_nn_activations_asym8_asym8.c \
$(NNLIB_PATH)/algo/kernels/norm/hifi4/xa_nn_norm3D_16.c
endif
THIRD_PARTY_KERNEL_CC_SRCS := $(filter-out $(EXCLUDED_NNLIB_SRCS), $(THIRD_PARTY_KERNEL_CC_SRCS))