Fix accuracy problem with generic kernels on x86_64
fixes #2257, which was caused by #2051.
This commit is contained in:
parent
2a1911cc14
commit
6acaa1ea2c
|
@ -24,9 +24,15 @@ ifeq ($(TARGET), LOONGSON3B)
|
||||||
USE_TRMM = 1
|
USE_TRMM = 1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(DYNAMIC_ARCH), 1)
|
||||||
ifeq ($(CORE), GENERIC)
|
ifeq ($(CORE), GENERIC)
|
||||||
USE_TRMM = 1
|
USE_TRMM = 1
|
||||||
endif
|
endif
|
||||||
|
else
|
||||||
|
ifeq ($(TARGET), GENERIC)
|
||||||
|
USE_TRMM = 1
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(CORE), HASWELL)
|
ifeq ($(CORE), HASWELL)
|
||||||
USE_TRMM = 1
|
USE_TRMM = 1
|
||||||
|
|
Loading…
Reference in New Issue