Browse Source

Merge pull request #3589 from e4t/Exclude_paramter.c_symbols_with_DYNAMIC_ARCH

Do not include symbols defined in driver/others/parameter.c in DYNAMI…
tags/v0.3.21
Martin Kroeker GitHub 3 years ago
parent
commit
1d4e703f50
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      common_macro.h

+ 3
- 2
common_macro.h View File

@@ -2610,8 +2610,9 @@
#endif

#ifndef ASSEMBLER
#if defined(ARCH_X86) || defined(ARCH_X86_64) || defined(ARCH_IA64) || defined(ARCH_MIPS64) || defined(ARCH_ARM64)\
|| defined(ARCH_LOONGARCH64) || defined(ARCH_E2K)
#if !defined(DYNAMIC_ARCH) \
&& (defined(ARCH_X86) || defined(ARCH_X86_64) || defined(ARCH_IA64) || defined(ARCH_MIPS64) || defined(ARCH_ARM64) \
|| defined(ARCH_LOONGARCH64) || defined(ARCH_E2K))
extern BLASLONG gemm_offset_a;
extern BLASLONG gemm_offset_b;
extern BLASLONG sbgemm_p;


Loading…
Cancel
Save