repo_id stringlengths 21 96 | file_path stringlengths 31 155 | content stringlengths 1 92.9M | __index_level_0__ int64 0 0 |
|---|---|---|---|
rapidsai_public_repos | rapidsai_public_repos/multi-gpu-tools/default-config.sh | # 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.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed... | 0 |
rapidsai_public_repos | rapidsai_public_repos/multi-gpu-tools/getopt.py | # 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 or agreed to... | 0 |
rapidsai_public_repos | rapidsai_public_repos/multi-gpu-tools/setup-latest-results-dir.sh | #!/bin/bash
# Copyright (c) 2023, NVIDIA CORPORATION.
# Abort script on first error, undef vars are errors, propagate failures in pipelines
set -eu -o pipefail
RAPIDS_MG_TOOLS_DIR=${RAPIDS_MG_TOOLS_DIR:-$(cd $(dirname ${BASH_SOURCE[0]}) && pwd)}
source ${RAPIDS_MG_TOOLS_DIR}/script-env.sh
usage () {
echo "Usage:... | 0 |
rapidsai_public_repos | rapidsai_public_repos/multi-gpu-tools/script-env.sh | # 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 i... | 0 |
rapidsai_public_repos | rapidsai_public_repos/multi-gpu-tools/record-benchmarks.py | import glob
import argparse
import pandas as pd
from pathlib import Path
import platform
from pynvml import smi
import yaml
import os
import math
# read the pytest-results.txt file and return a df in the format we want
def pytest_results_to_df(path, run_date):
df = pd.read_csv(path, sep=" ", header=None)
# pr... | 0 |
rapidsai_public_repos | rapidsai_public_repos/multi-gpu-tools/README.md | # rapidsai/multi-gpu-tools (rapids-mg-tools)
This repo contains tools for configuring environments and automating
single-node or multi-node, multi-gpu application runs (SNMG or MNMG),
currently consisting of a collection of shell scripts and python
modules for use by such applications.
The tools in this repo are curr... | 0 |
rapidsai_public_repos | rapidsai_public_repos/multi-gpu-tools/run-cluster-dask-jobs.sh | #!/bin/bash
# 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.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable l... | 0 |
rapidsai_public_repos | rapidsai_public_repos/multi-gpu-tools/dump-meta-data.sh | #!/bin/bash
# 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.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable l... | 0 |
rapidsai_public_repos | rapidsai_public_repos/multi-gpu-tools/build-ucx.sh | #!/bin/bash
# Copyright (c) 2023, NVIDIA CORPORATION.
# SPDX-License-Identifier: Apache-2.0
# Abort script on first error, undef vars are errors, propagate failures in pipelines
set -eu -o pipefail
UCX_VERSION_TAG=${1:-"v1.14.x"}
CUDA_HOME=${2:-"/usr/local/cuda"}
# Send any remaining arguments to configure
CONFIGURE_... | 0 |
rapidsai_public_repos | rapidsai_public_repos/multi-gpu-tools/functions.sh | # 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 i... | 0 |
rapidsai_public_repos | rapidsai_public_repos/multi-gpu-tools/run-dask-process.sh | #!/bin/bash
# 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... | 0 |
rapidsai_public_repos | rapidsai_public_repos/multi-gpu-tools/wait_for_workers.py | # 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 i... | 0 |
rapidsai_public_repos | rapidsai_public_repos/test-ci-permissions/Dockerfile | FROM rapidsai/mambaforge-cuda:latest
RUN useradd -rm -d /home/rapids -s /bin/bash -g conda -u 1000 rapids
USER rapids
WORKDIR /home/rapids
| 0 |
rapidsai_public_repos | rapidsai_public_repos/wholegraph/.pre-commit-config.yaml | ## https://pre-commit.com/
#
# Before first use: `pre-commit install`
# To run: `pre-commit run --all-files`
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-added-large-files
- id: debug-statements
- id: mixed-line-ending
- id: trailing-whit... | 0 |
rapidsai_public_repos | rapidsai_public_repos/wholegraph/.flake8 | # Copyright (c) 2023, NVIDIA CORPORATION.
[flake8]
filename = *.py, *.pyx, *.pxd, *.pxi
exclude = __init__.py, *.egg, build, docs, .git
force-check = True
max-line-length = 120
ignore =
# line break before binary operator
W503,
# whitespace before :
E203
per-file-ignores =
# Rules ignored only in C... | 0 |
rapidsai_public_repos | rapidsai_public_repos/wholegraph/fetch_rapids.cmake | # =============================================================================
# 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.apa... | 0 |
rapidsai_public_repos | rapidsai_public_repos/wholegraph/README.md | # WholeGraph
WholeGraph is developed to help train large-scale Graph Neural Networks(GNN).
WholeGraph provides underlying storage structure called WholeMemory.
WholeMemory is a Tensor like storage and provide multi-GPU support.
It is optimized for NVLink systems like DGX A100 servers.
By working together with cuGraph,... | 0 |
rapidsai_public_repos | rapidsai_public_repos/wholegraph/CHANGELOG.md | # wholegraph 23.10.00 (11 Oct 2023)
## 🐛 Bug Fixes
- Update all versions to 23.10 ([#71](https://github.com/rapidsai/wholegraph/pull/71)) [@raydouglass](https://github.com/raydouglass)
- Use `conda mambabuild` not `mamba mambabuild` ([#67](https://github.com/rapidsai/wholegraph/pull/67)) [@bdice](https://github.com/... | 0 |
rapidsai_public_repos | rapidsai_public_repos/wholegraph/build.sh | #!/bin/bash
# Copyright (c) 2019-2023, NVIDIA CORPORATION.
# wholegraph build script
# This script is used to build component(s) in this repo from
# source, and can be called with various options to customize the
# build as needed (see the help output for details)
# Abort script on first error
set -e
NUMARGS=$#
AR... | 0 |
rapidsai_public_repos | rapidsai_public_repos/wholegraph/dependencies.yaml | # Dependency list for https://github.com/rapidsai/dependency-file-generator
files:
all:
output: [conda]
matrix:
cuda: ["11.8", "12.0"]
arch: [x86_64]
includes:
- checks
- build
- cudatoolkit
- py_version
- run
- test_python
- docs
- clang_tools
... | 0 |
rapidsai_public_repos | rapidsai_public_repos/wholegraph/Dockerfile | FROM nvcr.io/nvidia/pytorch:22.10-py3
RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y lsb-core software-properties-common wget libspdlog-dev
#RUN remove old cmake to update
RUN conda remove --force -y cmake
RUN rm -rf /usr/local/bin/cmake && rm -rf /usr/local/lib/cmake && rm -rf /usr/lib/cmake
RUN ap... | 0 |
rapidsai_public_repos | rapidsai_public_repos/wholegraph/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 | rapidsai_public_repos/wholegraph/VERSION | 23.12.00
| 0 |
rapidsai_public_repos/wholegraph/python | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pyproject.toml | # 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 or agreed to... | 0 |
rapidsai_public_repos/wholegraph/python | rapidsai_public_repos/wholegraph/python/pylibwholegraph/CMakeLists.txt | #=============================================================================
# Copyright (c) 2018-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://ww... | 0 |
rapidsai_public_repos/wholegraph/python | rapidsai_public_repos/wholegraph/python/pylibwholegraph/setup.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python | rapidsai_public_repos/wholegraph/python/pylibwholegraph/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/wholegraph/python/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/_version.py | # 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 or agreed to... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/__init__.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 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/VERSION | 23.12.00
| 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch_cpp_ext/torch_env_func_ptrs.h | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch_cpp_ext/torch_utils.h | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch_cpp_ext/wholegraph_torch_ext.cpp | #include <torch/extension.h>
#include <torch/script.h>
#include "torch_env_func_ptrs.h"
#include "torch_utils.h"
int64_t wrapped_get_wholegraph_env_fns()
{
return reinterpret_cast<int64_t>(static_cast<void*>(wholegraph_torch::get_pytorch_env_func()));
}
int64_t wrapped_get_stream()
{
return reinterpret_cast<int6... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch_cpp_ext/torch_utils.cpp | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch_cpp_ext/torch_env_func_ptrs.cpp | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/test_utils/test_comm.py | import torch
import pylibwholegraph.binding.wholememory_binding as wmb
from pylibwholegraph.torch.dlpack_utils import torch_import_from_dlpack
from packaging import version
def gen_csr_format_from_dense_matrix(
matrix_tensor,
graph_node_count,
graph_edge_count,
neighbor_node_count,
csr_row_dtype,
... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/utils/multiprocess.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/pylibwholegraph/test_wholememory_binding.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/pylibwholegraph/test_wholememory_io.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/pylibwholegraph/test_wholememory_tensor.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/wholegraph_torch | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/wholegraph_torch/ops/test_wholememory_cython_binding.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/wholegraph_torch | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/wholegraph_torch/ops/test_graph_add_csr_self_loop.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/wholegraph_torch | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/wholegraph_torch/ops/test_wholegraph_unweighted_sample_without_replacement.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/wholegraph_torch | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/wholegraph_torch/ops/test_graph_append_unique.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/wholegraph_torch | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/wholegraph_torch/ops/test_wholegraph_gather_scatter.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/wholegraph_torch | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/tests/wholegraph_torch/ops/test_wholegraph_weighted_sample_without_replacement.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/binding/CMakeLists.txt | # Set the list of Cython files to build
set(cython_sources wholememory_binding.pyx)
set(linked_libraries wholegraph::wholegraph)
# Build all of the Cython targets
rapids_cython_create_modules(
CXX
SOURCE_FILES "${cython_sources}"
LINKED_LIBRARIES "${linked_libraries}"
ASSOCIATED_TARGETS... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/binding/wholememory_binding.pyx | # 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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/embedding.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/graph_ops.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/wholegraph_env.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/graph_structure.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/distributed_launch.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/initialize.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/gnn_model.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/tensor.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/comm.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/wholegraph_ops.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/common_options.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/__init__.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/dlpack_utils.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/utils.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/wholememory_ops.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/data_loader.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/cugraphops/sage_conv.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch | rapidsai_public_repos/wholegraph/python/pylibwholegraph/pylibwholegraph/torch/cugraphops/gat_conv.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/examples/ogbn_papers100m_convert.py | import argparse
import os
import numpy as np
from scipy.sparse import coo_matrix
import pickle
from ogb.nodeproppred import NodePropPredDataset
def save_array(np_array, save_path, array_file_name):
array_full_path = os.path.join(save_path, array_file_name)
with open(array_full_path, 'wb') as f:
np_arr... | 0 |
rapidsai_public_repos/wholegraph/python/pylibwholegraph | rapidsai_public_repos/wholegraph/python/pylibwholegraph/examples/node_classfication.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 agreed... | 0 |
rapidsai_public_repos/wholegraph/conda | rapidsai_public_repos/wholegraph/conda/environments/all_cuda-120_arch-x86_64.yaml | # This file is generated by `rapids-dependency-file-generator`.
# To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
channels:
- rapidsai
- rapidsai-nightly
- pytorch
- conda-forge
- nvidia
dependencies:
- breathe
- c-compiler
- clang-tools=16.0.0
- clangxx=16.0.0
- cmake>=3.26.4
... | 0 |
rapidsai_public_repos/wholegraph/conda | rapidsai_public_repos/wholegraph/conda/environments/all_cuda-118_arch-x86_64.yaml | # This file is generated by `rapids-dependency-file-generator`.
# To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
channels:
- rapidsai
- rapidsai-nightly
- pytorch
- conda-forge
- nvidia
dependencies:
- breathe
- c-compiler
- clang-tools=16.0.0
- clangxx=16.0.0
- cmake>=3.26.4
... | 0 |
rapidsai_public_repos/wholegraph/conda/recipes | rapidsai_public_repos/wholegraph/conda/recipes/pylibwholegraph/conda_build_config.yaml | c_compiler_version:
- 11
cxx_compiler_version:
- 11
cuda_compiler:
- cuda-nvcc
cuda11_compiler:
- nvcc
cmake_version:
- ">=3.26.4"
scikit_build_version:
- ">=0.13.1"
sysroot_version:
- "2.17"
| 0 |
rapidsai_public_repos/wholegraph/conda/recipes | rapidsai_public_repos/wholegraph/conda/recipes/pylibwholegraph/build.sh | #!/usr/bin/env bash
# Copyright (c) 2022-2023, NVIDIA CORPORATION.
CMAKE_EXTRA_ARGS="--cmake-args=\"-DBUILD_OPS_WITH_TORCH_C10_API=OFF\""
./build.sh pylibwholegraph --allgpuarch -v ${CMAKE_EXTRA_ARGS}
| 0 |
rapidsai_public_repos/wholegraph/conda/recipes | rapidsai_public_repos/wholegraph/conda/recipes/pylibwholegraph/meta.yaml | # Copyright (c) 2022-2023, NVIDIA CORPORATION.
{% set version = environ['RAPIDS_PACKAGE_VERSION'].lstrip('v') + environ.get('VERSION_SUFFIX', '') %}
{% set minor_version = version.split('.')[0] + '.' + version.split('.')[1] %}
{% set cuda_version = '.'.join(environ['RAPIDS_CUDA_VERSION'].split('.')[:2]) %}
{% set cuda... | 0 |
rapidsai_public_repos/wholegraph/conda/recipes | rapidsai_public_repos/wholegraph/conda/recipes/libwholegraph/install_libwholegraph_tests.sh | #!/bin/bash
# Copyright (c) 2022-2023, NVIDIA CORPORATION.
cmake --install cpp/build --component testing
| 0 |
rapidsai_public_repos/wholegraph/conda/recipes | rapidsai_public_repos/wholegraph/conda/recipes/libwholegraph/conda_build_config.yaml | c_compiler_version:
- 11
cxx_compiler_version:
- 11
cuda_compiler:
- cuda-nvcc
cuda11_compiler:
- nvcc
cmake_version:
- ">=3.26.4"
doxygen_version:
- ">=1.8.11"
nccl_version:
- ">=2.9.9"
gtest_version:
- ">=1.13.0"
gmock_version:
- ">=1.13.0"
sysroot_version:
- "2.17"
| 0 |
rapidsai_public_repos/wholegraph/conda/recipes | rapidsai_public_repos/wholegraph/conda/recipes/libwholegraph/install_libwholegraph.sh | #!/bin/bash
# Copyright (c) 2022-2023, NVIDIA CORPORATION.
cmake --install cpp/build
| 0 |
rapidsai_public_repos/wholegraph/conda/recipes | rapidsai_public_repos/wholegraph/conda/recipes/libwholegraph/build.sh | #!/usr/bin/env bash
# Copyright (c) 2021-2023, NVIDIA CORPORATION.
./build.sh -n libwholegraph tests -v --allgpuarch
| 0 |
rapidsai_public_repos/wholegraph/conda/recipes | rapidsai_public_repos/wholegraph/conda/recipes/libwholegraph/meta.yaml | # Copyright (c) 2019-2023, NVIDIA CORPORATION.
{% set version = environ['RAPIDS_PACKAGE_VERSION'].lstrip('v') + environ.get('VERSION_SUFFIX', '') %}
{% set minor_version = version.split('.')[0] + '.' + version.split('.')[1] %}
{% set cuda_version = '.'.join(environ['RAPIDS_CUDA_VERSION'].split('.')[:2]) %}
{% set cuda... | 0 |
rapidsai_public_repos/wholegraph/scripts | rapidsai_public_repos/wholegraph/scripts/checks/fileutils.py | # 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 or agreed to... | 0 |
rapidsai_public_repos/wholegraph/scripts | rapidsai_public_repos/wholegraph/scripts/checks/clangutils.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/wholegraph/scripts | rapidsai_public_repos/wholegraph/scripts/checks/__clang_cuda_additional_intrinsics.h | /*
* 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.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable... | 0 |
rapidsai_public_repos/wholegraph/scripts | rapidsai_public_repos/wholegraph/scripts/checks/gitutils.py | # Copyright (c) 2019-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 agre... | 0 |
rapidsai_public_repos/wholegraph/scripts | rapidsai_public_repos/wholegraph/scripts/checks/run-clang-format.py | # Copyright (c) 2020-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 agre... | 0 |
rapidsai_public_repos/wholegraph/scripts | rapidsai_public_repos/wholegraph/scripts/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/wholegraph/scripts | rapidsai_public_repos/wholegraph/scripts/checks/run-clang-tidy.py | # Copyright (c) 2020-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 agre... | 0 |
rapidsai_public_repos/wholegraph | rapidsai_public_repos/wholegraph/cpp/CMakeLists.txt | #=============================================================================
# Copyright (c) 2018-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://ww... | 0 |
rapidsai_public_repos/wholegraph | rapidsai_public_repos/wholegraph/cpp/.clang-tidy | ---
# Refer to the following link for the explanation of each parameter:
# https://releases.llvm.org/11.0.0/tools/clang/tools/extra/docs/clang-tidy/checks/list.html
#
# Checks we don't consider because they are irrelevant to this project:
# abseil-*, android-*, boost-*, clang-analyzer-*, darwin-*, fuchsia-*, hicpp-*,
#... | 0 |
rapidsai_public_repos/wholegraph | rapidsai_public_repos/wholegraph/cpp/Doxyfile | # Doxyfile 1.8.20
# 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/wholegraph | rapidsai_public_repos/wholegraph/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: -1
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: true
AlignConsecutiveBitFields: true
AlignConsecu... | 0 |
rapidsai_public_repos/wholegraph/cpp/include | rapidsai_public_repos/wholegraph/cpp/include/wholememory/graph_op.h | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/cpp/include | rapidsai_public_repos/wholegraph/cpp/include/wholememory/wholememory_op.h | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/cpp/include | rapidsai_public_repos/wholegraph/cpp/include/wholememory/tensor_description.h | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/cpp/include | rapidsai_public_repos/wholegraph/cpp/include/wholememory/global_reference.h | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/cpp/include | rapidsai_public_repos/wholegraph/cpp/include/wholememory/wholememory_tensor.h | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/cpp/include | rapidsai_public_repos/wholegraph/cpp/include/wholememory/env_func_ptrs.h | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/cpp/include | rapidsai_public_repos/wholegraph/cpp/include/wholememory/device_reference.cuh | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/cpp/include | rapidsai_public_repos/wholegraph/cpp/include/wholememory/embedding.h | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/cpp/include | rapidsai_public_repos/wholegraph/cpp/include/wholememory/wholememory.h | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/cpp/include | rapidsai_public_repos/wholegraph/cpp/include/wholememory/wholegraph_op.h | /*
* 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... | 0 |
rapidsai_public_repos/wholegraph/cpp | rapidsai_public_repos/wholegraph/cpp/tests/CMakeLists.txt | #=============================================================================
# Copyright (c) 2018-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://ww... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.