repo_id
stringlengths
21
96
file_path
stringlengths
31
155
content
stringlengths
1
92.9M
__index_level_0__
int64
0
0
rapidsai_public_repos/kvikio/legate
rapidsai_public_repos/kvikio/legate/cpp/legate_kvikio.cpp
/* * 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.org/licenses/LICENSE-2.0 * * Unless required by applicable law ...
0
rapidsai_public_repos/kvikio/legate
rapidsai_public_repos/kvikio/legate/cpp/tile_io.cpp
/* * 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.org/licenses/LICENSE-2.0 * * Unless required by applicable law ...
0
rapidsai_public_repos/kvikio/legate
rapidsai_public_repos/kvikio/legate/legate_kvikio/cufile.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # See file LICENSE for terms. from __future__ import annotations import pathlib from typing import Any import legate.core.types as types from .library_description import TaskOpCode, context from .utils import get_legate_store class CuFile: """File...
0
rapidsai_public_repos/kvikio/legate
rapidsai_public_repos/kvikio/legate/legate_kvikio/library_description.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # See file LICENSE for terms. import os from enum import IntEnum from typing import Any from legate.core import Library, get_legate_runtime from legate_kvikio.install_info import header, libpath class LibraryDescription(Library): def __init__(self) ...
0
rapidsai_public_repos/kvikio/legate
rapidsai_public_repos/kvikio/legate/legate_kvikio/zarr.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # See file LICENSE for terms. from __future__ import annotations import math import pathlib from typing import Optional, Tuple import cunumeric import zarr.core from .tile import read_tiles, write_tiles def get_padded_array(zarr_ary: zarr.Array) -> Op...
0
rapidsai_public_repos/kvikio/legate
rapidsai_public_repos/kvikio/legate/legate_kvikio/tile.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # See file LICENSE for terms. from __future__ import annotations import pathlib from typing import Iterable, Optional, Tuple import cunumeric import legate.core.types as types from legate.core import Rect from .library_description import TaskOpCode, co...
0
rapidsai_public_repos/kvikio/legate
rapidsai_public_repos/kvikio/legate/legate_kvikio/__init__.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # See file LICENSE for terms. from .cufile import CuFile # noqa: F401 __version__ = "23.12.00"
0
rapidsai_public_repos/kvikio/legate
rapidsai_public_repos/kvikio/legate/legate_kvikio/kerchunk.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # See file LICENSE for terms. from __future__ import annotations import itertools import math import pathlib import cunumeric import fsspec import zarr.core import zarr.hierarchy from kerchunk.hdf import SingleHdf5ToZarr from .tile import read_tiles_by_...
0
rapidsai_public_repos/kvikio/legate
rapidsai_public_repos/kvikio/legate/legate_kvikio/utils.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # See file LICENSE for terms. from typing import Any from legate.core import Store def get_legate_store(buf: Any) -> Store: """Extracts a Legate store from object Supports any object that implements the Legate data interface (`__legate_data...
0
rapidsai_public_repos/kvikio/legate
rapidsai_public_repos/kvikio/legate/examples/zarr_io.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # See file LICENSE for terms. import cunumeric as num import legate.core import legate_kvikio.zarr def zarr_io(dirname): a = num.arange(10000).reshape(100, 100) # Write array to a Zarr file by chunks of 10x10. legate_kvikio.zarr.write_array...
0
rapidsai_public_repos/kvikio/legate
rapidsai_public_repos/kvikio/legate/examples/basic_io.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # See file LICENSE for terms. import cunumeric as num import legate_kvikio as kvikio from legate.core import get_legate_runtime def main(path): a = num.arange(1_000_000) f = kvikio.CuFile(path, "w+") f.write(a) # In order to make sure t...
0
rapidsai_public_repos/kvikio/legate
rapidsai_public_repos/kvikio/legate/examples/hdf5_io.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # See file LICENSE for terms. import h5py import numpy as np import legate_kvikio.kerchunk def hdf5_io(filename): a = np.arange(10000).reshape((100, 100)) # Write array using h5py with h5py.File(filename, "w") as f: f.create_datase...
0
rapidsai_public_repos/kvikio
rapidsai_public_repos/kvikio/notebooks/nvcomp_batch_codec.ipynb
import json import numcodecs import numpy as np import zarr from IPython.display import display np.set_printoptions(precision=4, suppress=True)NVCOMP_CODEC_ID = "nvcomp_batch" # Currently supported algorithms. LZ4_ALGO = "LZ4" GDEFLATE_ALGO = "Gdeflate" SNAPPY_ALGO = "snappy" ZSTD_ALGO = "zstd" codec = numcodecs...
0
rapidsai_public_repos/kvikio
rapidsai_public_repos/kvikio/notebooks/nvcomp_vs_zarr_lz4.ipynb
import cupy as cp import numpy as np import pandas as pd import time import zarr import kvikio.nvcomp # conda install -c conda-forge zarrHOST_LZ4_MAX = 2013929216 # 2113929216 sizes = list(map(lambda x: HOST_LZ4_MAX//(2**x), np.arange(20))) print(sizes)input_size = [] cascaded_size = [] cascaded_temp_size = [] cascade...
0
rapidsai_public_repos/kvikio
rapidsai_public_repos/kvikio/notebooks/zarr.ipynb
""" In this tutorial, we will show how to use KvikIO to read and write GPU memory directly to/from Zarr files. """ import json import shutil import numpy import cupy import zarr import kvikio import kvikio.zarr from kvikio.nvcomp_codec import NvCompBatchCodec from numcodecs import LZ4# Let's create a new Zarr array usi...
0
rapidsai_public_repos/kvikio
rapidsai_public_repos/kvikio/.devcontainer/README.md
# KvikIO Development Containers This directory contains [devcontainer configurations](https://containers.dev/implementors/json_reference/) for using VSCode to [develop in a container](https://code.visualstudio.com/docs/devcontainers/containers) via the `Remote Containers` [extension](https://marketplace.visualstudio.c...
0
rapidsai_public_repos/kvikio
rapidsai_public_repos/kvikio/.devcontainer/Dockerfile
# syntax=docker/dockerfile:1.5 ARG BASE ARG PYTHON_PACKAGE_MANAGER=conda FROM ${BASE} as pip-base ENV DEFAULT_VIRTUAL_ENV=rapids FROM ${BASE} as conda-base ENV DEFAULT_CONDA_ENV=rapids FROM ${PYTHON_PACKAGE_MANAGER}-base ARG CUDA ENV CUDAARCHS="RAPIDS" ENV CUDA_VERSION="${CUDA_VERSION:-${CUDA}}" ARG PYTHON_PACK...
0
rapidsai_public_repos/kvikio/.devcontainer
rapidsai_public_repos/kvikio/.devcontainer/cuda11.8-pip/devcontainer.json
{ "build": { "context": "${localWorkspaceFolder}/.devcontainer", "dockerfile": "${localWorkspaceFolder}/.devcontainer/Dockerfile", "args": { "CUDA": "11.8", "PYTHON_PACKAGE_MANAGER": "pip", "BASE": "rapidsai/devcontainers:23.12-cpp-llvm16-cuda11.8-ubuntu22.04" } }, "hostRequireme...
0
rapidsai_public_repos/kvikio/.devcontainer
rapidsai_public_repos/kvikio/.devcontainer/cuda12.0-pip/devcontainer.json
{ "build": { "context": "${localWorkspaceFolder}/.devcontainer", "dockerfile": "${localWorkspaceFolder}/.devcontainer/Dockerfile", "args": { "CUDA": "12.0", "PYTHON_PACKAGE_MANAGER": "pip", "BASE": "rapidsai/devcontainers:23.12-cpp-llvm16-cuda12.0-ubuntu22.04" } }, "hostRequireme...
0
rapidsai_public_repos/kvikio/.devcontainer
rapidsai_public_repos/kvikio/.devcontainer/cuda12.0-conda/devcontainer.json
{ "build": { "context": "${localWorkspaceFolder}/.devcontainer", "dockerfile": "${localWorkspaceFolder}/.devcontainer/Dockerfile", "args": { "CUDA": "12.0", "PYTHON_PACKAGE_MANAGER": "conda", "BASE": "rapidsai/devcontainers:23.12-cpp-mambaforge-ubuntu22.04" } }, "hostRequirements...
0
rapidsai_public_repos/kvikio/.devcontainer
rapidsai_public_repos/kvikio/.devcontainer/cuda11.8-conda/devcontainer.json
{ "build": { "context": "${localWorkspaceFolder}/.devcontainer", "dockerfile": "${localWorkspaceFolder}/.devcontainer/Dockerfile", "args": { "CUDA": "11.8", "PYTHON_PACKAGE_MANAGER": "conda", "BASE": "rapidsai/devcontainers:23.12-cpp-llvm16-cuda11.8-mambaforge-ubuntu22.04" } }, "...
0
rapidsai_public_repos/kvikio
rapidsai_public_repos/kvikio/docs/make.bat
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=source set BUILDDIR=build if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx ...
0
rapidsai_public_repos/kvikio
rapidsai_public_repos/kvikio/docs/Makefile
# Minimal makefile for Sphinx documentation # # You can set these variables from the command line, and also # from the environment for the first two. SPHINXOPTS ?= "-W" SPHINXBUILD ?= sphinx-build SOURCEDIR = source BUILDDIR = build # Put it first so that "make" without argument is like "make help". hel...
0
rapidsai_public_repos/kvikio/docs
rapidsai_public_repos/kvikio/docs/source/runtime_settings.rst
Runtime Settings ================ Compatibility Mode ``KVIKIO_COMPAT_MODE`` ----------------------------------------- When KvikIO is running in compatibility mode, it doesn't load ``libcufile.so``. Instead, reads and writes are done using POSIX. Notice, this is not the same as the compatibility mode in cuFile. That is...
0
rapidsai_public_repos/kvikio/docs
rapidsai_public_repos/kvikio/docs/source/quickstart.rst
Quickstart ========== KvikIO can be used in place of Python's built-in `open() <https://docs.python.org/3/library/functions.html#open>`_ function with the caveat that a file is always opened in binary (``"b"``) mode. In order to open a file, use KvikIO's filehandle :py:meth:`kvikio.cufile.CuFile`. .. code-block:: pyt...
0
rapidsai_public_repos/kvikio/docs
rapidsai_public_repos/kvikio/docs/source/install.rst
Installation ============ KvikIO can be installed using Conda/Mamba or from source. Conda/Mamba ----------- We strongly recommend using `mamba <https://github.com/mamba-org/mamba>`_ inplace of conda, which we will do throughout the documentation. Install the **stable release** from the ``rapidsai`` channel like: ...
0
rapidsai_public_repos/kvikio/docs
rapidsai_public_repos/kvikio/docs/source/zarr.rst
Zarr ==== `Zarr <https://github.com/zarr-developers/zarr-specs>`_ is a binary file format for chunked, compressed, N-Dimensional array. It is used throughout the PyData ecosystem and especially for climate and biological science applications. `Zarr-Python <https://zarr.readthedocs.io/en/stable/>`_ is the official Py...
0
rapidsai_public_repos/kvikio/docs
rapidsai_public_repos/kvikio/docs/source/conf.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # See file LICENSE for terms. # # Configuration file for the Sphinx documentation builder. # # This file only contains a selection of the most common options. For a full # list see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuratio...
0
rapidsai_public_repos/kvikio/docs
rapidsai_public_repos/kvikio/docs/source/api.rst
API === CuFile ------ .. currentmodule:: kvikio.cufile .. autoclass:: CuFile :members: .. autoclass:: IOFuture :members: Zarr ---- .. currentmodule:: kvikio.zarr .. autoclass:: GDSStore :members: Defaults -------- .. currentmodule:: kvikio.defaults .. autofunction:: compat_mode .. autofunction:: com...
0
rapidsai_public_repos/kvikio/docs
rapidsai_public_repos/kvikio/docs/source/index.rst
Welcome to KvikIO's Python documentation! ========================================= KvikIO is a Python and C++ library for high performance file IO. It provides C++ and Python bindings to `cuFile <https://docs.nvidia.com/gpudirect-storage/api-reference-guide/index.html>`_, which enables `GPUDirect Storage <https://dev...
0
rapidsai_public_repos/kvikio
rapidsai_public_repos/kvikio/ci/test_python.sh
#!/bin/bash # Copyright (c) 2022-2023, NVIDIA CORPORATION. set -euo pipefail . /opt/conda/etc/profile.d/conda.sh rapids-logger "Generate Python testing dependencies" rapids-dependency-file-generator \ --output conda \ --file_key test_python \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY...
0
rapidsai_public_repos/kvikio
rapidsai_public_repos/kvikio/ci/test_cpp.sh
#!/bin/bash # Copyright (c) 2022-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/kvikio
rapidsai_public_repos/kvikio/ci/build_python.sh
#!/bin/bash # Copyright (c) 2023, NVIDIA CORPORATION. set -euo pipefail source rapids-env-update export CMAKE_GENERATOR=Ninja rapids-print-env rapids-logger "Begin py build" CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp) rapids-conda-retry mambabuild \ --channel "${CPP_CHANNEL}" \ conda/recipes/kvikio rap...
0
rapidsai_public_repos/kvikio
rapidsai_public_repos/kvikio/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/kvikio
rapidsai_public_repos/kvikio/ci/build_cpp.sh
#!/bin/bash # Copyright (c) 2023, NVIDIA CORPORATION. set -euo pipefail source rapids-env-update export CMAKE_GENERATOR=Ninja rapids-print-env rapids-logger "Begin cpp build" rapids-conda-retry mambabuild conda/recipes/libkvikio rapids-upload-conda-to-s3 cpp
0
rapidsai_public_repos/kvikio
rapidsai_public_repos/kvikio/ci/build_docs.sh
#!/bin/bash # Copyright (c) 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}" | tee en...
0
rapidsai_public_repos/kvikio/ci
rapidsai_public_repos/kvikio/ci/release/update-version.sh
#!/bin/bash # Copyright (c) 2022-2023, NVIDIA CORPORATION. ########################## # KvikIO 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 ...
0
rapidsai_public_repos/kvikio/ci
rapidsai_public_repos/kvikio/ci/checks/copyright.py
# Copyright (c) 2019-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.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agre...
0
rapidsai_public_repos/kvikio/ci
rapidsai_public_repos/kvikio/ci/checks/style.sh
#!/bin/bash # Copyright (c) 2022-2023, NVIDIA CORPORATION. ####################### # kvikio Style Tester # ####################### PATH=/conda/bin:$PATH # Activate common conda env . /opt/conda/etc/profile.d/conda.sh conda activate rapids FORMAT_FILE_URL=https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch...
0
rapidsai_public_repos
rapidsai_public_repos/distributed-join/Dockerfile.cudf_source
FROM nvidia/cuda:11.0-devel-ubuntu20.04 ARG DEBIAN_FRONTEND=noninteractive ENV CUDA_ROOT=/usr/local/cuda WORKDIR / RUN apt-get update -y && apt-get install -y build-essential wget git vim libpciaccess-dev pciutils # Install conda ADD https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh /miniconda.sh ...
0
rapidsai_public_repos
rapidsai_public_repos/distributed-join/CMakeLists.txt
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # 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 appli...
0
rapidsai_public_repos
rapidsai_public_repos/distributed-join/run-clang-format.py
#!/usr/bin/python3 import glob import argparse import subprocess parser = argparse.ArgumentParser() parser.add_argument("-p", "--path", default="clang-format", help="Path to clang-format executable") args = parser.parse_args() extensions = ["cu", "cpp", "h", "cuh", "hpp"] file_paths = [] for extension in extensions:...
0
rapidsai_public_repos
rapidsai_public_repos/distributed-join/README.md
# Distributed Join Project ## Overview This proof-of-concept repo implements the distributed repartitioned join algorithm. The algorithm consists of three steps: 1. Hash partition: reorder input tables into partitions based on the hash values of the key columns. 2. All-to-all communication: send each partition to the...
0
rapidsai_public_repos
rapidsai_public_repos/distributed-join/Dockerfile
FROM nvidia/cuda:11.0-devel-ubuntu20.04 ARG DEBIAN_FRONTEND=noninteractive ENV CUDA_ROOT=/usr/local/cuda WORKDIR / RUN apt-get update -y && apt-get install -y build-essential wget git vim libpciaccess-dev pciutils # Install conda ADD https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh /miniconda.sh ...
0
rapidsai_public_repos
rapidsai_public_repos/distributed-join/LICENSE
Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. 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 ag...
0
rapidsai_public_repos
rapidsai_public_repos/distributed-join/.clang-format
--- # This file is copied from cuDF repo: # https://github.com/rapidsai/cudf/blob/branch-0.17/cpp/.clang-format # Refer to the following link for the explanation of each params: # http://releases.llvm.org/8.0.0/tools/clang/docs/ClangFormatStyleOptions.html Language: Cpp # BasedOnStyle: Google AccessModifierOffset: ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/generate_dataset/nvtx_helper.cuh
/* * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/generate_dataset/generate_dataset.cuh
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/benchmark/CMakeLists.txt
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # 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 appli...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/benchmark/gpubdb_shuffle_on.cpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/benchmark/distributed_join.cu
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/benchmark/all_to_all.cpp
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/benchmark/run_sample.sh
#!/bin/bash #lrank=$SLURM_LOCALID lrank=$OMPI_COMM_WORLD_LOCAL_RANK export CUDA_DEVICE_MAX_CONNECTIONS=1 # APP="build/bin/benchmark/all_to_all --repeat 1" APP="build/bin/benchmark/distributed_join" # this is the list of GPUs we have GPUS=(0 1 2 3 4 5 6 7) # This is the list of NICs we should use for each GPU # e.g...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/benchmark/utility.hpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/benchmark/tpch.cpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/scripts/tpch_to_parquet.py
""" Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. 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 o...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/doc/tpch_perf.svg
<?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <!-- Created with matplotlib (https://matplotlib.org/) --> <svg height="396pt" version="1.1" viewBox="0 0 576 396" width="576pt" xmlns="http://www.w3.org/2000/svg" ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/cmake/FindUCX.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.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/cmake/BuildHelpers.cmake
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # 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 appli...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/cmake/FindNCCL.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.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/cmake/FindCUDF.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.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/cmake/FindNVCOMP.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.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/cmake/FindRMM.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.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/ci/install-dependencies.sh
#!/bin/bash set -exo pipefail export DEBIAN_FRONTEND=noninteractive apt-get update -y && apt-get install -y build-essential wget cmake git vim wget -O /miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh sh /miniconda.sh -b -p /conda && /conda/bin/conda update -y -n base conda export PA...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/shuffle_on.cpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/distribute_table.hpp
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/communicator.hpp
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/setup.cpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/CMakeLists.txt
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # 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 appli...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/distributed_join.hpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/compression.hpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/strings_column.cu
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/registered_memory_resource.hpp
/* * Copyright (c) 2019-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.org/licenses/LICENSE-2.0 * * Unless required by applicable...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/compression.cpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/distribute_table.cpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/generate_table.cuh
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/error.hpp
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/all_to_all_comm.hpp
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/setup.hpp
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/distributed_join.cpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/shuffle_on.hpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/all_to_all_comm.cpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/strings_column.hpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/src/communicator.cpp
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/test/string_payload.cu
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/test/compare_against_analytical.cu
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/test/CMakeLists.txt
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # 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 appli...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/test/test_shuffle_on.cpp
/* * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * 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 requi...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/test/buffer_communicator.cu
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos/distributed-join
rapidsai_public_repos/distributed-join/test/compare_against_single_gpu.cu
/* * Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved. * * 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 ...
0
rapidsai_public_repos
rapidsai_public_repos/sphinx-theme/pyproject.toml
[project] name = "rapidsai-sphinx-theme" description = "PyData-based Sphinx theme for RAPIDS" dynamic = ["version"] readme = "README.md" requires-python = ">=3.8" dependencies = [ "sphinx>=5.0", "pydata-sphinx-theme" ] license = { file = "LICENSE" } maintainers = [ { name = "RAPIDS Team", email = "general@rapids....
0
rapidsai_public_repos
rapidsai_public_repos/sphinx-theme/README.md
# RAPIDS Sphinx Theme > **Warning** > Work In Progress & Experimental Using default [PyData Theme](https://pydata-sphinx-theme.readthedocs.io/en/stable/) with customized configuration to standardized RAPIDS documentation navigation. - RAPIDS nav section based on [announcements banner](https://pydata-sphinx-theme.rea...
0
rapidsai_public_repos
rapidsai_public_repos/sphinx-theme/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/sphinx-theme
rapidsai_public_repos/sphinx-theme/rapidsai_sphinx_theme/theme.conf
[theme] inherit = pydata_sphinx_theme stylesheet = rapidsai.css
0
rapidsai_public_repos/sphinx-theme
rapidsai_public_repos/sphinx-theme/rapidsai_sphinx_theme/__init__.py
from os import path from typing import Dict from sphinx.application import Sphinx __version__ = "0.0.0" def setup(app: Sphinx) -> Dict[str, bool]: app.add_html_theme("rapidsai_sphinx_theme", path.abspath(path.dirname(__file__))) app.add_js_file("rapidsai.js", loading_method="defer") # Override PyData t...
0
rapidsai_public_repos/sphinx-theme/rapidsai_sphinx_theme
rapidsai_public_repos/sphinx-theme/rapidsai_sphinx_theme/static/rapidsai.css
/* RAPIDS Custom Docs css */ /* https://pydata-sphinx-theme.readthedocs.io/en/stable/user_guide/styling.html#custom-css */ body { margin: 0; padding: 0; } /* RAPIDS custom colors primary */ html[data-theme="light"] { --pst-color-primary: #7306ff; --pst-color-secondary: #984dfb; --pst-color-info: #ffb500; ...
0
rapidsai_public_repos/sphinx-theme
rapidsai_public_repos/sphinx-theme/docs/Makefile
# Minimal makefile for Sphinx documentation # # You can set these variables from the command line, and also # from the environment for the first two. SPHINXOPTS ?= SPHINXBUILD ?= sphinx-build SOURCEDIR = source BUILDDIR = build # Put it first so that "make" without argument is like "make help". help: @...
0
rapidsai_public_repos/sphinx-theme
rapidsai_public_repos/sphinx-theme/docs/conf.py
# Copyright (c) 2023, NVIDIA CORPORATION. # -- Project information ----------------------------------------------------- project = "cudf" copyright = "2018-2023, NVIDIA Corporation" author = "NVIDIA Corporation" language = "en" html_theme = "rapidsai_sphinx_theme" html_title = "cuDF Documentation" html_theme_options...
0
rapidsai_public_repos/sphinx-theme
rapidsai_public_repos/sphinx-theme/docs/index.rst
================ Document Heading ================ Example Page ============ Sub-heading ----------- Paragraphs are separated by a blank line. * This is a bulleted list. * It has two items, the second item uses two lines. 1. This is a numbered list. 2. It has two items too. #. This is a numbered list. #. It has...
0
rapidsai_public_repos
rapidsai_public_repos/multi-gpu-tools/test_client_bandwidth.py
# Copyright (c) 2022-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.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed...
0