mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
fb0a4c5d9a
* Dockerfile changes to build for ROCm * Adjust linker flags for ROCm * Update conda env for diffusers and transformers to use ROCm pytorch * Update transformers conda env for ROCm * ci: build hipblas images * fixup rebase * use self-hosted Signed-off-by: mudler <mudler@localai.io> * specify LD_LIBRARY_PATH only when BUILD_TYPE=hipblas --------- Signed-off-by: mudler <mudler@localai.io> Co-authored-by: mudler <mudler@localai.io>
20 lines
334 B
Makefile
20 lines
334 B
Makefile
export CONDA_ENV_PATH = "diffusers.yml"
|
|
|
|
ifeq ($(BUILD_TYPE), hipblas)
|
|
export CONDA_ENV_PATH = "diffusers-rocm.yml"
|
|
endif
|
|
|
|
.PHONY: diffusers
|
|
diffusers:
|
|
@echo "Installing $(CONDA_ENV_PATH)..."
|
|
bash install.sh $(CONDA_ENV_PATH)
|
|
|
|
.PHONY: run
|
|
run:
|
|
@echo "Running diffusers..."
|
|
bash run.sh
|
|
@echo "Diffusers run."
|
|
|
|
test:
|
|
bash test.sh
|