Spaces:
Runtime error
Runtime error
File size: 312 Bytes
f670afc |
1 2 3 4 5 6 7 8 9 10 11 12 |
# Copyright (C) 2021 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# This work is made available under the Nvidia Source Code License-NC.
# To view a copy of this license, check out LICENSE.md
all:
python setup.py build_ext --inplace
python setup.py install
clean:
rm -rf *.o *.a *.so test build
|