repo_id
stringlengths
21
96
file_path
stringlengths
31
155
content
stringlengths
1
92.9M
__index_level_0__
int64
0
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cuda/CMakeLists.txt
#============================================================================= # 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://ww...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cuda/README.md
### node-cuda (`npm install @rapidsai/cuda`) A node native addon that provides bindings to the CUDA driver and runtime APIs. These bindings allow calling the CUDA device management, memory, stream, event, ipc, and DX/GL interop APIs from JS. These APIs allow node (v8 or chakracore) applications to read, ...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cuda/tsconfig.json
{ "include": ["src"], "exclude": ["node_modules"], "compilerOptions": { "baseUrl": "./", "paths": { "@rapidsai/cuda": ["src/index"], "@rapidsai/cuda/*": ["src/*"] }, "target": "ESNEXT", "module": "commonjs", "outDir": "./build/js", ...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cuda/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/node/modules
rapidsai_public_repos/node/modules/cuda/typedoc.js
module.exports = { entryPoints: ['src/index.ts'], out: 'doc', name: '@rapidsai/cuda', tsconfig: 'tsconfig.json', excludePrivate: true, excludeProtected: true, excludeExternals: true, };
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/.vscode/launch.json
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "compounds": [ { "name": "Debug Tests (TS and C++)", "con...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/.vscode/tasks.json
{ "version": "2.0.0", "tasks": [ { "type": "shell", "label": "Rebuild node_cuda TS and C++ (slow)", "group": { "kind": "build", "isDefault": true, }, "command": "if [[ \"${input:CMAKE_BUILD_TYPE}\" == \"Release\" ]]; then yarn rebuild; else yarn rebuild:debug; f...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/stream.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/index.ts
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/node_cuda.ts
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/util.ts
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/kernel.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/gl.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/math.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/program.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/interfaces.ts
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/addon.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/device.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/array.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/device.ts
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/memory.ts
// 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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/buffer.ts
// 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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/src/addon.ts
// 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 la...
0
rapidsai_public_repos/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/visit_struct/visit_struct.hpp
// (C) Copyright 2015 - 2018 Christopher Beck // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef VISIT_STRUCT_HPP_INCLUDED #define VISIT_STRUCT_HPP_INCLUDED /*** * Provides a facility to declare a structure as "...
0
rapidsai_public_repos/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/memory/gl.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/memory/pinned.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/memory/managed.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/memory/ipc.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/memory/device.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/memory/memory.cpp
// 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 la...
0
rapidsai_public_repos/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/node_cuda/memory.hpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/node_cuda/device.hpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/node_cuda/array.hpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/node_cuda/types.hpp
// Copyright (c) 2020, 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/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/node_cuda/addon.hpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda/src
rapidsai_public_repos/node/modules/cuda/src/node_cuda/math.hpp
// Copyright (c) 2020, 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/node/modules/cuda/src/node_cuda
rapidsai_public_repos/node/modules/cuda/src/node_cuda/utilities/napi_to_cpp.hpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda/src/node_cuda
rapidsai_public_repos/node/modules/cuda/src/node_cuda/utilities/error.hpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda/src/node_cuda
rapidsai_public_repos/node/modules/cuda/src/node_cuda/utilities/cpp_to_napi.hpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/test/buffer-tests.ts
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/test/tsconfig.json
{ "extends": "../tsconfig.json", "include": [ "../src/**/*.ts", "../test/**/*.ts" ], "compilerOptions": { "target": "esnext", "module": "commonjs", "allowJs": true, "importHelpers": false, "noEmitHelpers": false, "noEmitOnError": false, ...
0
rapidsai_public_repos/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/test/setdefaultallocator-tests.ts
// 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/node/modules/cuda
rapidsai_public_repos/node/modules/cuda/test/ipc-tests.ts
// Copyright (c) 2020, 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/node/modules/cuda/test
rapidsai_public_repos/node/modules/cuda/test/device/create-with-flags-test.ts
// Copyright (c) 2020, 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/node/modules/cuda/test
rapidsai_public_repos/node/modules/cuda/test/device/set-flags-test.ts
// Copyright (c) 2020, 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/node/modules/cuda/test
rapidsai_public_repos/node/modules/cuda/test/device/device-properties-test.ts
// Copyright (c) 2020, 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/node/modules
rapidsai_public_repos/node/modules/cuspatial/package.json
{ "name": "@rapidsai/cuspatial", "version": "22.12.2", "description": "cuSpatial - NVIDIA RAPIDS GIS and Spatiotemporal Analytics Library", "license": "Apache-2.0", "main": "index.js", "types": "build/js", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@m...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cuspatial/index.js
// 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/node/modules
rapidsai_public_repos/node/modules/cuspatial/jest.config.js
// 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/node/modules
rapidsai_public_repos/node/modules/cuspatial/CMakeLists.txt
#============================================================================= # Copyright (c) 2021-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://ww...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cuspatial/README.md
# <div align="left"><img src="https://rapids.ai/assets/images/rapids_logo.png" width="90px"/>&nbsp; node-rapids cuSpatial - GPU-Accelerated Spatial and Trajectory Data Management and Analytics Library</div> ### Installation `npm install @rapidsai/cuspatial` ### About JS bindings for [cuSpatial](https://github.com/r...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cuspatial/tsconfig.json
{ "include": ["src"], "exclude": ["node_modules"], "compilerOptions": { "baseUrl": "./", "paths": { "@rapidsai/cuspatial": ["src/index"], "@rapidsai/cuspatial/*": ["src/*"] }, "target": "ESNEXT", "module": "commonjs", "outDir": "./build...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cuspatial/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/node/modules
rapidsai_public_repos/node/modules/cuspatial/typedoc.js
module.exports = { entryPoints: ['src/index.ts'], out: 'doc', name: '@rapidsai/cuspatial', tsconfig: 'tsconfig.json', excludePrivate: true, excludeProtected: true, excludeExternals: true, };
0
rapidsai_public_repos/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/.vscode/launch.json
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "compounds": [ { "name": "Debug Tests (TS and C++)", "con...
0
rapidsai_public_repos/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/.vscode/tasks.json
{ "version": "2.0.0", "tasks": [ { "type": "shell", "label": "Rebuild node_cuspatial TS and C++ (slow)", "group": { "kind": "build", "isDefault": true, }, "command": "if [[ \"${input:CMAKE_BUILD_TYPE}\" == \"Release\" ]]; then yarn rebuild; else yarn rebuild:deb...
0
rapidsai_public_repos/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/src/index.ts
// 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/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/src/spatial.ts
// 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/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/src/node_cuspatial.ts
// 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/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/src/geometry.cpp
// Copyright (c) 2021-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 la...
0
rapidsai_public_repos/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/src/quadtree.ts
// Copyright (c) 2021-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 la...
0
rapidsai_public_repos/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/src/geometry.ts
// Copyright (c) 2021-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 la...
0
rapidsai_public_repos/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/src/quadtree.cpp
// 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/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/src/addon.cpp
// Copyright (c) 2021-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 la...
0
rapidsai_public_repos/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/src/addon.ts
// Copyright (c) 2021-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 la...
0
rapidsai_public_repos/node/modules/cuspatial/src
rapidsai_public_repos/node/modules/cuspatial/src/node_cuspatial/geometry.hpp
// 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/node/modules/cuspatial/src
rapidsai_public_repos/node/modules/cuspatial/src/node_cuspatial/quadtree.hpp
// 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/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/test/utils.ts
// 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/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/test/quadtree-tests.ts
// 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/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/test/tsconfig.json
{ "extends": "../tsconfig.json", "include": [ "../src/**/*.ts", "../test/**/*.ts" ], "compilerOptions": { "target": "esnext", "module": "commonjs", "allowJs": true, "importHelpers": false, "noEmitHelpers": false, "noEmitOnError": false, ...
0
rapidsai_public_repos/node/modules/cuspatial
rapidsai_public_repos/node/modules/cuspatial/test/spatial-tests.ts
// 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/node/modules
rapidsai_public_repos/node/modules/cugraph/package.json
{ "name": "@rapidsai/cugraph", "version": "22.12.2", "description": "cuGraph - NVIDIA RAPIDS Graph Analytics Library", "license": "Apache-2.0", "main": "index.js", "types": "build/js", "author": "NVIDIA, Inc. (https://nvidia.com/)", "maintainers": [ "Paul Taylor <paul.e.taylor@me.com>" ], "homep...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cugraph/index.js
// Copyright (c) 2020, 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/node/modules
rapidsai_public_repos/node/modules/cugraph/jest.config.js
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cugraph/CMakeLists.txt
#============================================================================= # 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://ww...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cugraph/README.md
# <div align="left"><img src="https://rapids.ai/assets/images/rapids_logo.png" width="90px"/>&nbsp; node-rapids cuGraph - GPU Graph Analytics</div> ### Installation `npm install @rapidsai/cugraph` ### About The js bindings for [cuGraph](https://github.com/rapidsai/cugraph) is a collection of GPU accelerated graph a...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cugraph/tsconfig.json
{ "include": ["src"], "exclude": ["node_modules"], "compilerOptions": { "baseUrl": "./", "paths": { "@rapidsai/cugraph": ["src/index"], "@rapidsai/cugraph/*": ["src/*"] }, "target": "ESNEXT", "module": "commonjs", "outDir": "./build/js"...
0
rapidsai_public_repos/node/modules
rapidsai_public_repos/node/modules/cugraph/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/node/modules
rapidsai_public_repos/node/modules/cugraph/typedoc.js
module.exports = { entryPoints: ['src/index.ts'], out: 'doc', name: '@rapidsai/cugraph', tsconfig: 'tsconfig.json', excludePrivate: true, excludeProtected: true, excludeExternals: true, };
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/.vscode/launch.json
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "compounds": [ { "name": "Debug Tests (TS and C++)", "con...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/.vscode/tasks.json
{ "version": "2.0.0", "tasks": [ { "type": "shell", "label": "Rebuild node_cugraph TS and C++ (slow)", "group": { "kind": "build", "isDefault": true, }, "command": "if [[ \"${input:CMAKE_BUILD_TYPE}\" == \"Release\" ]]; then yarn rebuild; else yarn rebuild:debug...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/notebooks/Hypergraph.ipynb
var {Series, DataFrame} = require("@rapidsai/cudf") var {hypergraphDirect} = require("@rapidsai/cugraph")var log = new DataFrame({ src_ip: ['128.0.0.1', '128.0.0.1'], dest_ip: ['172.0.0.2', '172.0.0.3'], vuln: ['cve-123', 'cve-123'] })var h = hypergraphDirect(log)console.log(h.nodes.toString())console.log(...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/src/graph.ts
// 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 la...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/src/graph.cpp
// 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 la...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/src/index.ts
// 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 la...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/src/renumber.ts
// Copyright (c) 2021-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 la...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/src/node_cugraph.ts
// 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 la...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/src/hypergraph.ts
// Copyright (c) 2021-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 la...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/src/addon.cpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/src/addon.ts
// 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 la...
0
rapidsai_public_repos/node/modules/cugraph/src
rapidsai_public_repos/node/modules/cugraph/src/node_cugraph/graph.hpp
// 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 la...
0
rapidsai_public_repos/node/modules/cugraph/src/node_cugraph
rapidsai_public_repos/node/modules/cugraph/src/node_cugraph/cugraph/algorithms.hpp
// 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/node/modules/cugraph/src/node_cugraph/cugraph
rapidsai_public_repos/node/modules/cugraph/src/node_cugraph/cugraph/legacy/graph.hpp
// Copyright (c) 2020-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 la...
0
rapidsai_public_repos/node/modules/cugraph/src/node_cugraph
rapidsai_public_repos/node/modules/cugraph/src/node_cugraph/utilities/error.hpp
// 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/node/modules/cugraph/src
rapidsai_public_repos/node/modules/cugraph/src/layout/force_atlas2.cpp
// 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 la...
0
rapidsai_public_repos/node/modules/cugraph/src
rapidsai_public_repos/node/modules/cugraph/src/community/spectral_clustering.cpp
// 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/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/test/renumber-test.ts
// Copyright (c) 2021-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 la...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/test/tsconfig.json
{ "extends": "../tsconfig.json", "include": [ "../src/**/*.ts", "../test/**/*.ts" ], "compilerOptions": { "target": "esnext", "module": "commonjs", "allowJs": true, "importHelpers": false, "noEmitHelpers": false, "noEmitOnError": false, ...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/test/hypergraph-tests.ts
// Copyright (c) 2021-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 la...
0
rapidsai_public_repos/node/modules/cugraph
rapidsai_public_repos/node/modules/cugraph/test/graph-tests.ts
// 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 la...
0