WIP create child in getOrCreateChild

This commit is contained in:
2024-08-12 16:11:16 -07:00
parent 8a44055533
commit 567d385fbd
2 changed files with 43 additions and 17 deletions

View File

@@ -11,6 +11,14 @@
#include <arm_neon.h>
#endif
#ifndef __SANITIZE_THREAD__
#if defined(__has_feature)
#if __has_feature(thread_sanitizer)
#define __SANITIZE_THREAD__
#endif
#endif
#endif
#if defined(HAS_AVX) || defined(HAS_ARM_NEON)
constexpr int kStride = 64;
#else