- Install Ninja
sudo apt install ninja-build
- Configure CMake to create Ninja build files
mkdir build && cd build
# Build BlazingSQL + RAPIDS on Summit | |
# Jens Glaser <[email protected]> July 28 2020 | |
# wherever bif128 occurs below, this refers to the project ID | |
# replace with yours, e.g. abc123 | |
# est. "pure compile time" 3-4h | |
$ module list |
Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
ActivityTweet | |
generic_activity_highlights | |
generic_activity_momentsbreaking | |
RankedOrganicTweet | |
suggest_activity | |
suggest_activity_feed | |
suggest_activity_highlights | |
suggest_activity_tweet |
"""Crude Sphinx extension for inline documentation. | |
© 2019 Paul Natsuo Kishimoto <[email protected]> | |
Licensed under the GNU GPLv3: https://www.gnu.org/licenses/gpl-3.0.html | |
Star: https://gist.github.com/khaeru/3185679f4dd83b16a0648f6036fb000e | |
Enable by adding to conf.py:: | |
sys.path.append('path/to/this/file') | |
extensions.append('inline') |
// This is how we run libc++ tests on the GPU without modification. | |
// We force include this header into each test with `-include`. | |
__host__ __device__ | |
int fake_main(int, char**); | |
__global__ | |
void fake_main_kernel(int * ret) | |
{ | |
*ret = fake_main(0, NULL); |
Cling is a C++ interpreter developed at CERN as part of the ROOT project:
mkdir keys; ssh-keygen -f id_rsa
language: cpp | |
install: | |
- which xcrun | |
script: | |
- xcrun --help | |
- xcrun --show-sdk-path || true | |
- xcrun --show-sdk-version || true |