21 lines
No EOL
630 B
YAML
21 lines
No EOL
630 B
YAML
repo_id:
|
|
- 'meta-llama/Llama-2-7b-chat-hf'
|
|
- 'THUDM/chatglm2-6b'
|
|
- 'THUDM/chatglm3-6b'
|
|
- 'baichuan-inc/Baichuan2-7B-Chat'
|
|
- 'Qwen/Qwen-7B-Chat'
|
|
local_model_hub: '/mnt/disk1/models'
|
|
warm_up: 10
|
|
num_trials: 100
|
|
num_beams: 1 # default to greedy search
|
|
low_bit: 'fp8' # default to use 'sym_int4' (i.e. symmetric int4)
|
|
batch_size: 1 # default to 1
|
|
in_out_pairs:
|
|
- '1024-512'
|
|
- '2048-512'
|
|
test_api:
|
|
- "transformer_int4_gpu" # on Intel GPU
|
|
cpu_embedding: False # whether put embedding to CPU (only avaiable now for gpu win related test_api)
|
|
exclude:
|
|
- 'baichuan-inc/Baichuan2-7B-Chat:2048'
|
|
- 'Qwen/Qwen-7B-Chat:2048' |