Unverified Commit 5c54ef03 authored by HAI's avatar HAI Committed by GitHub
Browse files

AMD/ROCm: update AITER repo to ROCm/aiter (#3747)

parent c6a48521
...@@ -17,8 +17,8 @@ ARG TRITON_REPO="https://github.com/ROCm/triton.git" ...@@ -17,8 +17,8 @@ ARG TRITON_REPO="https://github.com/ROCm/triton.git"
ARG TRITON_COMMIT="improve_fa_decode_3.0.0" ARG TRITON_COMMIT="improve_fa_decode_3.0.0"
ARG ATER_REPO="https://github.com/HaiShaw/ater" ARG AITER_REPO="https://github.com/ROCm/aiter.git"
ARG CK_COMMITS="fa05ae" ARG AITER_COMMIT="dev/testx"
RUN git clone ${SGL_REPO} \ RUN git clone ${SGL_REPO} \
&& cd sglang \ && cd sglang \
...@@ -53,8 +53,9 @@ RUN git clone ${TRITON_REPO} \ ...@@ -53,8 +53,9 @@ RUN git clone ${TRITON_REPO} \
&& cd python \ && cd python \
&& python3 setup.py install && python3 setup.py install
RUN git clone ${ATER_REPO} \ RUN git clone ${AITER_REPO} \
&& cd ater \ && cd aiter \
&& git checkout ${AITER_COMMIT} \
&& git submodule update --init --recursive \ && git submodule update --init --recursive \
&& PREBUILD_KERNELS=1 GPU_ARCHS=gfx942 python3 setup.py develop && PREBUILD_KERNELS=1 GPU_ARCHS=gfx942 python3 setup.py develop
......
...@@ -167,8 +167,8 @@ class UnquantizedFusedMoEMethod(FusedMoEMethodBase, CustomOp): ...@@ -167,8 +167,8 @@ class UnquantizedFusedMoEMethod(FusedMoEMethodBase, CustomOp):
) )
if is_hip_ and get_bool_env_var("CK_MOE"): if is_hip_ and get_bool_env_var("CK_MOE"):
import ater import aiter
from ater.fused_moe import fused_experts_ck from aiter.fused_moe import fused_experts_ck
assert activation == "silu", f"{activation=} is not supported." assert activation == "silu", f"{activation=} is not supported."
......
...@@ -789,8 +789,8 @@ class Fp8MoEMethod: ...@@ -789,8 +789,8 @@ class Fp8MoEMethod:
) )
if is_hip_ and get_bool_env_var("CK_MOE"): if is_hip_ and get_bool_env_var("CK_MOE"):
import ater import aiter
from ater.fused_moe import fused_experts_ck from aiter.fused_moe import fused_experts_ck
assert activation == "silu", f"{activation=} is not supported." assert activation == "silu", f"{activation=} is not supported."
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment