xingray

Results 4 issues of xingray

face.eyeIrisLeft face.eyeIrisRight 在arm64位手机上是正常的, 但是在32位的armeabi上会出现明显的偏移,绘制瞳孔范围基本超出眼眶 arm64 ![arm64](https://github.com/OAID/TengineKit/assets/7721949/4db8d580-8f56-4617-b174-02da0708f9a3) armeabi ![armeabi](https://github.com/OAID/TengineKit/assets/7721949/e5271839-4e62-4715-822a-0846c2d60ae9) 源码和检测的人脸图片素材完全一致, 仅仅是编译选项不同

## error log | 日志或报错信息 | ログ ## context | 编译/运行环境 | バックグラウンド windows11 ## how to reproduce | 复现步骤 | 再現方法 使用cpu进行推理时, 结果是正常的, 但是使用gpu推理时,返回的结果是错误的, 我将运行时的所有的blob输出, 结果发现经过第一个卷积层后输出就不一样了 ## more |...

运行报错: TypeError: 'NoneType' object is not subscriptable 运行环境: os: windows11 python: 3.11.9 PyTorch版本: 2.9.0+cu128 CUDA版本: 12.8 Total timesteps: tensor([999.7998, 937.5000, 833.3333, 625.0000], device='cuda:0') Using timesteps: tensor([999.7998, 937.5000, 833.3333, 625.0000], device='cuda:0')...

## detail | 详细描述 | 詳細な説明 我正在开发一个在windos上和android端都能运行的demo, 需要通过ncnn运行模型,识别关键点并输出点位和输入图像一起显示在屏幕上 在android上可以直接使用ncnnn创建的vkInstance创建swapchian显示图像, 但是在windows下无法创建swapchain, 原因时 windows下创建swapchian需要在创建 vkInstance 时添加 glfw 的 extension,但是目前没有找到可以添加 extension 的方法 我查看了源码 src/gpu.cpp std::vector enabledExtensions; ... if (support_VK_KHR_external_memory_capabilities) enabledExtensions.push_back("VK_KHR_external_memory_capabilities"); if (support_VK_KHR_get_physical_device_properties2) enabledExtensions.push_back("VK_KHR_get_physical_device_properties2");...