progmboy

Results 5 comments of progmboy

> Is it really helpful and necessary? As I see it, Clue is like C code and Lua machine code, you need the comments in the original code (so inside...

Try patch blade-graphics https://github.com/kvark/blade/blob/e35b2d41f221a48b75f7cf2e78a81e7ecb7a383c/blade-graphics/src/vulkan/mod.rs#L340C1-L343C64 from ```rust let descriptor_pool_info = vk::DescriptorPoolCreateInfo::default() .max_sets(ROUGH_SET_COUNT) .pool_sizes(&descriptor_sizes) .push_next(&mut inline_uniform_block_info); ``` to ```rust let descriptor_pool_info = vk::DescriptorPoolCreateInfo::default() .max_sets(ROUGH_SET_COUNT) .flags(vk::DescriptorPoolCreateFlags::FREE_DESCRIPTOR_SET) .pool_sizes(&descriptor_sizes) .push_next(&mut inline_uniform_block_info); ``` This panic disappeared....

After a few days of using clue a lot in the project, I feel that this feature is useless if we implement our own language server and debug server. Our...

局域网本地nas docker运行lobechat 且开启了https, 然后访问另外一台机器部署的非https的ollama检测失败 . ![image](https://github.com/lobehub/lobe-chat/assets/9927043/bbf9f61d-8ae1-4c11-8fe2-2a3ee126923b) 另外关闭“使用客户端请求模式”,虽然检测失败,但是是可以正常使用的。

After several hours of debugging, I can confirm that this issue only occurs with Intel's drivers. ``` filename: igvk64.dll fileversion: 31.0.101.4502 filedescription: Vulkan(R) Driver for Intel(R) Graphics Accelerator ``` ```c...