InternLM / lmdeploy

LMDeploy is a toolkit for compressing, deploying, and serving LLMs.
https://lmdeploy.readthedocs.io/en/latest/
Apache License 2.0
4.33k stars 390 forks source link

misc: rm unnecessary files #1875

Closed zhyncs closed 3 months ago

zhyncs commented 3 months ago

Motivation

LMDeploy TurboMind reused some components of FasterTransformer in its initial version last year. With the iteration of TurboMind, except for sampling, other parts have been basically rewritten. Currently, there are still some unused files introduced in the first version under the src directory, and deleting them will not have any impact. During the meeting with @lzhangzz on Tuesday, this point was mentioned, and I casually fixed the issue. Hi @lzhangzz @irexyc @lvhan028 May you help review this pr? Thanks.

Modification

as titled

Checklist

  1. Pre-commit or other linting tools are used to fix the potential lint issues.
  2. The modification is covered by complete unit tests. If not, please add more unit tests to ensure the correctness.
  3. If the modification has a dependency on downstream projects of a newer version, this PR should be tested with all supported versions of downstream projects.
  4. The documentation has been modified accordingly, like docstring or example tutorials.