forked from dusty-nv/jetson-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
44 lines (33 loc) · 1.17 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#---
# name: awq
# group: llm
# config: config.py
# depends: [transformers]
# requires: '>=34.1.0'
# test: test.sh
# docs: docs.md
#---
ARG BASE_IMAGE
FROM ${BASE_IMAGE}
ARG TORCH_CUDA_ARCH_LIST
ARG AWQ_REPO=mit-han-lab/llm-awq
ARG AWQ_BRANCH=main
WORKDIR /opt
# force rebuild on new git commits - https://stackoverflow.com/a/56945508
ADD https://api.github.com/repos/${AWQ_REPO}/git/refs/heads/${AWQ_BRANCH} /tmp/awq_version.json
RUN git clone --branch=${AWQ_BRANCH} --depth=1 https://github.com/${AWQ_REPO} awq
# enable giving huggingface model names (as opposed to paths only)
#RUN sed 's|^ if not os.path.exists(model_path)|# if not os.path.exists(model_path)|g' -i awq/awq/entry.py && \
# sed 's|^ raise FileNotFoundError(|# raise FileNotFoundError(|g' -i awq/awq/entry.py && \
# cat awq/awq/entry.py
RUN cd awq && \
pip3 install --verbose . && \
cd awq/kernels && \
pip3 install --verbose .
COPY benchmark.py awq/
COPY quantize.py awq/
WORKDIR /
# No module named 'lm_eval.base'
RUN pip3 install --no-cache-dir --verbose 'lm-eval<=0.3.0'
# make sure it loads
RUN pip3 show awq && python3 -c 'import awq' && python3 -m awq.entry --help