Files
rocm-systems/ext-tuner/example/Makefile
T

18 líneas
416 B
Makefile
Original Vista normal Histórico

2023-09-26 05:47:28 -07:00
#
# Copyright (c) 2015-2019, NVIDIA CORPORATION. All rights reserved.
#
# See LICENSE.txt for license information
#
RCCL_HOME:=../../build/release
HIP_HOME:=/opt/rocm
INC:= -I$(RCCL_HOME)/include/ -I$(HIP_HOME)/include/ -D__HIP_PLATFORM_AMD__ -Inccl
2023-09-26 05:47:28 -07:00
PLUGIN_SO:=libnccl-tuner.so
default: $(PLUGIN_SO)
$(PLUGIN_SO): plugin.c
$(CC) $(INC) -fPIC -shared -o $@ -Wl,-soname,$(PLUGIN_SO) $^
clean:
rm -f $(PLUGIN_SO)