feat(agent): Multi agents v0.1 (#1044)

Co-authored-by: qidanrui <qidanrui@gmail.com>
Co-authored-by: csunny <cfqsunny@163.com>
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com>
This commit is contained in:
明天
2024-01-09 11:09:52 +08:00
committed by GitHub
parent 409556d31d
commit e11b72c724
41 changed files with 1441 additions and 397 deletions

View File

@@ -52,7 +52,7 @@ def compress_module(module, target_device):
def compress(tensor, config):
"""Simulate group-wise quantization."""
"""Simulate team-wise quantization."""
if not config.enabled:
return tensor
@@ -105,7 +105,7 @@ def compress(tensor, config):
def decompress(packed_data, config):
"""Simulate group-wise dequantization."""
"""Simulate team-wise dequantization."""
if not config.enabled:
return packed_data