Unverified Commit a0fe6223 authored by Hang Zhang's avatar Hang Zhang Committed by GitHub
Browse files
parent abcee3c9
#!/usr/bin/env bash
rm -rf build/ dist/ torch_encoding.egg-info/ encoding/lib/ encoding/_ext/ __pycache__ encoding/__pycache__
# ninja log v5
1 1662 1531167904 encoding_cpu.o 6992bc0e0fec6bba
1 1662 1531167904 syncbn_cpu.o f23a0b2f19307f1b
0 2948 1531167905 operator.o 44f004abdc4bd
ninja_required_version = 1.3
cxx = c++
cflags = -DTORCH_EXTENSION_NAME=enclib_cpu -I/anaconda3/lib/python3.6/site-packages/torch/lib/include -I/anaconda3/lib/python3.6/site-packages/torch/lib/include/TH -I/anaconda3/lib/python3.6/site-packages/torch/lib/include/THC -I/anaconda3/include/python3.6m -fPIC -std=c++11
ldflags = -shared -undefined dynamic_lookup
rule compile
command = $cxx -MMD -MF $out.d $cflags -c $in -o $out
depfile = $out.d
deps = gcc
rule link
command = $cxx $ldflags $in -o $out
build operator.o: compile /Users/hzaws/git/PyTorch-Encoding-Layer-/encoding/lib/cpu/operator.cpp
build encoding_cpu.o: compile /Users/hzaws/git/PyTorch-Encoding-Layer-/encoding/lib/cpu/encoding_cpu.cpp
build syncbn_cpu.o: compile /Users/hzaws/git/PyTorch-Encoding-Layer-/encoding/lib/cpu/syncbn_cpu.cpp
build roi_align_cpu.o: compile /Users/hzaws/git/PyTorch-Encoding-Layer-/encoding/lib/cpu/roi_align_cpu.cpp
build nms_cpu.o: compile /Users/hzaws/git/PyTorch-Encoding-Layer-/encoding/lib/cpu/nms_cpu.cpp
build enclib_cpu.so: link operator.o encoding_cpu.o syncbn_cpu.o roi_align_cpu.o nms_cpu.o
default enclib_cpu.so
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