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

17 строки
392 B
Makefile
Исходник Обычный вид История

2024-09-10 05:57:10 -07:00
#
# Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved.
#
# See LICENSE.txt for license information
#
NCCL_HOME := ../../build
INC := -I$(NCCL_HOME)/include -I$(CUDA_HOME)/include -Inccl
PLUGIN_SO := libnccl-profiler.so
default: $(PLUGIN_SO)
$(PLUGIN_SO): plugin.c event.c print_event.c
2025-04-09 09:02:40 -07:00
$(CXX) $(INC) -g -fPIC -shared -o $@ -Wl,-soname,$(PLUGIN_SO) $^
2024-09-10 05:57:10 -07:00
clean:
rm -f $(PLUGIN_SO)