SJTMusicTeam / Muskits

An opensource music processing toolkit
Apache License 2.0
309 stars 44 forks source link

GPU exists but nvcc are not installed system-wide (usually only installed inside conda environments) and the installation script failed #93

Open frankxu2004 opened 2 years ago

frankxu2004 commented 2 years ago

In tools/Makefile

# Set if install binaries on CPU mode e.g. make CPU_ONLY=1
# If you don't have any GPUs, this value will be set automatically
ifeq ($(shell which nvcc),) # 'nvcc' not found
CPU_ONLY := 0
else
CPU_ONLY :=
endif