Lines Matching +refs:clang +refs:completion +refs:mode

38   - [Code completion and IDE support](#code-completion-and-ide-support)
53 - [Running clang-tidy](#running-clang-tidy)
118 Next run `python setup.py clean`. After that, you can install in `develop` mode again.
121 …1. Run `printf '#include <stdio.h>\nint main() { printf("Hello World");}'|clang -x c -; ./a.out` t…
249 …* [autograd](torch/csrc/autograd) - Implementation of reverse-mode automatic differentiation. [REA…
645 for C++ code it may be necessary to compile PyTorch in debug mode by prepending
650 `py-spy` can also work in an `htop`-like "live profiling" mode and can be
716 ### Code completion and IDE support
720 to provide command completion and error highlighting for PyTorch's
1135 ## Running clang-tidy
1137 [Clang-Tidy](https://clang.llvm.org/extra/clang-tidy/index.html) is a C++
1138 linter and static analysis tool based on the clang compiler. We run clang-tidy
1140 [`clang-tidy` job in our GitHub Workflow's
1144 To run clang-tidy locally, follow these steps:
1146 1. Install clang-tidy.
1153 2. Install clang-tidy driver script dependencies
1158 3. Run clang-tidy
1160 # Run clang-tidy on the entire codebase
1161 make clang-tidy
1162 # Run clang-tidy only on your changes
1163 make clang-tidy CHANGED_ONLY=--changed-only
1165 This internally invokes our driver script and closely mimics how clang-tidy is run on CI.
1169 We use clang-tidy to perform additional
1207 LIBASAN_RT="$LLVM_ROOT/lib/clang/8.0.0/lib/linux/libclang_rt.asan-x86_64.so"
1211 CC="$LLVM_ROOT/bin/clang" \
1212 CXX="$LLVM_ROOT/bin/clang++" \
1213 LDSHARED="clang --shared" \
1241 The scripts above specify the `clang` and `clang++` binaries directly, which
1244 1. Make sure the ccache symlinks for `clang` and `clang++` are set up (see
1248 directly to `clang` and `clang++`.