1994
1994
## web-client arthas web 客户端,使用目前主流的前端技术栈编写。 主要使用的技术栈如下: 1. [React](https://reactjs.org/) 2. [Typescript](https://www.typescriptlang.org/) 3. [tailwind css](https://tailwindcss.com/) ### 工程介绍 - frontend 目录下是前端工程所在的目录。可供本地进行单独的前端测试。使用方法详见frontend下的README。 pom.xml中使用了一系列的plugin,最终会将前端资源编译到`target/templates`目录下 ### 解决的问题 1. 工程化管理 相较于之前的形式,多了依赖管理和编译检查,能够有效提升代码可维护性。同时Typescript对于对有Java背景的使用者来说上手很快。 2. 提升代码可复用性 使用React,Typescript可以将页面和逻辑代码模块化,从而提升代码的可复用性。比如tunnel-server和core中页面的代码,可以有效得进行合并。 ### 效果预览 1.首先在web-client模块下执行`mvn...
Performance Bottleneck: Single-threaded Image resize in qwen-vl-utils leads to low GPU utilization
## Summary When using Qwen2-VL models with high-throughput inference engines like vLLM, the image preprocessing step, specifically the resize operation, becomes a significant bottleneck. The root cause is that qwen-vl-utils...