extern void registerCPUBackendCreator();#ifdef ENABLE_ARMV82#if defined(__aarch64__) && defined(__APPLE__)extern void registerArm82BackendCreator();#endif#endif#ifdef MNN_CODEGEN_REGISTERextern void registerMetalBackendCreator();#endifvoid registerBackend() {static std::once_flag s_flag;std::call_once(s_flag, [&]() {registerCPUBackendCreator();#ifdef ENABLE_ARMV82#if defined(__aarch64__) && defined(__APPLE__)registerArm82BackendCreator();#endif#endif#ifdef MNN_CODEGEN_REGISTERregisterMetalBackendCreator();#endif});}
根据宏定义确定注册BackendCreator的种类
