repo_id
stringlengths
21
96
file_path
stringlengths
31
155
content
stringlengths
1
92.9M
__index_level_0__
int64
0
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/cmake/config.json
{ "parse": { "additional_commands": { "CPMFindPackage": { "kwargs": { "NAME": 1, "GITHUB_REPOSITORY": "?", "GIT_TAG": "?", "VERSION": "?", "GIT_SHALLOW": "?", "OPTIONS": "*", "FIND_PACKAGE_ARGUMENTS": "*" } }, ...
0
rapidsai_public_repos/rmm/cmake
rapidsai_public_repos/rmm/cmake/thirdparty/get_thrust.cmake
# ============================================================================= # Copyright (c) 2021, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at # # http://www.apache.o...
0
rapidsai_public_repos/rmm/cmake
rapidsai_public_repos/rmm/cmake/thirdparty/get_spdlog.cmake
# ============================================================================= # Copyright (c) 2021-2023, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at # # http://www.apa...
0
rapidsai_public_repos/rmm/cmake
rapidsai_public_repos/rmm/cmake/thirdparty/get_libcudacxx.cmake
# ============================================================================= # Copyright (c) 2023, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at # # http://www.apache.o...
0
rapidsai_public_repos/rmm/cmake
rapidsai_public_repos/rmm/cmake/thirdparty/get_gtest.cmake
# ============================================================================= # Copyright (c) 2021, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at # # http://www.apache.o...
0
rapidsai_public_repos/rmm/cmake
rapidsai_public_repos/rmm/cmake/thirdparty/get_fmt.cmake
# ============================================================================= # Copyright (c) 2023, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at # # http://www.apache.o...
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/test_python.sh
#!/bin/bash # Copyright (c) 2020-2023, NVIDIA CORPORATION. set -euo pipefail rapids-logger "Create test conda environment" . /opt/conda/etc/profile.d/conda.sh rapids-dependency-file-generator \ --output conda \ --file_key test_python \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION...
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/test_cpp.sh
#!/bin/bash # Copyright (c) 2020-2023, NVIDIA CORPORATION. set -euo pipefail . /opt/conda/etc/profile.d/conda.sh rapids-logger "Generate C++ testing dependencies" rapids-dependency-file-generator \ --output conda \ --file_key test_cpp \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch)" | tee env.yaml rap...
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/build_python.sh
#!/bin/bash # Copyright (c) 2020-2023, NVIDIA CORPORATION. set -euo pipefail source rapids-env-update export CMAKE_GENERATOR=Ninja rapids-print-env package_name="rmm" package_dir="python" version=$(rapids-generate-version) commit=$(git rev-parse HEAD) echo "${version}" > VERSION sed -i "/^__git_commit__/ s/= .*/...
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/build_wheel.sh
#!/bin/bash # Copyright (c) 2023, NVIDIA CORPORATION. set -euo pipefail package_name="rmm" package_dir="python" source rapids-configure-sccache source rapids-date-string version=$(rapids-generate-version) commit=$(git rev-parse HEAD) RAPIDS_PY_CUDA_SUFFIX="$(rapids-wheel-ctk-name-gen ${RAPIDS_CUDA_VERSION})" # Th...
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/check_style.sh
#!/bin/bash # Copyright (c) 2020-2023, NVIDIA CORPORATION. set -euo pipefail rapids-logger "Create checks conda environment" . /opt/conda/etc/profile.d/conda.sh rapids-dependency-file-generator \ --output conda \ --file_key checks \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}"...
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/test_wheel.sh
#!/bin/bash # Copyright (c) 2023, NVIDIA CORPORATION. set -eou pipefail RAPIDS_PY_CUDA_SUFFIX="$(rapids-wheel-ctk-name-gen ${RAPIDS_CUDA_VERSION})" RAPIDS_PY_WHEEL_NAME="rmm_${RAPIDS_PY_CUDA_SUFFIX}" rapids-download-wheels-from-s3 ./dist # echo to expand wildcard before adding `[extra]` requires for pip python -m pi...
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/wheel_smoke_test.py
import rmm if __name__ == "__main__": buf = rmm.DeviceBuffer(size=100) assert buf.size == 100
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/build_cpp.sh
#!/bin/bash # Copyright (c) 2020-2023, NVIDIA CORPORATION. set -euo pipefail source rapids-env-update export CMAKE_GENERATOR=Ninja rapids-print-env version=$(rapids-generate-version) rapids-logger "Begin cpp build" # This calls mambabuild when boa is installed (as is the case in the CI images) RAPIDS_PACKAGE_VER...
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/build_docs.sh
#!/bin/bash # Copyright (c) 2020-2023, NVIDIA CORPORATION. set -euo pipefail rapids-logger "Create test conda environment" . /opt/conda/etc/profile.d/conda.sh rapids-dependency-file-generator \ --output conda \ --file_key docs \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | t...
0
rapidsai_public_repos/rmm/ci
rapidsai_public_repos/rmm/ci/release/update-version.sh
#!/bin/bash ######################## # RMM Version Updater # ######################## ## Usage # bash update-version.sh <new_version> # Format is YY.MM.PP - no leading 'v' or trailing 'a' NEXT_FULL_TAG=$1 # Get current version CURRENT_TAG=$(git tag --merged HEAD | grep -xE '^v.*' | sort --version-sort | tail -n 1 |...
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/doxygen/main_page.md
# librmm Achieving optimal performance in GPU-centric workflows frequently requires customizing how host and device memory are allocated. For example, using "pinned" host memory for asynchronous host <-> device memory transfers, or using a device memory pool sub-allocator to reduce the cost of dynamic device memory al...
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/doxygen/Doxyfile
# Doxyfile 1.9.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a double hash (##) is considered a comment and is placed in # front of the TAG it is preceding. # # All text after a single hash (#) is considered a comment and will ...
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/doxygen/header.html
<!-- HTML header for doxygen 1.8.20--> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" con...
0
rapidsai_public_repos
rapidsai_public_repos/GaaS/README.md
# <center>ARCHIVED</center> This repo is no longer under development or support. All issues/PRs will be ignored The GaaS code has been merged into the main cuGraph monorepo and is now called cugraph-service Please use https://github.com/rapidsai/cugraph to submit issues and retrieve the latest sources. # <center>...
0
rapidsai_public_repos
rapidsai_public_repos/GaaS/CHANGELOG.md
# GaaS 22.08.00 (Date TBD)
0
rapidsai_public_repos
rapidsai_public_repos/GaaS/LICENSE
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, ...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_client/gaas_thrift.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_client/types.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_client/exceptions.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_client/__init__.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_client/defaults.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_client/client.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/client1_script.py
import random import time from pathlib import Path from gaas_client import GaasClient _data_dir = (Path(__file__).parent)/"data" edgelist_csv_data = { "karate": {"csv_file_name": (_data_dir/"karate.csv").absolute().as_posix(), "dtypes": ["int32", "int32", "float32"], ...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/data.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/client2_script.py
import time import random from gaas_client import GaasClient client = GaasClient() time.sleep(10) n = int(random.random() * 1000) #print(f"---> starting {n}", flush=True) for i in range(1000000): extracted_gid = client.extract_subgraph(allow_multi_edges=False) #client.delete_graph(extracted_gid) #print...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/test_mg_gaas_handler.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/gen_demo_data.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/conftest.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/test_gaas_handler.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/demo1.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/multi_client_test_runner.sh
# source this script (ie. do not run it) for easier job control from the shell # FIXME: change this and/or GaaS so PYTHONPATH is not needed PYTHONPATH=/Projects/GaaS/python python client1_script.py & sleep 1 PYTHONPATH=/Projects/GaaS/python python client2_script.py & PYTHONPATH=/Projects/GaaS/python python client2_scri...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/test_e2e.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python/tests
rapidsai_public_repos/GaaS/python/tests/data/transactions.csv
"user_id" "merchant_id" "volume" "time" "card_num" "card_type" 89021 11 33.2 1639084966.5513437 123456 "MC" 89216 4 0 1639085163.481217 8832 "CASH" 78634 16 72.0 1639084912.567394 4321 "DEBIT" 32431 4 103.2 1639084721.354346 98124 "V"
0
rapidsai_public_repos/GaaS/python/tests
rapidsai_public_repos/GaaS/python/tests/data/referrals.csv
"user_id_1" "user_id_2" "merchant_id" "stars" 89216 78634 11 5 89021 89216 4 4 89021 89216 21 3 89021 89216 11 3 89021 78634 21 4 78634 32431 11 4 78634 89216 21 3 78634 89216 21 4
0
rapidsai_public_repos/GaaS/python/tests
rapidsai_public_repos/GaaS/python/tests/data/users.csv
"user_id" "user_location" "vertical" 89021 78757 0 32431 78750 1 89216 78757 1 78634 47906 0
0
rapidsai_public_repos/GaaS/python/tests
rapidsai_public_repos/GaaS/python/tests/data/merchants.csv
"merchant_id" "merchant_location" "merchant_size" "merchant_sales" "merchant_num_employees" "merchant_name" 11 78750 44 123.2 12 "north" 4 78757 112 234.99 18 "south" 21 44145 83 992.1 27 "east" 16 47906 92 32.43 5 "west" 86 47906 192 2.43 51 "west"
0
rapidsai_public_repos/GaaS/python/tests
rapidsai_public_repos/GaaS/python/tests/data/relationships.csv
"user_id_1" "user_id_2" "relationship_type" 89216 89021 9 89216 32431 9 32431 78634 8 78634 89216 8 78634 89216 9
0
rapidsai_public_repos/GaaS/python/tests
rapidsai_public_repos/GaaS/python/tests/data/karate.csv
1 0 1.0 2 0 1.0 3 0 1.0 4 0 1.0 5 0 1.0 6 0 1.0 7 0 1.0 8 0 1.0 10 0 1.0 11 0 1.0 12 0 1.0 13 0 1.0 17 0 1.0 19 0 1.0 21 0 1.0 31 0 1.0 2 1 1.0 3 1 1.0 7 1 1.0 13 1 1.0 17 1 1.0 19 1 1.0 21 1 1.0 30 1 1.0 3 2 1.0 7 2 1.0 8 2 1.0 9 2 1.0 13 2 1.0 27 2 1.0 28 2 1.0 32 2 1.0 7 3 1.0 12 3 1.0 13 3 1.0 6 4 1.0 10 4 1.0 6 5 ...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_server/server.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_server/gaas_handler.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/GaaS
rapidsai_public_repos/GaaS/scripts/default-config.sh
# Copyright (c) 2022, NVIDIA CORPORATION. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to i...
0
rapidsai_public_repos/GaaS
rapidsai_public_repos/GaaS/scripts/README.md
This directory contains various scripts helpful for GaaS users and developers. The following scripts were copied from https://github.com/rapidsai/multi-gpu-tools and are useful for starting a dask cluster, which is needed by GaaS for multi-GPU support. * `run-dask-process.sh` * `functions.sh` * `default-config.sh`
0
rapidsai_public_repos/GaaS
rapidsai_public_repos/GaaS/scripts/functions.sh
# Copyright (c) 2022, NVIDIA CORPORATION. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to i...
0
rapidsai_public_repos/GaaS
rapidsai_public_repos/GaaS/scripts/run-dask-process.sh
#!/bin/bash # Copyright (c) 2022, NVIDIA CORPORATION. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or...
0
rapidsai_public_repos/GaaS/docs
rapidsai_public_repos/GaaS/docs/gaas/README.md
# Building Documentation ...._coming soon_ ## Steps to follow: ...._coming soon_ ```bash # most be in the /docs/cugraph directory make html ``` This should run Sphinx in your shell, and outputs to `build/html/index.html` ## View docs web page by opening HTML in browser: First navigate to `/build/html/` folder,...
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/package.json
{ "devDependencies": { "autoprefixer":"^10.4.16", "postcss":"^8.4.31", "postcss-cli":"^10.1.0" } }
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/.nvmrc
20
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/README.md
# <div align="left"><img src="https://rapids.ai/assets/images/rapids_logo.png" width="90px"/> &nbsp; [RAPIDS.ai](https://rapids.ai.com) Website This repository contains the source code and content for the [RAPIDS.ai](https://rapids.ai) website. The site uses [Hugo](https://gohugo.io/) as a static site generator with ...
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/build.sh
#!/bin/bash set -euo pipefail HUGO_ENV=${HUGO_ENV:-staging} hugo --gc --minify "$@" cp _redirects public
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/go.sum
github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo= github.com/google/docsy v0.7.1 h1:DUriA7Nr3lJjNi9Ulev1SfiG1sUYmvyDeU4nTp7uDxY= github.com/google/docsy v0.7.1/go.mod h1:JCmE+c+izhE0Rvzv3y+AzHhz1KdwlA9Oj5YBMklJcfc= github.com/google/docsy/depen...
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/hugo.yaml
baseURL: https://rapids.ai/ languageCode: en-us title: RAPIDS | GPU Accelerated Data Science enableRobotsTXT: true services: googleAnalytics: ID: G-RKXFW6CM42 disableKinds: [taxonomy, term] sitemap: changefreq: monthly filename: sitemap.xml priority: 0.5 params: title: RAPIDS | GPU Accelerated Data Sc...
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/go.mod
module github.com/rapidsai/rapids.ai go 1.21.3 require ( github.com/google/docsy v0.7.1 // indirect github.com/google/docsy/dependencies v0.7.1 // indirect )
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/netlify.toml
[build] publish = "public" command = "./build.sh" [build.environment] GO_VERSION = "1.21.3" HUGO_VERSION = "0.119.0" HUGO_ENV = "production" HUGO_ENABLEGITINFO = "true" # Build drafts on PR previews [context.deploy-preview] command = "./build.sh --buildDrafts" # Setting HUGO_ENV != "production" prevents # Google A...
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/_redirects
/about /learn-more/#about /about.html /learn-more/#about /cloud https://docs.rapids.ai/deployment/stable/cloud/ /cloud.html https://docs.rapids.ai/deployment/stable/cloud/ /community /learn-more/#get-involved /community.html /learn-more/#get-invol...
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/package-lock.json
{ "name": "rapids.ai", "lockfileVersion": 3, "requires": true, "packages": { "": { "devDependencies": { "autoprefixer": "^10.4.16", "postcss": "^8.4.31", "postcss-cli": "^10.1.0" } }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved"...
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/archetypes/default.md
--- title: "{{ replace .Name "-" " " | title }}" date: {{ .Date }} draft: true ---
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/scripts/get_medium.py
import requests import xmltodict import yaml from html.parser import HTMLParser from pathlib import Path class SummaryParser(HTMLParser): """ Parses HTML content and stores all of the text from paragraph elements in "self.all_p_data". """ def __init__(self): HTMLParser.__init__(self) ...
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/scripts/devcontainer-init.sh
#!/bin/bash set -euo pipefail # Install Hugo version from `netlify.toml` file mkdir -p ~/.local/bin HUGO_VERSION=$(yq -oy '.build.environment.HUGO_VERSION' netlify.toml) wget "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz" -O - | \ tar -xzvf - -C ~...
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/scripts/requirements.txt
PyYAML>=6.0,<7 requests>=2.28.2,<3 xmltodict>=0.13.0,<0.14
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/.devcontainer/devcontainer.json
{ "name": "rapids-site", "image": "mcr.microsoft.com/devcontainers/base:ubuntu", "forwardPorts": [1313], "features": { "ghcr.io/devcontainers/features/go:1": {}, "ghcr.io/devcontainers/features/node:1": { "version": "none", "nodeGypDependencies": false }, "ghcr.io/eitsupi/devcontaine...
0
rapidsai_public_repos/rapids.ai/assets
rapidsai_public_repos/rapids.ai/assets/scss/_main-container.scss
/* This file is copied from the link below in order to comment out Docsy's default section padding. https://github.com/google/docsy/blob/v0.7.1/assets/scss/_main-container.scss */ // The outer page container i.e. common styles for any page. .td-outer { display: flex; flex-direction: column; min-height: 100vh; } ...
0
rapidsai_public_repos/rapids.ai/assets
rapidsai_public_repos/rapids.ai/assets/scss/README.md
# scss This directory contains SCSS files for the RAPIDS website. ## Special Files There are two special files in this directory, listed below and described in the Docsy documentation [here](https://www.docsy.dev/docs/adding-content/lookandfeel/): - `_variables_project.scss` - used for setting SCSS variables _befor...
0
rapidsai_public_repos/rapids.ai/assets
rapidsai_public_repos/rapids.ai/assets/scss/_variables_project.scss
/* This file works by: - Importing Docsy Bootstrap forward variables - Settings RAPIDS-specific Bootstrap variables - Importing Docsy Bootstrap main variables - Importing the necessary Bootstrap files to use their Utility API - Utility API: https://getbootstrap.com/docs/5.2/utilities/api/ */ @import "_vari...
0
rapidsai_public_repos/rapids.ai/assets
rapidsai_public_repos/rapids.ai/assets/scss/_styles_project.scss
@import "rapidsai/index"; @import "rapidsai/navigation";
0
rapidsai_public_repos/rapids.ai/assets/scss
rapidsai_public_repos/rapids.ai/assets/scss/rapidsai/_navigation.scss
.navigation { box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2); position: fixed; top: 0; left: 0; right: 0; z-index: $zindex-fixed; @extend .has-background-rapids-purple-primary; @include media-breakpoint-up(lg) { display: flex; } } .navigation__brand { min-height: 3.25rem; display: flex; align-...
0
rapidsai_public_repos/rapids.ai/assets/scss
rapidsai_public_repos/rapids.ai/assets/scss/rapidsai/_index.scss
/* ============================ Custom CSS for rapids.ai =========================== */ /* /// general /// */ body { font-display: fallback; font-family: 'Open Sans', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background-color: #fff; color: #212121; line-h...
0
rapidsai_public_repos/rapids.ai/data
rapidsai_public_repos/rapids.ai/data/posts/medium.yaml
# # This file was automatically generated by "get_medium.py" # - date: Tue, 24 Oct 2023 23:20:14 GMT link: https://medium.com/rapids-ai/intro-to-graph-analysis-using-cugraph-similarity-algorithms-64fa923791ac poster: Don Acosta text: This is the second chapter in our blog series on GPU-accelerated graph analysis ...
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/static/manifest.json
{ "name": "RAPIDS GPU accelerated data science", "short_name": "RAPIDS", "theme_color": "#fff", "background_color": "#fff", "display": "browser", "orientation": "portrait", "scope": "/", "start_url": "/https://rapids.ai/", "icons": [ { "src": "images/icons/icon-72x72.png", "sizes": "72...
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/static/site.webmanifest
{ "short_name": "RAPIDS", "name": "RAPIDS", "icons": [{ "src": "icon.png", "type": "image/png", "sizes": "512x512" }], "start_url": "/?utm_source=homescreen", "background_color": "#fafafa", "theme_color": "#fafafa" }
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/css/normalize.css
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ /* Document ========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-heigh...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/css/highlight.css
/* From https://github.com/mozmorris/tomorrow-pygments/blob/master/css/tomorrow.css */ .highlight .hll { background-color: #d6d6d6 } .highlight .c { color: #8e908c } /* Comment */ .highlight .err { color: #c82829 } /* Error */ .highlight .k { color: #8959a8 } /* Keyword */ .highlight .l { color: #f5871f } /* Literal ...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/EaseVsPerformance.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 260 280" style="enable-background:new 0 0 260...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/rapids-logo-whitetxt.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 244 54.4" style="enable-background:new 0 0 24...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/top-purple-strip.svg
<svg xmlns="http://www.w3.org/2000/svg" width="2560" height="169" viewBox="0 0 2560 169"> <metadata><?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c140 79.160451, 2017/05/06-01:08:21 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/RAPIDS-logo-purple.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1920 704" style="enable-background:new 0 0 19...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/header-bg.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1200 370" style="enable-background:new 0 0 12...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/dask.svg
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1055.69 386.2"> <g> <path d="M80.51,127.89l83.85-48.38a2.69,2.69,0,0,0,1.34-2.32v-29A13.89,13.89,0,0,0,160.52,37a13.21,13.21,0,0,0-14.8-1L28.43,103.73a13.32,13.32,0,0,0-6.67,11.54l0,152.84a13.91,13.91,0,0,0,5.17,11.14,13.23,13.2...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/rapids-end-to-end-performance-chart-oss-page-r4.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 850 450" style="enable-background:new 0 0 850...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/community-header.svg
<svg xmlns="http://www.w3.org/2000/svg" width="2560" height="639" viewBox="0 0 2560 639"> <metadata><?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c140 79.160451, 2017/05/06-01:08:21 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/RAPIDS-logo-white.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1920 704" style="enable-background:new 0 0 19...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/banner-bg.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 2000 500" style="enable-background:new 0 0 20...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/Pipeline-FPO-Diagram.svg
<svg id="PIPELINE" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="935.18" height="313" viewBox="0 0 935.18 313"> <metadata><?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c140 79.160451, 2017/05/06-01:08:21 ...
0
rapidsai_public_repos/rapids.ai/static/assets
rapidsai_public_repos/rapids.ai/static/assets/images/rapids-logo-whitetxt.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 244 54.4" style="enable-background:new 0 0 24...
0
rapidsai_public_repos/rapids.ai/static/assets
rapidsai_public_repos/rapids.ai/static/assets/images/RAPIDS-logo-purple.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1920 704" style="enable-background:new 0 0 19...
0
rapidsai_public_repos/rapids.ai/static/assets
rapidsai_public_repos/rapids.ai/static/assets/images/header-bg.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1200 370" style="enable-background:new 0 0 12...
0
rapidsai_public_repos/rapids.ai/static/assets
rapidsai_public_repos/rapids.ai/static/assets/images/dask-old.svg
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 550 247.95"> <defs> <linearGradient id="linear-gradient" x1="154.55" y1="173.33" x2="242.36" y2="173.33" gradientTransform="translate(-26.62 -73.73) rotate(7.91)" gradientUnits="userSpa...
0
rapidsai_public_repos/rapids.ai/static/assets
rapidsai_public_repos/rapids.ai/static/assets/images/rapids_logo.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1920 704" style="enable-background:new 0 0 19...
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/js/main.js
// console.log("NVIDIA GPUs FTW")
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/layouts/index.html
{{- define "main" -}} <!-- Using Index layout --> {{ .Content }} {{ end }}
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/layouts/404.html
{{ define "main"}} <!-- Hero NOTE: match with hero shortcode --> <section class="row hero-rapids-bg mb-5"> <div class="col"> <div class="hero-body text-center"> <img class="hero-img" src="/images/rapids-logo-whitetxt.svg"> <p class="fw-semibold fs-3 lh-xs text-white mb-2"> Page Not Found ...
0
rapidsai_public_repos/rapids.ai/layouts
rapidsai_public_repos/rapids.ai/layouts/shortcodes/copy-btn.html
<script> /* Append Code Copy Button */ /* source: https://remarkablemark.org/blog/2021/06/01/add-copy-code-to-clipboard-button-to-jeyll-site/ */ // Code Block must use pre + 'highlight' tag var codeBlocks = document.querySelectorAll('pre.highlight'); codeBlocks.forEach(function (codeBlock) { var copyBu...
0
rapidsai_public_repos/rapids.ai/layouts
rapidsai_public_repos/rapids.ai/layouts/shortcodes/open-source.html
<div class="container"> <h2>Open Source</h2> <p>RAPIDS would not be possible without the collaboration of these important open source projects. Click on a logo to learn more: </p> <div class="d-flex flex-wrap justify-content-between mt-5"> <a href="https://arrow.apache.org/" target="_blank" class="img-w100...
0
rapidsai_public_repos/rapids.ai/layouts
rapidsai_public_repos/rapids.ai/layouts/shortcodes/announcements.html
<!-- Announcements --> <section class="row"> <div class="col"> <div class="hero-announce-container"> {{ if isset .Params "text-1" }} <a href="{{ .Get "link-1" }} " target='_blank' class="hero-announce"> <span class="announce-icon fa-stack"> <i clas...
0
rapidsai_public_repos/rapids.ai/layouts
rapidsai_public_repos/rapids.ai/layouts/shortcodes/hero.html
<section class="row hero-rapids-bg mb-5"> <div class="col"> <div class="hero-body text-center"> <img class="hero-img" src="/images/rapids-logo-whitetxt.svg"> <p class="fw-semibold fs-3 lh-xs text-white mb-2"> {{ .Get "hero-text" }} </p> <button class="button-rapids-teal lh-xs"><a h...
0