repo_id
stringlengths
21
96
file_path
stringlengths
31
155
content
stringlengths
1
92.9M
__index_level_0__
int64
0
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/cmake/config.json
{ "parse": { "additional_commands": { "CPMFindPackage": { "kwargs": { "NAME": 1, "GITHUB_REPOSITORY": "?", "GIT_TAG": "?", "VERSION": "?", "GIT_SHALLOW": "?", "OPTIONS": "*", "FIND_PACKAGE_ARGUMENTS": "*" } }, "ConfigureTest": { "flags": ["TEST_NAME", "TEST_SRC"] }, "ConfigureBench": { "flags": ["BENCH_NAME", "BENCH_SRC"] } } }, "format": { "line_width": 100, "tab_size": 2, "command_case": "unchanged", "max_lines_hwrap": 1, "max_pargs_hwrap": 999 }, "lint": { "disabled_codes": ["C0301", "C0112"], "function_pattern": "[0-9A-z_]+", "macro_pattern": "[0-9A-z_]+", "global_var_pattern": "[A-z][0-9A-z_]+", "internal_var_pattern": "_[A-z][0-9A-z_]+", "local_var_pattern": "[A-z][A-z0-9_]+", "private_var_pattern": "_[0-9A-z_]+", "public_var_pattern": "[A-z][0-9A-z_]+", "argument_var_pattern": "[A-z][A-z0-9_]+", "keyword_pattern": "[A-z][0-9A-z_]+" } }
0
rapidsai_public_repos/rmm/cmake
rapidsai_public_repos/rmm/cmake/thirdparty/get_thrust.cmake
# ============================================================================= # Copyright (c) 2021, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software distributed under the License # is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express # or implied. See the License for the specific language governing permissions and limitations under # the License. # ============================================================================= # Use CPM to find or clone thrust function(find_and_configure_thrust) include(${rapids-cmake-dir}/cpm/thrust.cmake) rapids_cpm_thrust( NAMESPACE rmm BUILD_EXPORT_SET rmm-exports INSTALL_EXPORT_SET rmm-exports) endfunction() find_and_configure_thrust()
0
rapidsai_public_repos/rmm/cmake
rapidsai_public_repos/rmm/cmake/thirdparty/get_spdlog.cmake
# ============================================================================= # Copyright (c) 2021-2023, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software distributed under the License # is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express # or implied. See the License for the specific language governing permissions and limitations under # the License. # ============================================================================= # Use CPM to find or clone speedlog function(find_and_configure_spdlog) include(${rapids-cmake-dir}/cpm/spdlog.cmake) rapids_cpm_spdlog(FMT_OPTION "EXTERNAL_FMT_HO" INSTALL_EXPORT_SET rmm-exports) rapids_export_package(BUILD spdlog rmm-exports) if(spdlog_ADDED) rapids_export( BUILD spdlog EXPORT_SET spdlog GLOBAL_TARGETS spdlog spdlog_header_only NAMESPACE spdlog::) include("${rapids-cmake-dir}/export/find_package_root.cmake") rapids_export_find_package_root(BUILD spdlog [=[${CMAKE_CURRENT_LIST_DIR}]=] EXPORT_SET rmm-exports) endif() endfunction() find_and_configure_spdlog()
0
rapidsai_public_repos/rmm/cmake
rapidsai_public_repos/rmm/cmake/thirdparty/get_libcudacxx.cmake
# ============================================================================= # Copyright (c) 2023, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software distributed under the License # is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express # or implied. See the License for the specific language governing permissions and limitations under # the License. # ============================================================================= # Use CPM to find or clone libcudacxx function(find_and_configure_libcudacxx) include(${rapids-cmake-dir}/cpm/libcudacxx.cmake) rapids_cpm_libcudacxx(BUILD_EXPORT_SET rmm-exports INSTALL_EXPORT_SET rmm-exports) endfunction() find_and_configure_libcudacxx()
0
rapidsai_public_repos/rmm/cmake
rapidsai_public_repos/rmm/cmake/thirdparty/get_gtest.cmake
# ============================================================================= # Copyright (c) 2021, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software distributed under the License # is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express # or implied. See the License for the specific language governing permissions and limitations under # the License. # ============================================================================= # Use CPM to find or clone gtest function(find_and_configure_gtest) include(${rapids-cmake-dir}/cpm/gtest.cmake) rapids_cpm_gtest() endfunction() find_and_configure_gtest()
0
rapidsai_public_repos/rmm/cmake
rapidsai_public_repos/rmm/cmake/thirdparty/get_fmt.cmake
# ============================================================================= # Copyright (c) 2023, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except # in compliance with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software distributed under the License # is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express # or implied. See the License for the specific language governing permissions and limitations under # the License. # ============================================================================= # Use CPM to find or clone fmt function(find_and_configure_fmt) include(${rapids-cmake-dir}/cpm/fmt.cmake) rapids_cpm_fmt(INSTALL_EXPORT_SET rmm-exports BUILD_EXPORT_SET rmm-exports) endfunction() find_and_configure_fmt()
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/test_python.sh
#!/bin/bash # Copyright (c) 2020-2023, NVIDIA CORPORATION. set -euo pipefail rapids-logger "Create test conda environment" . /opt/conda/etc/profile.d/conda.sh rapids-dependency-file-generator \ --output conda \ --file_key test_python \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee env.yaml rapids-mamba-retry env create --force -f env.yaml -n test set +u conda activate test set -u rapids-print-env rapids-logger "Downloading artifacts from previous jobs" CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp) PYTHON_CHANNEL=$(rapids-download-conda-from-s3 python) rapids-mamba-retry install \ --channel "${CPP_CHANNEL}" \ --channel "${PYTHON_CHANNEL}" \ rmm librmm RAPIDS_TESTS_DIR=${RAPIDS_TESTS_DIR:-"${PWD}/test-results"} RAPIDS_COVERAGE_DIR=${RAPIDS_COVERAGE_DIR:-"${PWD}/coverage-results"} mkdir -p "${RAPIDS_TESTS_DIR}" "${RAPIDS_COVERAGE_DIR}" rapids-logger "Check GPU usage" nvidia-smi cd python EXITCODE=0 trap "EXITCODE=1" ERR set +e rapids-logger "pytest rmm" pytest \ --cache-clear \ --junitxml="${RAPIDS_TESTS_DIR}/junit-rmm.xml" \ -v \ --cov-config=.coveragerc \ --cov=rmm \ --cov-report=xml:"${RAPIDS_COVERAGE_DIR}/rmm-coverage.xml" \ --cov-report term rapids-logger "Test script exiting with value: $EXITCODE" exit ${EXITCODE}
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/test_cpp.sh
#!/bin/bash # Copyright (c) 2020-2023, NVIDIA CORPORATION. set -euo pipefail . /opt/conda/etc/profile.d/conda.sh rapids-logger "Generate C++ testing dependencies" rapids-dependency-file-generator \ --output conda \ --file_key test_cpp \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch)" | tee env.yaml rapids-mamba-retry env create --force -f env.yaml -n test # Temporarily allow unbound variables for conda activation. set +u conda activate test set -u CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp) RAPIDS_TESTS_DIR=${RAPIDS_TESTS_DIR:-"${PWD}/test-results"}/ mkdir -p "${RAPIDS_TESTS_DIR}" rapids-print-env rapids-mamba-retry install \ --channel "${CPP_CHANNEL}" \ librmm librmm-tests rapids-logger "Check GPU usage" nvidia-smi EXITCODE=0 trap "EXITCODE=1" ERR set +e # Run librmm gtests from librmm-tests package rapids-logger "Run gtests" cd $CONDA_PREFIX/bin/gtests/librmm/ export GTEST_OUTPUT=xml:${RAPIDS_TESTS_DIR}/ ctest -j20 --output-on-failure rapids-logger "Test script exiting with value: $EXITCODE" exit ${EXITCODE}
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/build_python.sh
#!/bin/bash # Copyright (c) 2020-2023, NVIDIA CORPORATION. set -euo pipefail source rapids-env-update export CMAKE_GENERATOR=Ninja rapids-print-env package_name="rmm" package_dir="python" version=$(rapids-generate-version) commit=$(git rev-parse HEAD) echo "${version}" > VERSION sed -i "/^__git_commit__/ s/= .*/= \"${commit}\"/g" "${package_dir}/${package_name}/_version.py" rapids-logger "Begin py build" CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp) # This calls mambabuild when boa is installed (as is the case in the CI images) RAPIDS_PACKAGE_VERSION=${version} rapids-conda-retry mambabuild -c "${CPP_CHANNEL}" conda/recipes/rmm rapids-upload-conda-to-s3 python
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/build_wheel.sh
#!/bin/bash # Copyright (c) 2023, NVIDIA CORPORATION. set -euo pipefail package_name="rmm" package_dir="python" source rapids-configure-sccache source rapids-date-string version=$(rapids-generate-version) commit=$(git rev-parse HEAD) RAPIDS_PY_CUDA_SUFFIX="$(rapids-wheel-ctk-name-gen ${RAPIDS_CUDA_VERSION})" # This is the version of the suffix with a preceding hyphen. It's used # everywhere except in the final wheel name. PACKAGE_CUDA_SUFFIX="-${RAPIDS_PY_CUDA_SUFFIX}" # Patch project metadata files to include the CUDA version suffix and version override. pyproject_file="${package_dir}/pyproject.toml" sed -i "s/name = \"${package_name}\"/name = \"${package_name}${PACKAGE_CUDA_SUFFIX}\"/g" ${pyproject_file} echo "${version}" > VERSION sed -i "/^__git_commit__/ s/= .*/= \"${commit}\"/g" "${package_dir}/${package_name}/_version.py" if [[ $PACKAGE_CUDA_SUFFIX == "-cu12" ]]; then sed -i "s/cuda-python[<=>\.,0-9a]*/cuda-python>=12.0,<13.0a0/g" ${pyproject_file} fi cd "${package_dir}" SKBUILD_CONFIGURE_OPTIONS="-DRMM_BUILD_WHEELS=ON" python -m pip wheel . -w dist -vvv --no-deps --disable-pip-version-check mkdir -p final_dist python -m auditwheel repair -w final_dist dist/* RAPIDS_PY_WHEEL_NAME="${package_name}_${RAPIDS_PY_CUDA_SUFFIX}" rapids-upload-wheels-to-s3 final_dist
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/check_style.sh
#!/bin/bash # Copyright (c) 2020-2023, NVIDIA CORPORATION. set -euo pipefail rapids-logger "Create checks conda environment" . /opt/conda/etc/profile.d/conda.sh rapids-dependency-file-generator \ --output conda \ --file_key checks \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee env.yaml rapids-mamba-retry env create --force -f env.yaml -n checks conda activate checks FORMAT_FILE_URL=https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-24.02/cmake-format-rapids-cmake.json export RAPIDS_CMAKE_FORMAT_FILE=/tmp/rapids_cmake_ci/cmake-formats-rapids-cmake.json mkdir -p $(dirname ${RAPIDS_CMAKE_FORMAT_FILE}) wget -O ${RAPIDS_CMAKE_FORMAT_FILE} ${FORMAT_FILE_URL} # Run pre-commit checks pre-commit run --all-files --show-diff-on-failure
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/test_wheel.sh
#!/bin/bash # Copyright (c) 2023, NVIDIA CORPORATION. set -eou pipefail RAPIDS_PY_CUDA_SUFFIX="$(rapids-wheel-ctk-name-gen ${RAPIDS_CUDA_VERSION})" RAPIDS_PY_WHEEL_NAME="rmm_${RAPIDS_PY_CUDA_SUFFIX}" rapids-download-wheels-from-s3 ./dist # echo to expand wildcard before adding `[extra]` requires for pip python -m pip install $(echo ./dist/rmm*.whl)[test] # Run smoke tests for aarch64 pull requests if [[ "$(arch)" == "aarch64" && ${RAPIDS_BUILD_TYPE} == "pull-request" ]]; then python ./ci/wheel_smoke_test.py else python -m pytest ./python/rmm/tests fi
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/wheel_smoke_test.py
import rmm if __name__ == "__main__": buf = rmm.DeviceBuffer(size=100) assert buf.size == 100
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/build_cpp.sh
#!/bin/bash # Copyright (c) 2020-2023, NVIDIA CORPORATION. set -euo pipefail source rapids-env-update export CMAKE_GENERATOR=Ninja rapids-print-env version=$(rapids-generate-version) rapids-logger "Begin cpp build" # This calls mambabuild when boa is installed (as is the case in the CI images) RAPIDS_PACKAGE_VERSION=${version} rapids-conda-retry mambabuild conda/recipes/librmm rapids-upload-conda-to-s3 cpp
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/ci/build_docs.sh
#!/bin/bash # Copyright (c) 2020-2023, NVIDIA CORPORATION. set -euo pipefail rapids-logger "Create test conda environment" . /opt/conda/etc/profile.d/conda.sh rapids-dependency-file-generator \ --output conda \ --file_key docs \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee env.yaml rapids-mamba-retry env create --force -f env.yaml -n docs conda activate docs rapids-print-env rapids-logger "Downloading artifacts from previous jobs" CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp) PYTHON_CHANNEL=$(rapids-download-conda-from-s3 python) rapids-mamba-retry install \ --channel "${CPP_CHANNEL}" \ --channel "${PYTHON_CHANNEL}" \ rmm librmm export RAPIDS_VERSION_NUMBER="24.02" export RAPIDS_DOCS_DIR="$(mktemp -d)" rapids-logger "Build CPP docs" pushd doxygen doxygen Doxyfile mkdir -p "${RAPIDS_DOCS_DIR}/librmm/html" mv html/* "${RAPIDS_DOCS_DIR}/librmm/html" popd rapids-logger "Build Python docs" pushd python/docs make dirhtml make text mkdir -p "${RAPIDS_DOCS_DIR}/rmm/"{html,txt} mv _build/dirhtml/* "${RAPIDS_DOCS_DIR}/rmm/html" mv _build/text/* "${RAPIDS_DOCS_DIR}/rmm/txt" popd rapids-upload-docs
0
rapidsai_public_repos/rmm/ci
rapidsai_public_repos/rmm/ci/release/update-version.sh
#!/bin/bash ######################## # RMM Version Updater # ######################## ## Usage # bash update-version.sh <new_version> # Format is YY.MM.PP - no leading 'v' or trailing 'a' NEXT_FULL_TAG=$1 # Get current version CURRENT_TAG=$(git tag --merged HEAD | grep -xE '^v.*' | sort --version-sort | tail -n 1 | tr -d 'v') CURRENT_MAJOR=$(echo $CURRENT_TAG | awk '{split($0, a, "."); print a[1]}') CURRENT_MINOR=$(echo $CURRENT_TAG | awk '{split($0, a, "."); print a[2]}') CURRENT_PATCH=$(echo $CURRENT_TAG | awk '{split($0, a, "."); print a[3]}') CURRENT_SHORT_TAG=${CURRENT_MAJOR}.${CURRENT_MINOR} #Get <major>.<minor> for next version NEXT_MAJOR=$(echo $NEXT_FULL_TAG | awk '{split($0, a, "."); print a[1]}') NEXT_MINOR=$(echo $NEXT_FULL_TAG | awk '{split($0, a, "."); print a[2]}') NEXT_SHORT_TAG=${NEXT_MAJOR}.${NEXT_MINOR} # Need to distutils-normalize the original version NEXT_SHORT_TAG_PEP440=$(python -c "from setuptools.extern import packaging; print(packaging.version.Version('${NEXT_SHORT_TAG}'))") echo "Preparing release $CURRENT_TAG => $NEXT_FULL_TAG" # Inplace sed replace; workaround for Linux and Mac function sed_runner() { sed -i.bak ''"$1"'' $2 && rm -f ${2}.bak } # cpp update sed_runner 's/'" VERSION .*"'/'" VERSION ${NEXT_FULL_TAG}"'/g' CMakeLists.txt # Python update sed_runner 's/'"rmm_version .*)"'/'"rmm_version ${NEXT_FULL_TAG})"'/g' python/CMakeLists.txt # Centralized version file update echo "${NEXT_FULL_TAG}" > VERSION # rapids-cmake version sed_runner 's/'"branch-.*\/RAPIDS.cmake"'/'"branch-${NEXT_SHORT_TAG}\/RAPIDS.cmake"'/g' fetch_rapids.cmake # cmake-format rapids-cmake definitions sed_runner 's/'"branch-.*\/cmake-format-rapids-cmake.json"'/'"branch-${NEXT_SHORT_TAG}\/cmake-format-rapids-cmake.json"'/g' ci/check_style.sh # doxyfile update sed_runner 's/'"PROJECT_NUMBER = .*"'/'"PROJECT_NUMBER = ${NEXT_SHORT_TAG}"'/g' doxygen/Doxyfile # sphinx docs update sed_runner 's/'"version =.*"'/'"version = \"${NEXT_SHORT_TAG}\""'/g' python/docs/conf.py sed_runner 's/'"release =.*"'/'"release = \"${NEXT_FULL_TAG}\""'/g' python/docs/conf.py # CI files for FILE in .github/workflows/*.yaml; do sed_runner "/shared-workflows/ s/@.*/@branch-${NEXT_SHORT_TAG}/g" "${FILE}" done sed_runner "s/RAPIDS_VERSION_NUMBER=\".*/RAPIDS_VERSION_NUMBER=\"${NEXT_SHORT_TAG}\"/g" ci/build_docs.sh # .devcontainer files find .devcontainer/ -type f -name devcontainer.json -print0 | while IFS= read -r -d '' filename; do sed_runner "s@rapidsai/devcontainers:[0-9.]*@rapidsai/devcontainers:${NEXT_SHORT_TAG}@g" "${filename}" sed_runner "s@rapidsai/devcontainers/features/rapids-build-utils:[0-9.]*@rapidsai/devcontainers/features/rapids-build-utils:${NEXT_SHORT_TAG_PEP440}@" "${filename}" done
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/doxygen/main_page.md
# librmm Achieving optimal performance in GPU-centric workflows frequently requires customizing how host and device memory are allocated. For example, using "pinned" host memory for asynchronous host <-> device memory transfers, or using a device memory pool sub-allocator to reduce the cost of dynamic device memory allocation. The goal of the RAPIDS Memory Manager (RMM) is to provide: - A common interface that allows customizing device and host memory allocation - A collection of implementations of the interface - A collection of data structures that use the interface for memory allocation \htmlonly For more information on APIs provided by rmm, see <a href="modules.html">the modules page</a>\endhtmlonly.
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/doxygen/Doxyfile
# Doxyfile 1.9.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a double hash (##) is considered a comment and is placed in # front of the TAG it is preceding. # # All text after a single hash (#) is considered a comment and will be ignored. # The format is: # TAG = value [value, ...] # For lists, items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (\" \"). #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the configuration # file that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # https://www.gnu.org/software/libiconv/ for the list of possible encodings. # The default value is: UTF-8. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by # double-quotes, unless you are using Doxywizard) that should identify the # project for which the documentation is generated. This name is used in the # title of most generated pages and in a few other places. # The default value is: My Project. PROJECT_NAME = RMM # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version # control system is used. PROJECT_NUMBER = 24.02 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = "RAPIDS Memory Manager" # With the PROJECT_LOGO tag one can specify a logo or an icon that is included # in the documentation. The maximum height of the logo should not exceed 55 # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy # the logo to the output directory. PROJECT_LOGO = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path # into which the generated documentation will be written. If a relative path is # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. OUTPUT_DIRECTORY = # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- # directories (in 2 levels) under the output directory of each output format and # will distribute the generated files over these directories. Enabling this # option can be useful when feeding doxygen a huge amount of source files, where # putting all generated files in the same directory would otherwise causes # performance problems for the file system. # The default value is: NO. CREATE_SUBDIRS = NO # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII # characters to appear in the names of generated files. If set to NO, non-ASCII # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode # U+3044. # The default value is: NO. ALLOW_UNICODE_NAMES = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), # Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, # Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, # Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, # Ukrainian and Vietnamese. # The default value is: English. OUTPUT_LANGUAGE = English # The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all generated output in the proper direction. # Possible values are: None, LTR, RTL and Context. # The default value is: None. OUTPUT_TEXT_DIRECTION = None # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member # descriptions after the members that are listed in the file and class # documentation (similar to Javadoc). Set to NO to disable this. # The default value is: YES. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief # description of a member or function before the detailed description # # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. # The default value is: YES. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator that is # used to form the text in various listings. Each string in this list, if found # as the leading text of the brief description, will be stripped from the text # and the result, after processing the whole list, is used as the annotated # text. Otherwise, the brief description is used as-is. If left blank, the # following values are used ($name is automatically replaced with the name of # the entity):The $name class, The $name widget, The $name file, is, provides, # specifies, contains, represents, a, an and the. ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # doxygen will generate a detailed section even if there is only a brief # description. # The default value is: NO. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. # The default value is: NO. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path # before files name in the file list and in the header files. If set to NO the # shortest path that makes the file name unique will be used # The default value is: YES. FULL_PATH_NAMES = NO # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. # Stripping is only done if one of the specified strings matches the left-hand # part of the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the path to # strip. # # Note that you can specify absolute paths here, but also relative paths, which # will be relative from the directory where doxygen is started. # This tag requires that the tag FULL_PATH_NAMES is set to YES. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the # path mentioned in the documentation of a class, which tells the reader which # header file to include in order to use a class. If left blank only the name of # the header file containing the class definition is used. Otherwise one should # specify the list of include paths that are normally passed to the compiler # using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but # less readable) file names. This can be useful is your file systems doesn't # support long names like on DOS, Mac, or CD-ROM. # The default value is: NO. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the # first line (until the first dot) of a Javadoc-style comment as the brief # description. If set to NO, the Javadoc-style will behave just like regular Qt- # style comments (thus requiring an explicit @brief command for a brief # description.) # The default value is: NO. JAVADOC_AUTOBRIEF = NO # If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line # such as # /*************** # as being the beginning of a Javadoc-style comment "banner". If set to NO, the # Javadoc-style will behave just like regular comments and it will not be # interpreted by doxygen. # The default value is: NO. JAVADOC_BANNER = NO # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first # line (until the first dot) of a Qt-style comment as the brief description. If # set to NO, the Qt-style will behave just like regular Qt-style comments (thus # requiring an explicit \brief command for a brief description.) # The default value is: NO. QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a # multi-line C++ special comment block (i.e. a block of //! or /// comments) as # a brief description. This used to be the default behavior. The new default is # to treat a multi-line C++ comment block as a detailed description. Set this # tag to YES if you prefer the old behavior instead. # # Note that setting this tag to YES also means that rational rose comments are # not recognized any more. # The default value is: NO. MULTILINE_CPP_IS_BRIEF = NO # By default Python docstrings are displayed as preformatted text and doxygen's # special commands cannot be used. By setting PYTHON_DOCSTRING to NO the # doxygen's special commands can be used and the contents of the docstring # documentation blocks is shown as doxygen documentation. # The default value is: YES. PYTHON_DOCSTRING = YES # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the # documentation from any documented member that it re-implements. # The default value is: YES. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new # page for each member. If set to NO, the documentation of a member will be part # of the file/class/namespace that contains it. # The default value is: NO. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen # uses this value to replace tabs by spaces in code fragments. # Minimum value: 1, maximum value: 16, default value: 4. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that act as commands in # the documentation. An alias has the form: # name=value # For example adding # "sideeffect=@par Side Effects:\n" # will allow you to put the command \sideeffect (or @sideeffect) in the # documentation, which will result in a user-defined paragraph with heading # "Side Effects:". You can put \n's in the value part of an alias to insert # newlines (in the resulting output). You can put ^^ in the value part of an # alias to insert a newline as if a physical newline was in the original file. # When you need a literal { or } or , in the value part of an alias you have to # escape them by means of a backslash (\), this can lead to conflicts with the # commands \{ and \} for these it is advised to use the version @{ and @} or use # a double escape (\\{ and \\}) ALIASES = "briefreturn{1}=@brief \1 @return \1" \ "default_copy_constructor=Default copy constructor" \ "default_move_constructor=Default move constructor" \ "default_copy_assignment{1}=@brief Default copy assignment operator @return \1& Reference to the assigned object" \ "default_move_assignment{1}=@brief Default move assignment operator @return \1& Reference to the assigned object" # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. For # instance, some of the names that are used will be different. The list of all # members will be omitted, etc. # The default value is: NO. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or # Python sources only. Doxygen will then generate output that is more tailored # for that language. For instance, namespaces will be presented as packages, # qualified scopes will look different, etc. # The default value is: NO. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources. Doxygen will then generate output that is tailored for Fortran. # The default value is: NO. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for VHDL. # The default value is: NO. OPTIMIZE_OUTPUT_VHDL = NO # Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice # sources only. Doxygen will then generate output that is more tailored for that # language. For instance, namespaces will be presented as modules, types will be # separated into more groups, etc. # The default value is: NO. OPTIMIZE_OUTPUT_SLICE = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, and # language is one of the parsers supported by doxygen: IDL, Java, JavaScript, # Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL, # Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: # FortranFree, unknown formatted Fortran: Fortran. In the later case the parser # tries to guess whether the code is fixed or free formatted code, this is the # default for Fortran type files). For instance to make doxygen treat .inc files # as Fortran files (default is PHP), and .f files as C (default is Fortran), # use: inc=Fortran f=C. # # Note: For files without extension you can use no_extension as a placeholder. # # Note that for custom extensions you also need to set FILE_PATTERNS otherwise # the files are not read by doxygen. When specifying no_extension you should add # * to the FILE_PATTERNS. # # Note see also the list of default file extension mappings. EXTENSION_MAPPING = cu=C++ \ cuh=C++ # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments # according to the Markdown format, which allows for more readable # documentation. See https://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you can # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in # case of backward compatibilities issues. # The default value is: YES. MARKDOWN_SUPPORT = YES # When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up # to that level are automatically included in the table of contents, even if # they do not have an id attribute. # Note: This feature currently applies only to Markdown headings. # Minimum value: 0, maximum value: 99, default value: 5. # This tag requires that the tag MARKDOWN_SUPPORT is set to YES. TOC_INCLUDE_HEADINGS = 5 # When enabled doxygen tries to link words that correspond to documented # classes, or namespaces to their corresponding documentation. Such a link can # be prevented in individual cases by putting a % sign in front of the word or # globally by setting AUTOLINK_SUPPORT to NO. # The default value is: YES. AUTOLINK_SUPPORT = YES # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should set this # tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); # versus func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. # The default value is: NO. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. # The default value is: NO. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip (see: # https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen # will parse them like normal C++ but will assume all classes use public instead # of private inheritance when no explicit protection keyword is present. # The default value is: NO. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES will make # doxygen to replace the get and set methods by a property in the documentation. # This will only work if the methods are indeed getting or setting a simple # type. If this is not the case, or you want to show the methods anyway, you # should set this option to NO. # The default value is: YES. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. # The default value is: NO. DISTRIBUTE_GROUP_DOC = NO # If one adds a struct or class to a group and this option is enabled, then also # any nested class or struct is added to the same group. By default this option # is disabled and one has to add nested compounds explicitly via \ingroup. # The default value is: NO. GROUP_NESTED_COMPOUNDS = NO # Set the SUBGROUPING tag to YES to allow class member groups of the same type # (for instance a group of public functions) to be put as a subgroup of that # type (e.g. under the Public Functions section). Set it to NO to prevent # subgrouping. Alternatively, this can be done per class using the # \nosubgrouping command. # The default value is: YES. SUBGROUPING = YES # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions # are shown inside the group in which they are included (e.g. using \ingroup) # instead of on a separate page (for HTML and Man pages) or section (for LaTeX # and RTF). # # Note that this feature does not work in combination with # SEPARATE_MEMBER_PAGES. # The default value is: NO. INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions # with only public data fields or simple typedef fields will be shown inline in # the documentation of the scope in which they are defined (i.e. file, # namespace, or group documentation), provided this scope is documented. If set # to NO, structs, classes, and unions are shown on a separate page (for HTML and # Man pages) or section (for LaTeX and RTF). # The default value is: NO. INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or # enum is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically be # useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. # The default value is: NO. TYPEDEF_HIDES_STRUCT = NO # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This # cache is used to resolve symbols given their name and scope. Since this can be # an expensive process and often the same symbol appears multiple times in the # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small # doxygen will become slower. If the cache is too large, memory is wasted. The # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 # symbols. At the end of a run doxygen will report the cache usage and suggest # the optimal cache size from a speed point of view. # Minimum value: 0, maximum value: 9, default value: 0. LOOKUP_CACHE_SIZE = 0 # The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use # during processing. When set to 0 doxygen will based this on the number of # cores available in the system. You can set it explicitly to a value larger # than 0 to get more control over the balance between CPU load and processing # speed. At this moment only the input processing can be done using multiple # threads. Since this is still an experimental feature the default is set to 1, # which efficively disables parallel processing. Please report any issues you # encounter. Generating dot graphs in parallel is controlled by the # DOT_NUM_THREADS setting. # Minimum value: 0, maximum value: 32, default value: 1. NUM_PROC_THREADS = 1 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in # documentation are documented, even if no documentation was available. Private # class members and static file members will be hidden unless the # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. # Note: This will also disable the warnings about undocumented members that are # normally produced when WARNINGS is set to YES. # The default value is: NO. EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will # be included in the documentation. # The default value is: NO. EXTRACT_PRIVATE = NO # If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual # methods of a class will be included in the documentation. # The default value is: NO. EXTRACT_PRIV_VIRTUAL = NO # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal # scope will be included in the documentation. # The default value is: NO. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES, all static members of a file will be # included in the documentation. # The default value is: NO. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined # locally in source files will be included in the documentation. If set to NO, # only classes defined in header files are included. Does not have any effect # for Java sources. # The default value is: YES. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. If set to YES, local methods, # which are defined in the implementation section but not in the interface are # included in the documentation. If set to NO, only methods in the interface are # included. # The default value is: NO. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base name of # the file that contains the anonymous namespace. By default anonymous namespace # are hidden. # The default value is: NO. EXTRACT_ANON_NSPACES = NO # If this flag is set to YES, the name of an unnamed parameter in a declaration # will be determined by the corresponding definition. By default unnamed # parameters remain unnamed in the output. # The default value is: YES. RESOLVE_UNNAMED_PARAMS = YES # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all # undocumented members inside documented classes or files. If set to NO these # members will be included in the various overviews, but no documentation # section is generated. This option has no effect if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. If set # to NO, these classes will be included in the various overviews. This option # has no effect if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend # declarations. If set to NO, these declarations will be included in the # documentation. # The default value is: NO. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any # documentation blocks found inside the body of a function. If set to NO, these # blocks will be appended to the function's detailed documentation block. # The default value is: NO. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation that is typed after a # \internal command is included. If the tag is set to NO then the documentation # will be excluded. Set it to YES to include the internal documentation. # The default value is: NO. INTERNAL_DOCS = NO # With the correct setting of option CASE_SENSE_NAMES doxygen will better be # able to match the capabilities of the underlying filesystem. In case the # filesystem is case sensitive (i.e. it supports files in the same directory # whose names only differ in casing), the option must be set to YES to properly # deal with such files in case they appear in the input. For filesystems that # are not case sensitive the option should be be set to NO to properly deal with # output files written for symbols that only differ in casing, such as for two # classes, one named CLASS and the other named Class, and to also support # references to files without having to specify the exact matching casing. On # Windows (including Cygwin) and MacOS, users should typically set this option # to NO, whereas on Linux or other Unix flavors it should typically be set to # YES. # The default value is: system dependent. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with # their full class and namespace scopes in the documentation. If set to YES, the # scope will be hidden. # The default value is: NO. HIDE_SCOPE_NAMES = NO # If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will # append additional text to a page's title, such as Class Reference. If set to # YES the compound reference will be hidden. # The default value is: NO. HIDE_COMPOUND_REFERENCE= NO # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of # the files that are included by a file in the documentation of that file. # The default value is: YES. SHOW_INCLUDE_FILES = YES # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each # grouped member an include statement to the documentation, telling the reader # which file to include in order to use the member. # The default value is: NO. SHOW_GROUPED_MEMB_INC = NO # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include # files with double quotes in the documentation rather than with sharp brackets. # The default value is: NO. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the # documentation for inline members. # The default value is: YES. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the # (detailed) documentation of file and class members alphabetically by member # name. If set to NO, the members will appear in declaration order. # The default value is: YES. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief # descriptions of file, namespace and class members alphabetically by member # name. If set to NO, the members will appear in declaration order. Note that # this will also influence the order of the classes in the class list. # The default value is: NO. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the # (brief and detailed) documentation of class members so that constructors and # destructors are listed first. If set to NO the constructors will appear in the # respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. # Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief # member documentation. # Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting # detailed member documentation. # The default value is: NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy # of group names into alphabetical order. If set to NO the group names will # appear in their defined order. # The default value is: NO. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by # fully-qualified names, including namespaces. If set to NO, the class list will # be sorted only by class name, not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the alphabetical # list. # The default value is: NO. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper # type resolution of all parameters of a function it will reject a match between # the prototype and the implementation of a member function even if there is # only one candidate or it is obvious which candidate to choose by doing a # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still # accept a match between prototype and implementation in such cases. # The default value is: NO. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo # list. This list is created by putting \todo commands in the documentation. # The default value is: YES. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test # list. This list is created by putting \test commands in the documentation. # The default value is: YES. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug # list. This list is created by putting \bug commands in the documentation. # The default value is: YES. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) # the deprecated list. This list is created by putting \deprecated commands in # the documentation. # The default value is: YES. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional documentation # sections, marked by \if <section_label> ... \endif and \cond <section_label> # ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the # initial value of a variable or macro / define can have for it to appear in the # documentation. If the initializer consists of more lines than specified here # it will be hidden. Use a value of 0 to hide initializers completely. The # appearance of the value of individual variables and macros / defines can be # controlled using \showinitializer or \hideinitializer command in the # documentation regardless of this setting. # Minimum value: 0, maximum value: 10000, default value: 30. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at # the bottom of the documentation of classes and structs. If set to YES, the # list will mention the files that were used to generate the documentation. # The default value is: YES. SHOW_USED_FILES = YES # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This # will remove the Files entry from the Quick Index and from the Folder Tree View # (if specified). # The default value is: YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces # page. This will remove the Namespaces entry from the Quick Index and from the # Folder Tree View (if specified). # The default value is: YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command command input-file, where command is the value of the # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided # by doxygen. Whatever the program writes to standard output is used as the file # version. For an example see the documentation. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. You can # optionally specify a file name after the option, if omitted DoxygenLayout.xml # will be used as the name of the layout file. # # Note that if you run doxygen from a directory containing a file called # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE # tag is left empty. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files containing # the reference definitions. This must be a list of .bib files. The .bib # extension is automatically appended if omitted. This requires the bibtex tool # to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. # For LaTeX the style of the bibliography can be controlled using # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the # search path. See also \cite for info how to create references. CITE_BIB_FILES = #--------------------------------------------------------------------------- # Configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated to # standard output by doxygen. If QUIET is set to YES this implies that the # messages are off. # The default value is: NO. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated to standard error (stderr) by doxygen. If WARNINGS is set to YES # this implies that the warnings are on. # # Tip: Turn warnings on while writing the documentation. # The default value is: YES. WARNINGS = YES # If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag # will automatically be disabled. # The default value is: YES. WARN_IF_UNDOCUMENTED = YES # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some parameters # in a documented function, or documenting parameters that don't exist or using # markup commands wrongly. # The default value is: YES. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that # are documented, but have no documentation for their parameters or return # value. If set to NO, doxygen will only warn about wrong or incomplete # parameter documentation, but not about the absence of documentation. If # EXTRACT_ALL is set to YES then this flag will automatically be disabled. # The default value is: NO. WARN_NO_PARAMDOC = YES # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when # a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS # then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but # at the end of the doxygen process doxygen will return with a non-zero status. # Possible values are: NO, YES and FAIL_ON_WARNINGS. # The default value is: NO. WARN_AS_ERROR = NO # The WARN_FORMAT tag determines the format of the warning messages that doxygen # can produce. The string should contain the $file, $line, and $text tags, which # will be replaced by the file and line number from which the warning originated # and the warning text. Optionally the format may contain $version, which will # be replaced by the version of the file (if it could be obtained via # FILE_VERSION_FILTER) # The default value is: $file:$line: $text. WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning and error # messages should be written. If left blank the output is written to standard # error (stderr). WARN_LOGFILE = #--------------------------------------------------------------------------- # Configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag is used to specify the files and/or directories that contain # documented source files. You may enter file names like myfile.cpp or # directories like /usr/src/myproject. Separate the files or directories with # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. # Need to specify the error.hpp file explicitly because it is excluded by the # EXCLUDE_PATTERNS below. INPUT = main_page.md \ ../include \ ../include/rmm/detail/error.hpp # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # libiconv (or the iconv built into libc) for the transcoding. See the libiconv # documentation (see: # https://www.gnu.org/software/libiconv/) for the list of possible encodings. # The default value is: UTF-8. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and # *.h) to filter out the source-files in the directories. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # read by doxygen. # # Note the list of default checked file patterns might differ from the list of # default file extension mappings. # # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, # *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, # *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), # *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, *.vhdl, # *.ucf, *.qsf and *.ice. FILE_PATTERNS = *.c \ *.cpp \ *.h \ *.hpp \ *.cu \ *.cuh # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well. # The default value is: NO. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. # # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. # The default value is: NO. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. # # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories for example use the pattern */test/* EXCLUDE_PATTERNS = */detail/* # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test # # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories use the pattern */test/* EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or directories # that contain example code fragments that are included (see the \include # command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and # *.h) to filter out the source-files in the directories. If left blank all # files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude commands # irrespective of the value of the RECURSIVE tag. # The default value is: NO. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or directories # that contain images that are to be included in the documentation (see the # \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command: # # <filter> <input-file> # # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the # name of an input file. Doxygen will then use the output that the filter # program writes to standard output. If FILTER_PATTERNS is specified, this tag # will be ignored. # # Note that the filter must not add or remove lines; it is applied before the # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: pattern=filter # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how # filters are used. If the FILTER_PATTERNS tag is empty or if none of the # patterns match the file name, INPUT_FILTER is applied. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will also be used to filter the input files that are used for # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). # The default value is: NO. FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and # it is also possible to disable source filtering for a specific pattern using # *.ext= (so without naming a filter). # This tag requires that the tag FILTER_SOURCE_FILES is set to YES. FILTER_SOURCE_PATTERNS = # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page # (index.html). This can be useful if you have a project on for instance GitHub # and want to reuse the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = main_page.md #--------------------------------------------------------------------------- # Configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will be # generated. Documented entities will be cross-referenced with these sources. # # Note: To get rid of all source code in the generated output, make sure that # also VERBATIM_HEADERS is set to NO. # The default value is: NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body of functions, # classes and enums directly into the documentation. # The default value is: NO. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any # special comment blocks from generated source code fragments. Normal C, C++ and # Fortran comments will always remain visible. # The default value is: YES. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES then for each documented # entity all documented functions referencing it will be listed. # The default value is: NO. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES then for each documented function # all documented entities called/used by that function will be listed. # The default value is: NO. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set # to YES then the hyperlinks from functions in REFERENCES_RELATION and # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will # link to the documentation. # The default value is: YES. REFERENCES_LINK_SOURCE = YES # If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the # source code will show a tooltip with additional information such as prototype, # brief description and links to the definition and documentation. Since this # will make the HTML file larger and loading of large files a bit slower, you # can opt to disable this feature. # The default value is: YES. # This tag requires that the tag SOURCE_BROWSER is set to YES. SOURCE_TOOLTIPS = YES # If the USE_HTAGS tag is set to YES then the references to source code will # point to the HTML generated by the htags(1) tool instead of doxygen built-in # source browser. The htags tool is part of GNU's global source tagging system # (see https://www.gnu.org/software/global/global.html). You will need version # 4.8.6 or higher. # # To use it do the following: # - Install the latest version of global # - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file # - Make sure the INPUT points to the root of the source tree # - Run doxygen as normal # # Doxygen will invoke htags (and that will in turn invoke gtags), so these # tools must be available from the command line (i.e. in the search path). # # The result: instead of the source browser generated by doxygen, the links to # source code will now point to the output of htags. # The default value is: NO. # This tag requires that the tag SOURCE_BROWSER is set to YES. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a # verbatim copy of the header file for each class for which an include is # specified. Set to NO to disable this. # See also: Section \class. # The default value is: YES. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # Configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all # compounds will be generated. Enable this if the project contains a lot of # classes, structs, unions or interfaces. # The default value is: YES. ALPHABETICAL_INDEX = YES # In case all classes in a project start with a common prefix, all classes will # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag # can be used to specify a prefix (or a list of prefixes) that should be ignored # while generating the index headers. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. IGNORE_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output # The default value is: YES. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of # it. # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). # The default value is: .html. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a user-defined HTML header file for # each generated HTML page. If the tag is left blank doxygen will generate a # standard header. # # To get valid HTML the header file that includes any scripts and style sheets # that doxygen needs, which is dependent on the configuration options used (e.g. # the setting GENERATE_TREEVIEW). It is highly recommended to start with a # default header using # doxygen -w html new_header.html new_footer.html new_stylesheet.css # YourConfigFile # and then modify the file new_header.html. See also section "Doxygen usage" # for information on how to generate the default header that doxygen normally # uses. # Note: The header is subject to change so you typically have to regenerate the # default header when upgrading to a newer version of doxygen. For a description # of the possible markers and block names see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_HEADER = header.html # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each # generated HTML page. If the tag is left blank doxygen will generate a standard # footer. See HTML_HEADER for more information on how to generate a default # footer and what special commands can be used inside the footer. See also # section "Doxygen usage" for information on how to generate the default footer # that doxygen normally uses. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style # sheet that is used by each HTML page. It can be used to fine-tune the look of # the HTML output. If left blank doxygen will generate a default style sheet. # See also section "Doxygen usage" for information on how to generate the style # sheet that doxygen normally uses. # Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as # it is more robust and this tag (HTML_STYLESHEET) will in the future become # obsolete. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined # cascading style sheets that are included after the standard style sheets # created by doxygen. Using this option one can overrule certain style aspects. # This is preferred over using HTML_STYLESHEET since it does not replace the # standard style sheet and is therefore more robust against future updates. # Doxygen will copy the style sheet files to the output directory. # Note: The order of the extra style sheet files is of importance (e.g. the last # style sheet in the list overrules the setting of the previous ones in the # list). For an example see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_STYLESHEET = # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that the # files will be copied as-is; there are no commands or markers available. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen # will adjust the colors in the style sheet and background images according to # this color. Hue is specified as an angle on a colorwheel, see # https://en.wikipedia.org/wiki/Hue for more information. For instance the value # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 # purple, and 360 is red again. # Minimum value: 0, maximum value: 359, default value: 220. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors # in the HTML output. For a value of 0 the output will use grayscales only. A # value of 255 will produce the most vivid colors. # Minimum value: 0, maximum value: 255, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the # luminance component of the colors in the HTML output. Values below 100 # gradually make the output lighter, whereas values above 100 make the output # darker. The value divided by 100 is the actual gamma applied, so 80 represents # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not # change the gamma. # Minimum value: 40, maximum value: 240, default value: 80. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting this # to YES can help to show when doxygen was last run and thus if the # documentation is up to date. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_TIMESTAMP = NO # If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML # documentation will contain a main index with vertical navigation menus that # are dynamically created via JavaScript. If disabled, the navigation index will # consists of multiple levels of tabs that are statically embedded in every HTML # page. Disable this option to support browsers that do not have JavaScript, # like the Qt help browser. # The default value is: YES. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_DYNAMIC_MENUS = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_DYNAMIC_SECTIONS = NO # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries # shown in the various tree structured indices initially; the user can expand # and collapse entries dynamically later on. Doxygen will expand the tree to # such a level that at most the specified number of entries are visible (unless # a fully collapsed tree already exceeds this amount). So setting the number of # entries 1 will produce a full collapsed tree by default. 0 is a special value # representing an infinite number of entries and will result in a full expanded # tree by default. # Minimum value: 0, maximum value: 9999, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files will be # generated that can be used as input for Apple's Xcode 3 integrated development # environment (see: # https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To # create a documentation set, doxygen will generate a Makefile in the HTML # output directory. Running make will produce the docset in that directory and # running make install will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at # startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy # genXcode/_index.html for more information. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_DOCSET = NO # This tag determines the name of the docset feed. A documentation feed provides # an umbrella under which multiple documentation sets from a single provider # (such as a company or product suite) can be grouped. # The default value is: Doxygen generated docs. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_FEEDNAME = "Doxygen generated docs" # This tag specifies a string that should uniquely identify the documentation # set bundle. This should be a reverse domain-name style string, e.g. # com.mycompany.MyDocSet. Doxygen will append .docset to the name. # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_BUNDLE_ID = org.doxygen.Project # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify # the documentation publisher. This should be a reverse domain-name style # string, e.g. com.mycompany.MyDocSet.documentation. # The default value is: org.doxygen.Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. # The default value is: Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three # additional HTML index files: index.hhp, index.hhc, and index.hhk. The # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop # (see: # https://www.microsoft.com/en-us/download/details.aspx?id=21138) on Windows. # # The HTML Help Workshop contains a compiler that can convert all HTML output # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML # files are now used as the Windows 98 help format, and will replace the old # Windows help format (.hlp) on all Windows platforms in the future. Compressed # HTML files also contain an index, a table of contents, and you can search for # words in the documentation. The HTML workshop also contains a viewer for # compressed HTML files. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_HTMLHELP = NO # The CHM_FILE tag can be used to specify the file name of the resulting .chm # file. You can add a path in front of the file if the result should not be # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. CHM_FILE = # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, # doxygen will try to run the HTML help compiler on the generated index.hhp. # The file has to be specified with full path. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. HHC_LOCATION = # The GENERATE_CHI flag controls if a separate .chi index file is generated # (YES) or that it should be included in the main .chm file (NO). # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. GENERATE_CHI = NO # The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) # and project file content. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. CHM_INDEX_ENCODING = # The BINARY_TOC flag controls whether a binary table of contents is generated # (YES) or a normal table of contents (NO) in the .chm file. Furthermore it # enables the Previous and Next buttons. # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members to # the table of contents of the HTML help documentation and to the tree view. # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help # (.qch) of the generated HTML documentation. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify # the file name of the resulting .qch file. The path specified is relative to # the HTML output folder. # This tag requires that the tag GENERATE_QHP is set to YES. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help # Project output. For more information please see Qt Help Project / Namespace # (see: # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_QHP is set to YES. QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt # Help Project output. For more information please see Qt Help Project / Virtual # Folders (see: # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). # The default value is: doc. # This tag requires that the tag GENERATE_QHP is set to YES. QHP_VIRTUAL_FOLDER = doc # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom # filter to add. For more information please see Qt Help Project / Custom # Filters (see: # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_NAME = # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see Qt Help Project / Custom # Filters (see: # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's filter section matches. Qt Help Project / Filter Attributes (see: # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_SECT_FILTER_ATTRS = # The QHG_LOCATION tag can be used to specify the location (absolute path # including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to # run qhelpgenerator on the generated .qhp file. # This tag requires that the tag GENERATE_QHP is set to YES. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be # generated, together with the HTML files, they form an Eclipse help plugin. To # install this plugin and make it available under the help contents menu in # Eclipse, the contents of the directory containing the HTML and XML files needs # to be copied into the plugins directory of eclipse. The name of the directory # within the plugins directory should be the same as the ECLIPSE_DOC_ID value. # After copying Eclipse needs to be restarted before the help appears. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_ECLIPSEHELP = NO # A unique identifier for the Eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have this # name. Each documentation set should have its own identifier. # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. ECLIPSE_DOC_ID = org.doxygen.Project # If you want full control over the layout of the generated HTML pages it might # be necessary to disable the index and replace it with your own. The # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top # of each HTML page. A value of NO enables the index and the value YES disables # it. Since the tabs in the index contain the same information as the navigation # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. DISABLE_INDEX = NO # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. If the tag # value is set to YES, a side panel will be generated containing a tree-like # index structure (just like the one that is generated for HTML Help). For this # to work a browser that supports JavaScript, DHTML, CSS and frames is required # (i.e. any modern browser). Windows users are probably better off using the # HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can # further fine-tune the look of the index. As an example, the default style # sheet generated by doxygen has an example that shows how to put an image at # the root of the tree instead of the PROJECT_NAME. Since the tree basically has # the same information as the tab index, you could consider setting # DISABLE_INDEX to YES when enabling this option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_TREEVIEW = NO # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that # doxygen will group on one line in the generated HTML documentation. # # Note that a value of 0 will completely suppress the enum values from appearing # in the overview section. # Minimum value: 0, maximum value: 20, default value: 4. # This tag requires that the tag GENERATE_HTML is set to YES. ENUM_VALUES_PER_LINE = 4 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used # to set the initial width (in pixels) of the frame in which the tree is shown. # Minimum value: 0, maximum value: 1500, default value: 250. # This tag requires that the tag GENERATE_HTML is set to YES. TREEVIEW_WIDTH = 250 # If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to # external symbols imported via tag files in a separate window. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. EXT_LINKS_IN_WINDOW = NO # If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg # tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see # https://inkscape.org) to generate formulas as SVG images instead of PNGs for # the HTML output. These images will generally look nicer at scaled resolutions. # Possible values are: png (the default) and svg (looks nicer but requires the # pdf2svg or inkscape tool). # The default value is: png. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FORMULA_FORMAT = png # Use this tag to change the font size of LaTeX formulas included as images in # the HTML documentation. When you change the font size after a successful # doxygen run you need to manually remove any form_*.png images from the HTML # output directory to force them to be regenerated. # Minimum value: 8, maximum value: 50, default value: 10. # This tag requires that the tag GENERATE_HTML is set to YES. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANSPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are not # supported properly for IE 6.0, but are supported on all modern browsers. # # Note that when changing this option you need to delete any form_*.png files in # the HTML output directory before the changes have effect. # The default value is: YES. # This tag requires that the tag GENERATE_HTML is set to YES. FORMULA_TRANSPARENT = YES # The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands # to create new LaTeX commands to be used in formulas as building blocks. See # the section "Including formulas" for details. FORMULA_MACROFILE = # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see # https://www.mathjax.org) which uses client side JavaScript for the rendering # instead of using pre-rendered bitmaps. Use this if you do not have LaTeX # installed or if you want to formulas look prettier in the HTML output. When # enabled you may also need to install MathJax separately and configure the path # to it using the MATHJAX_RELPATH option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # the MathJax output. See the MathJax site (see: # http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. # Possible values are: HTML-CSS (which is slower, but has the best # compatibility), NativeMML (i.e. MathML) and SVG. # The default value is: HTML-CSS. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_FORMAT = HTML-CSS # When MathJax is enabled you need to specify the location relative to the HTML # output directory using the MATHJAX_RELPATH option. The destination directory # should contain the MathJax.js script. For instance, if the mathjax directory # is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax # Content Delivery Network so you can quickly see the result without installing # MathJax. However, it is strongly recommended to install a local copy of # MathJax from https://www.mathjax.org before deployment. # The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax # extension names that should be enabled during MathJax rendering. For example # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_EXTENSIONS = # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces # of code that will be used on startup of the MathJax code. See the MathJax site # (see: # http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an # example see the documentation. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_CODEFILE = # When the SEARCHENGINE tag is enabled doxygen will generate a search box for # the HTML output. The underlying search engine uses javascript and DHTML and # should work on any modern browser. Note that when using HTML help # (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) # there is already a search function so this one should typically be disabled. # For large projects the javascript based search engine can be slow, then # enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to # search using the keyboard; to jump to the search box use <access key> + S # (what the <access key> is depends on the OS and browser, but it is typically # <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down # key> to jump into the search results window, the results can be navigated # using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel # the search. The filter options can be selected when the cursor is inside the # search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> # to select a filter and <Enter> or <escape> to activate or cancel the filter # option. # The default value is: YES. # This tag requires that the tag GENERATE_HTML is set to YES. SEARCHENGINE = YES # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a web server instead of a web client using JavaScript. There # are two flavors of web server based searching depending on the EXTERNAL_SEARCH # setting. When disabled, doxygen will generate a PHP script for searching and # an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing # and searching needs to be provided by external tools. See the section # "External Indexing and Searching" for details. # The default value is: NO. # This tag requires that the tag SEARCHENGINE is set to YES. SERVER_BASED_SEARCH = NO # When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP # script for searching. Instead the search results are written to an XML file # which needs to be processed by an external indexer. Doxygen will invoke an # external search engine pointed to by the SEARCHENGINE_URL option to obtain the # search results. # # Doxygen ships with an example indexer (doxyindexer) and search engine # (doxysearch.cgi) which are based on the open source search engine library # Xapian (see: # https://xapian.org/). # # See the section "External Indexing and Searching" for details. # The default value is: NO. # This tag requires that the tag SEARCHENGINE is set to YES. EXTERNAL_SEARCH = NO # The SEARCHENGINE_URL should point to a search engine hosted by a web server # which will return the search results when EXTERNAL_SEARCH is enabled. # # Doxygen ships with an example indexer (doxyindexer) and search engine # (doxysearch.cgi) which are based on the open source search engine library # Xapian (see: # https://xapian.org/). See the section "External Indexing and Searching" for # details. # This tag requires that the tag SEARCHENGINE is set to YES. SEARCHENGINE_URL = # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed # search data is written to a file for indexing by an external tool. With the # SEARCHDATA_FILE tag the name of this file can be specified. # The default file is: searchdata.xml. # This tag requires that the tag SEARCHENGINE is set to YES. SEARCHDATA_FILE = searchdata.xml # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple # projects and redirect the results back to the right project. # This tag requires that the tag SEARCHENGINE is set to YES. EXTERNAL_SEARCH_ID = # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen # projects other than the one defined by this configuration file, but that are # all added to the same external search index. Each project needs to have a # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of # to a relative location where the documentation can be found. The format is: # EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... # This tag requires that the tag SEARCHENGINE is set to YES. EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # Configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. # The default value is: YES. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of # it. # The default directory is: latex. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. # # Note that when not enabling USE_PDFLATEX the default is latex when enabling # USE_PDFLATEX the default is pdflatex and when in the later case latex is # chosen this is overwritten by pdflatex. For specific output languages the # default can have been set differently, this depends on the implementation of # the output language. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate # index for LaTeX. # Note: This tag is used in the Makefile / make.bat. # See also: LATEX_MAKEINDEX_CMD for the part in the generated output file # (.tex). # The default file is: makeindex. # This tag requires that the tag GENERATE_LATEX is set to YES. MAKEINDEX_CMD_NAME = makeindex # The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to # generate index for LaTeX. In case there is no backslash (\) as first character # it will be automatically added in the LaTeX code. # Note: This tag is used in the generated output file (.tex). # See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat. # The default value is: makeindex. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_MAKEINDEX_CMD = makeindex # If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX # documents. This may be useful for small projects and may help to save some # trees in general. # The default value is: NO. # This tag requires that the tag GENERATE_LATEX is set to YES. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used by the # printer. # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x # 14 inches) and executive (7.25 x 10.5 inches). # The default value is: a4. # This tag requires that the tag GENERATE_LATEX is set to YES. PAPER_TYPE = a4 # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names # that should be included in the LaTeX output. The package can be specified just # by its name or with the correct syntax as to be used with the LaTeX # \usepackage command. To get the times font for instance you can specify : # EXTRA_PACKAGES=times or EXTRA_PACKAGES={times} # To use the option intlimits with the amsmath package you can specify: # EXTRA_PACKAGES=[intlimits]{amsmath} # If left blank no extra packages will be included. # This tag requires that the tag GENERATE_LATEX is set to YES. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for the # generated LaTeX document. The header should contain everything until the first # chapter. If it is left blank doxygen will generate a standard header. See # section "Doxygen usage" for information on how to let doxygen write the # default header to a separate file. # # Note: Only use a user-defined header if you know what you are doing! The # following commands have a special meaning inside the header: $title, # $datetime, $date, $doxygenversion, $projectname, $projectnumber, # $projectbrief, $projectlogo. Doxygen will replace $title with the empty # string, for the replacement values of the other commands the user is referred # to HTML_HEADER. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_HEADER = # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the # generated LaTeX document. The footer should contain everything after the last # chapter. If it is left blank doxygen will generate a standard footer. See # LATEX_HEADER for more information on how to generate a default footer and what # special commands can be used inside the footer. # # Note: Only use a user-defined footer if you know what you are doing! # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_FOOTER = # The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined # LaTeX style sheets that are included after the standard style sheets created # by doxygen. Using this option one can overrule certain style aspects. Doxygen # will copy the style sheet files to the output directory. # Note: The order of the extra style sheet files is of importance (e.g. the last # style sheet in the list overrules the setting of the previous ones in the # list). # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_EXTRA_STYLESHEET = # The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the LATEX_OUTPUT output # directory. Note that the files will be copied as-is; there are no commands or # markers available. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_EXTRA_FILES = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is # prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will # contain links (just like the HTML output) instead of page references. This # makes the output suitable for online browsing using a PDF viewer. # The default value is: YES. # This tag requires that the tag GENERATE_LATEX is set to YES. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, doxygen will use the engine as # specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX # files. Set this option to YES, to get a higher quality PDF documentation. # # See also section LATEX_CMD_NAME for selecting the engine. # The default value is: YES. # This tag requires that the tag GENERATE_LATEX is set to YES. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode # command to the generated LaTeX files. This will instruct LaTeX to keep running # if errors occur, instead of asking the user for help. This option is also used # when generating formulas in HTML. # The default value is: NO. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_BATCHMODE = NO # If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the # index chapters (such as File Index, Compound Index, etc.) in the output. # The default value is: NO. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_HIDE_INDICES = NO # If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source # code with syntax highlighting in the LaTeX output. # # Note that which sources are shown also depends on other settings such as # SOURCE_BROWSER. # The default value is: NO. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_SOURCE_CODE = NO # The LATEX_BIB_STYLE tag can be used to specify the style to use for the # bibliography, e.g. plainnat, or ieeetr. See # https://en.wikipedia.org/wiki/BibTeX and \cite for more info. # The default value is: plain. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_BIB_STYLE = plain # If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated # page will contain the date and time when the page was generated. Setting this # to NO can help when comparing the output of multiple runs. # The default value is: NO. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_TIMESTAMP = NO # The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute) # path from which the emoji images will be read. If a relative path is entered, # it will be relative to the LATEX_OUTPUT directory. If left blank the # LATEX_OUTPUT directory will be used. # This tag requires that the tag GENERATE_LATEX is set to YES. LATEX_EMOJI_DIRECTORY = #--------------------------------------------------------------------------- # Configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The # RTF output is optimized for Word 97 and may not look too pretty with other RTF # readers/editors. # The default value is: NO. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of # it. # The default directory is: rtf. # This tag requires that the tag GENERATE_RTF is set to YES. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF # documents. This may be useful for small projects and may help to save some # trees in general. # The default value is: NO. # This tag requires that the tag GENERATE_RTF is set to YES. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will # contain hyperlink fields. The RTF file will contain links (just like the HTML # output) instead of page references. This makes the output suitable for online # browsing using Word or some other Word compatible readers that support those # fields. # # Note: WordPad (write) and others do not support links. # The default value is: NO. # This tag requires that the tag GENERATE_RTF is set to YES. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # configuration file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. # # See also section "Doxygen usage" for information on how to generate the # default style sheet that doxygen normally uses. # This tag requires that the tag GENERATE_RTF is set to YES. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an RTF document. Syntax is # similar to doxygen's configuration file. A template extensions file can be # generated using doxygen -e rtf extensionFile. # This tag requires that the tag GENERATE_RTF is set to YES. RTF_EXTENSIONS_FILE = # If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code # with syntax highlighting in the RTF output. # # Note that which sources are shown also depends on other settings such as # SOURCE_BROWSER. # The default value is: NO. # This tag requires that the tag GENERATE_RTF is set to YES. RTF_SOURCE_CODE = NO #--------------------------------------------------------------------------- # Configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for # classes and files. # The default value is: NO. GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. If a # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of # it. A directory man3 will be created inside the directory specified by # MAN_OUTPUT. # The default directory is: man. # This tag requires that the tag GENERATE_MAN is set to YES. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to the generated # man pages. In case the manual section does not start with a number, the number # 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is # optional. # The default value is: .3. # This tag requires that the tag GENERATE_MAN is set to YES. MAN_EXTENSION = .3 # The MAN_SUBDIR tag determines the name of the directory created within # MAN_OUTPUT in which the man pages are placed. If defaults to man followed by # MAN_EXTENSION with the initial . removed. # This tag requires that the tag GENERATE_MAN is set to YES. MAN_SUBDIR = # If the MAN_LINKS tag is set to YES and doxygen generates man output, then it # will generate one additional man file for each entity documented in the real # man page(s). These additional files only source the real man page, but without # them the man command would be unable to find the correct page. # The default value is: NO. # This tag requires that the tag GENERATE_MAN is set to YES. MAN_LINKS = NO #--------------------------------------------------------------------------- # Configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that # captures the structure of the code including all documentation. # The default value is: NO. GENERATE_XML = YES # The XML_OUTPUT tag is used to specify where the XML pages will be put. If a # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of # it. # The default directory is: xml. # This tag requires that the tag GENERATE_XML is set to YES. XML_OUTPUT = xml # If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program # listings (including syntax highlighting and cross-referencing information) to # the XML output. Note that enabling this will significantly increase the size # of the XML output. # The default value is: YES. # This tag requires that the tag GENERATE_XML is set to YES. XML_PROGRAMLISTING = YES # If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include # namespace members in file scope as well, matching the HTML output. # The default value is: NO. # This tag requires that the tag GENERATE_XML is set to YES. XML_NS_MEMB_FILE_SCOPE = NO #--------------------------------------------------------------------------- # Configuration options related to the DOCBOOK output #--------------------------------------------------------------------------- # If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files # that can be used to generate PDF. # The default value is: NO. GENERATE_DOCBOOK = NO # The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be put in # front of it. # The default directory is: docbook. # This tag requires that the tag GENERATE_DOCBOOK is set to YES. DOCBOOK_OUTPUT = docbook # If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the # program listings (including syntax highlighting and cross-referencing # information) to the DOCBOOK output. Note that enabling this will significantly # increase the size of the DOCBOOK output. # The default value is: NO. # This tag requires that the tag GENERATE_DOCBOOK is set to YES. DOCBOOK_PROGRAMLISTING = NO #--------------------------------------------------------------------------- # Configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an # AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures # the structure of the code including all documentation. Note that this feature # is still experimental and incomplete at the moment. # The default value is: NO. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # Configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module # file that captures the structure of the code including all documentation. # # Note that this feature is still experimental and incomplete at the moment. # The default value is: NO. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary # Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI # output from the Perl module output. # The default value is: NO. # This tag requires that the tag GENERATE_PERLMOD is set to YES. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely # formatted so it can be parsed by a human reader. This is useful if you want to # understand what is going on. On the other hand, if this tag is set to NO, the # size of the Perl module output will be much smaller and Perl will parse it # just the same. # The default value is: YES. # This tag requires that the tag GENERATE_PERLMOD is set to YES. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file are # prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful # so different doxyrules.make files included by the same Makefile don't # overwrite each other's variables. # This tag requires that the tag GENERATE_PERLMOD is set to YES. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all # C-preprocessor directives found in the sources and include files. # The default value is: YES. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names # in the source code. If set to NO, only conditional compilation will be # performed. Macro expansion can be done in a controlled way by setting # EXPAND_ONLY_PREDEF to YES. # The default value is: NO. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then # the macro expansion is limited to the macros specified with the PREDEFINED and # EXPAND_AS_DEFINED tags. # The default value is: NO. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES, the include files in the # INCLUDE_PATH will be searched if a #include is found. # The default value is: YES. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by the # preprocessor. # This tag requires that the tag SEARCH_INCLUDES is set to YES. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will be # used. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that are # defined before the preprocessor is started (similar to the -D option of e.g. # gcc). The argument of the tag is a list of macros of the form: name or # name=definition (no spaces). If the definition and the "=" are omitted, "=1" # is assumed. To prevent a macro definition from being undefined via #undef or # recursively expanded use the := operator instead of the = operator. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this # tag can be used to specify a list of macro names that should be expanded. The # macro definition that is found in the sources will be used. Use the PREDEFINED # tag if you want to use a different macro definition that overrules the # definition found in the source code. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will # remove all references to function-like macros that are alone on a line, have # an all uppercase name, and do not end with a semicolon. Such function macros # are typically used for boiler-plate code, and will confuse the parser if not # removed. # The default value is: YES. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration options related to external references #--------------------------------------------------------------------------- # The TAGFILES tag can be used to specify one or more tag files. For each tag # file the location of the external documentation should be added. The format of # a tag file without this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where loc1 and loc2 can be relative or absolute paths or URLs. See the # section "Linking to external documentation" for more information about the use # of tag files. # Note: Each tag file must have a unique name (where the name does NOT include # the path). If a tag file is not located in the directory in which doxygen is # run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create a # tag file that is based on the input files it reads. See section "Linking to # external documentation" for more information about the usage of tag files. GENERATE_TAGFILE = html/rmm.tag # If the ALLEXTERNALS tag is set to YES, all external class will be listed in # the class index. If set to NO, only the inherited external classes will be # listed. # The default value is: NO. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed # in the modules index. If set to NO, only the current project's groups will be # listed. # The default value is: YES. EXTERNAL_GROUPS = YES # If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in # the related pages index. If set to NO, only the current project's pages will # be listed. # The default value is: YES. EXTERNAL_PAGES = YES #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram # (in HTML and LaTeX) for classes with base or super classes. Setting the tag to # NO turns the diagrams off. Note that this option also works with HAVE_DOT # disabled, but it is recommended to install and use dot, since it yields more # powerful graphs. # The default value is: YES. CLASS_DIAGRAMS = YES # You can include diagrams made with dia in doxygen documentation. Doxygen will # then run dia to produce the diagram and insert it in the documentation. The # DIA_PATH tag allows you to specify the directory where the dia binary resides. # If left empty dia is assumed to be found in the default search path. DIA_PATH = # If set to YES the inheritance and collaboration graphs will hide inheritance # and usage relations if the target is undocumented or is not a class. # The default value is: YES. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz (see: # http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent # Bell Labs. The other options in this section have no effect if this option is # set to NO # The default value is: NO. HAVE_DOT = YES # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed # to run in parallel. When set to 0 doxygen will base this on the number of # processors available in the system. You can set it explicitly to a value # larger than 0 to get control over the balance between CPU load and processing # speed. # Minimum value: 0, maximum value: 32, default value: 0. # This tag requires that the tag HAVE_DOT is set to YES. DOT_NUM_THREADS = 0 # When you want a differently looking font in the dot files that doxygen # generates you can specify the font name using DOT_FONTNAME. You need to make # sure dot is able to find the font, which can be done by putting it in a # standard location or by setting the DOTFONTPATH environment variable or by # setting DOT_FONTPATH to the directory containing the font. # The default value is: Helvetica. # This tag requires that the tag HAVE_DOT is set to YES. DOT_FONTNAME = Helvetica # The DOT_FONTSIZE tag can be used to set the size (in points) of the font of # dot graphs. # Minimum value: 4, maximum value: 24, default value: 10. # This tag requires that the tag HAVE_DOT is set to YES. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the default font as specified with # DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set # the path where dot can find it using this tag. # This tag requires that the tag HAVE_DOT is set to YES. DOT_FONTPATH = # If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for # each documented class showing the direct and indirect inheritance relations. # Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a # graph for each documented class showing the direct and indirect implementation # dependencies (inheritance, containment, and class references variables) of the # class with other documented classes. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for # groups, showing the direct groups dependencies. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES, doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. UML_LOOK = NO # If the UML_LOOK tag is enabled, the fields and methods are shown inside the # class node. If there are many fields or methods and many nodes the graph may # become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the # number of items for each type to make the size more manageable. Set this to 0 # for no limit. Note that the threshold may be exceeded by 50% before the limit # is enforced. So when you set the threshold to 10, up to 15 fields may appear, # but if the number exceeds 15, the total amount of fields shown is limited to # 10. # Minimum value: 0, maximum value: 100, default value: 10. # This tag requires that the tag UML_LOOK is set to YES. UML_LIMIT_NUM_FIELDS = 10 # If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and # methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS # tag is set to YES, doxygen will add type and arguments for attributes and # methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen # will not generate fields with class member information in the UML graphs. The # class diagrams will look similar to the default class diagrams but using UML # notation for the relationships. # Possible values are: NO, YES and NONE. # The default value is: NO. # This tag requires that the tag UML_LOOK is set to YES. DOT_UML_DETAILS = NO # The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters # to display on a single line. If the actual line length exceeds this threshold # significantly it will wrapped across multiple lines. Some heuristics are apply # to avoid ugly line breaks. # Minimum value: 0, maximum value: 1000, default value: 17. # This tag requires that the tag HAVE_DOT is set to YES. DOT_WRAP_THRESHOLD = 17 # If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and # collaboration graphs will show the relations between templates and their # instances. # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. TEMPLATE_RELATIONS = NO # If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to # YES then doxygen will generate a graph for each documented file showing the # direct and indirect include dependencies of the file with other documented # files. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. INCLUDE_GRAPH = YES # If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are # set to YES then doxygen will generate a graph for each documented file showing # the direct and indirect include dependencies of the file with other documented # files. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH tag is set to YES then doxygen will generate a call # dependency graph for every global function or class method. # # Note that enabling this option will significantly increase the time of a run. # So in most cases it will be better to enable call graphs for selected # functions only using the \callgraph command. Disabling a call graph can be # accomplished by means of the command \hidecallgraph. # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. CALL_GRAPH = NO # If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller # dependency graph for every global function or class method. # # Note that enabling this option will significantly increase the time of a run. # So in most cases it will be better to enable caller graphs for selected # functions only using the \callergraph command. Disabling a caller graph can be # accomplished by means of the command \hidecallergraph. # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical # hierarchy of all classes instead of a textual one. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the # dependencies a directory has on other directories in a graphical way. The # dependency relations are determined by the #include relations between the # files in the directories. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. For an explanation of the image formats see the section # output formats in the documentation of the dot tool (Graphviz (see: # http://www.graphviz.org/)). # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order # to make the SVG files visible in IE 9+ (other browsers do not have this # requirement). # Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo, # png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and # png:gdiplus:gdiplus. # The default value is: png. # This tag requires that the tag HAVE_DOT is set to YES. DOT_IMAGE_FORMAT = png # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to # enable generation of interactive SVG images that allow zooming and panning. # # Note that this requires a modern browser other than Internet Explorer. Tested # and working are Firefox, Chrome, Safari, and Opera. # Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make # the SVG files visible. Older versions of IE do not have SVG support. # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. INTERACTIVE_SVG = NO # The DOT_PATH tag can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. # This tag requires that the tag HAVE_DOT is set to YES. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the \dotfile # command). # This tag requires that the tag HAVE_DOT is set to YES. DOTFILE_DIRS = # The MSCFILE_DIRS tag can be used to specify one or more directories that # contain msc files that are included in the documentation (see the \mscfile # command). MSCFILE_DIRS = # The DIAFILE_DIRS tag can be used to specify one or more directories that # contain dia files that are included in the documentation (see the \diafile # command). DIAFILE_DIRS = # When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the # path where java can find the plantuml.jar file. If left blank, it is assumed # PlantUML is not used or called during a preprocessing step. Doxygen will # generate a warning when it encounters a \startuml command in this case and # will not generate output for the diagram. PLANTUML_JAR_PATH = # When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a # configuration file for plantuml. PLANTUML_CFG_FILE = # When using plantuml, the specified paths are searched for files specified by # the !include statement in a plantuml block. PLANTUML_INCLUDE_PATH = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes # that will be shown in the graph. If the number of nodes in a graph becomes # larger than this value, doxygen will truncate the graph, which is visualized # by representing a node as a red box. Note that doxygen if the number of direct # children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that # the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. # Minimum value: 0, maximum value: 10000, default value: 50. # This tag requires that the tag HAVE_DOT is set to YES. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs # generated by dot. A depth value of 3 means that only nodes reachable from the # root by following a path via at most 3 edges will be shown. Nodes that lay # further from the root node will be omitted. Note that setting this option to 1 # or 2 may greatly reduce the computation time needed for large code bases. Also # note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. # Minimum value: 0, maximum value: 1000, default value: 0. # This tag requires that the tag HAVE_DOT is set to YES. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not seem # to support this out of the box. # # Warning: Depending on the platform used, enabling this option may lead to # badly anti-aliased labels on the edges of a graph (i.e. they become hard to # read). # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. DOT_TRANSPARENT = NO # Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) support # this, this feature is disabled by default. # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page # explaining the meaning of the various boxes and arrows in the dot generated # graphs. # The default value is: YES. # This tag requires that the tag HAVE_DOT is set to YES. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate # files that are used to generate the various graphs. # # Note: This setting is not only used for dot files but also for msc and # plantuml temporary files. # The default value is: YES. DOT_CLEANUP = YES
0
rapidsai_public_repos/rmm
rapidsai_public_repos/rmm/doxygen/header.html
<!-- HTML header for doxygen 1.8.20--> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen $doxygenversion"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME--> <!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME--> <link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="$relpath^jquery.js"></script> <script type="text/javascript" src="$relpath^dynsections.js"></script> $treeview $search $mathjax <link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" /> $extrastylesheet <!-- RAPIDS CUSTOM JS & CSS: START, Please add these two lines back after every version upgrade --> <script defer src="https://docs.rapids.ai/assets/js/custom.js"></script> <link rel="stylesheet" href="https://docs.rapids.ai/assets/css/custom.css"> <!-- RAPIDS CUSTOM JS & CSS: END --> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <!--BEGIN TITLEAREA--> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <!--BEGIN PROJECT_LOGO--> <td id="projectlogo"><img alt="Logo" src="$relpath^$projectlogo"/></td> <!--END PROJECT_LOGO--> <!--BEGIN PROJECT_NAME--> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">$projectname <!--BEGIN PROJECT_NUMBER-->&#160;<span id="projectnumber">$projectnumber</span><!--END PROJECT_NUMBER--> </div> <!--BEGIN PROJECT_BRIEF--><div id="projectbrief">$projectbrief</div><!--END PROJECT_BRIEF--> </td> <!--END PROJECT_NAME--> <!--BEGIN !PROJECT_NAME--> <!--BEGIN PROJECT_BRIEF--> <td style="padding-left: 0.5em;"> <div id="projectbrief">$projectbrief</div> </td> <!--END PROJECT_BRIEF--> <!--END !PROJECT_NAME--> <!--BEGIN DISABLE_INDEX--> <!--BEGIN SEARCHENGINE--> <td>$searchbox</td> <!--END SEARCHENGINE--> <!--END DISABLE_INDEX--> </tr> </tbody> </table> </div> <!--END TITLEAREA--> <!-- end header part -->
0
rapidsai_public_repos
rapidsai_public_repos/GaaS/README.md
# <center>ARCHIVED</center> This repo is no longer under development or support. All issues/PRs will be ignored The GaaS code has been merged into the main cuGraph monorepo and is now called cugraph-service Please use https://github.com/rapidsai/cugraph to submit issues and retrieve the latest sources. # <center>ARCHIVED</center>
0
rapidsai_public_repos
rapidsai_public_repos/GaaS/CHANGELOG.md
# GaaS 22.08.00 (Date TBD)
0
rapidsai_public_repos
rapidsai_public_repos/GaaS/LICENSE
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 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 in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_client/gaas_thrift.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import io import thriftpy2 from thriftpy2.rpc import make_client from thriftpy2.protocol import TBinaryProtocolFactory from thriftpy2.server import TSimpleServer from thriftpy2.thrift import TProcessor from thriftpy2.transport import ( TBufferedTransportFactory, TServerSocket, TTransportException, ) # This is the Thrift input file as a string rather than a separate file. This # allows the Thrift input to be contained within the module that's responsible # for all Thrift-specific details rather than a separate .thrift file. # # thriftpy2 (https://github.com/Thriftpy/thriftpy2) is being used here instead # of Apache Thrift since it offers an easier-to-use API exclusively for Python # which is still compatible with servers/cleints using Apache Thrift (Apache # Thrift can be used from a variety of different languages) while offering # approximately the same performance. # # See the Apache Thrift tutorial for Python for examples: # https://thrift.apache.org/tutorial/py.html gaas_thrift_spec = """ # FIXME: consider additional, more fine-grained exceptions exception GaasError { 1:string message } struct BatchedEgoGraphsResult { 1:list<i32> src_verts 2:list<i32> dst_verts 3:list<double> edge_weights 4:list<i32> seeds_offsets } struct Node2vecResult { 1:list<i32> vertex_paths 2:list<double> edge_weights 3:list<i32> path_sizes } # FIXME: uniform_neighbor_sample may need to return indices as ints # See: https://github.com/rapidsai/cugraph/issues/2654 struct UniformNeighborSampleResult { 1:list<i32> sources 2:list<i32> destinations 3:list<double> indices } union GraphVertexEdgeID { 1:i32 int32_id 2:i64 int64_id 3:list<i32> int32_ids 4:list<i64> int64_ids } union Value { 1:i32 int32_value 2:i64 int64_value 3:string string_value 4:bool bool_value } service GaasService { ############################################################################## # Environment management i32 uptime() map<string, Value> get_server_info() throws (1:GaasError e), i32 load_graph_creation_extensions(1:string extension_dir_path ) throws (1:GaasError e), void unload_graph_creation_extensions(), i32 call_graph_creation_extension(1:string func_name, 2:string func_args_repr, 3:string func_kwargs_repr ) throws (1:GaasError e), ############################################################################## # Graph management i32 create_graph() throws(1:GaasError e), void delete_graph(1:i32 graph_id) throws (1:GaasError e), list<i32> get_graph_ids() throws(1:GaasError e), map<string, Value> get_graph_info(1:list<string> keys, 2:i32 graph_id ) throws(1:GaasError e), void load_csv_as_vertex_data(1:string csv_file_name, 2:string delimiter, 3:list<string> dtypes, 4:i32 header, 5:string vertex_col_name, 6:string type_name, 7:list<string> property_columns, 8:i32 graph_id, 9:list<string> names ) throws (1:GaasError e), void load_csv_as_edge_data(1:string csv_file_name, 2:string delimiter, 3:list<string> dtypes, 4:i32 header, 5:list<string> vertex_col_names, 6:string type_name, 7:list<string> property_columns, 8:i32 graph_id, 9:list<string> names ) throws (1:GaasError e), list<i32> get_edge_IDs_for_vertices(1:list<i32> src_vert_IDs, 2:list<i32> dst_vert_IDs, 3:i32 graph_id ) throws (1:GaasError e), i32 extract_subgraph(1:string create_using, 2:string selection, 3:string edge_weight_property, 4:double default_edge_weight, 5:bool allow_multi_edges, 6:bool renumber_graph, 7:bool add_edge_data, 8:i32 graph_id ) throws (1:GaasError e), binary get_graph_vertex_data(1:GraphVertexEdgeID vertex_id, 2:Value null_replacement_value, 3:i32 graph_id, 4:list<string> property_keys ) throws (1:GaasError e), binary get_graph_edge_data(1:GraphVertexEdgeID edge_id, 2:Value null_replacement_value 3:i32 graph_id, 4:list<string> property_keys ) throws (1:GaasError e), bool is_vertex_property(1:string property_key, 2:i32 graph_id) throws (1:GaasError e), bool is_edge_property(1:string property_key, 2:i32 graph_id) throws (1:GaasError e), ############################################################################## # Algos BatchedEgoGraphsResult batched_ego_graphs(1:list<i32> seeds, 2:i32 radius, 3:i32 graph_id ) throws (1:GaasError e), Node2vecResult node2vec(1:list<i32> start_vertices, 2:i32 max_depth, 3:i32 graph_id ) throws (1:GaasError e), UniformNeighborSampleResult uniform_neighbor_sample(1:list<i32> start_list, 2:list<i32> fanout_vals, 3:bool with_replacement, 4:i32 graph_id ) throws (1:GaasError e), ############################################################################## # Test/Debug string get_graph_type(1:i32 graph_id) throws(1:GaasError e), } """ # Load the GaaS Thrift specification on import. Syntax errors and other problems # will be apparent immediately on import, and it allows any other module to # import this and access the various types defined in the Thrift specification # without being exposed to the thriftpy2 API. spec = thriftpy2.load_fp(io.StringIO(gaas_thrift_spec), module_name="gaas_thrift") def create_server(handler, host, port, client_timeout=90000): """ Return a server object configured to listen on host/port and use the handler object to handle calls from clients. The handler object must have an interface compatible with the GaasService service defined in the Thrift specification. Note: This function is defined here in order to allow it to have easy access to the Thrift spec loaded here on import, and to keep all thriftpy2 calls in this module. However, this function is likely only called from the gaas_server package which depends on the code in this package. """ proto_factory = TBinaryProtocolFactory() trans_factory = TBufferedTransportFactory() client_timeout = client_timeout processor = TProcessor(spec.GaasService, handler) server_socket = TServerSocket(host=host, port=port, client_timeout=client_timeout) server = TSimpleServer(processor, server_socket, iprot_factory=proto_factory, itrans_factory=trans_factory) return server def create_client(host, port, call_timeout=90000): """ Return a client object that will make calls on a server listening on host/port. The call_timeout value defaults to 90 seconds, and is used for setting the timeout for server API calls when using the client created here - if a call does not return in call_timeout milliseconds, an exception is raised. """ try: return make_client(spec.GaasService, host=host, port=port, timeout=call_timeout) except TTransportException: # Raise a GaaS exception in order to completely encapsulate all Thrift # details in this module. If this was not done, callers of this function # would have to import thriftpy2 in order to catch the # TTransportException, which then leaks thriftpy2. # # NOTE: normally the GaasError exception is imported from the # gaas_client.exceptions module, but since # gaas_client.exceptions.GaasError is actually defined from the spec in # this module, just use it directly from spec. # # FIXME: may need to have additional thrift exception handlers # FIXME: this exception being raised could use more detail raise spec.GaasError("could not create a client session with a " "GaaS server")
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_client/types.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import numpy from gaas_client.gaas_thrift import spec Value = spec.Value GraphVertexEdgeID = spec.GraphVertexEdgeID BatchedEgoGraphsResult = spec.BatchedEgoGraphsResult Node2vecResult = spec.Node2vecResult UniformNeighborSampleResult = spec.UniformNeighborSampleResult class UnionWrapper: """ Provides easy conversions between py objs and Thrift "unions". """ def get_py_obj(self): not_members = set(["default_spec", "thrift_spec", "read", "write"]) attrs = [a for a in dir(self.union) if not(a.startswith("_")) and a not in not_members] for a in attrs: val = getattr(self.union, a) if val is not None: return val return None class ValueWrapper(UnionWrapper): def __init__(self, val, val_name="value"): if isinstance(val, Value): self.union = val elif isinstance(val, int): if val < 4294967296: self.union = Value(int32_value=val) else: self.union = Value(int64_value=val) elif isinstance(val, numpy.int32): self.union = Value(int32_value=int(val)) elif isinstance(val, numpy.int64): self.union = Value(int64_value=int(val)) elif isinstance(val, str): self.union = Value(string_value=val) elif isinstance(val, bool): self.union = Value(bool_value=val) else: raise TypeError(f"{val_name} must be one of the " "following types: [int, str, bool], got " f"{type(val)}") class GraphVertexEdgeIDWrapper(UnionWrapper): def __init__(self, val, val_name="id"): if isinstance(val, GraphVertexEdgeID): self.union = val elif isinstance(val, int): if val >= 4294967296: self.union = GraphVertexEdgeID(int64_id=val) else: self.union = GraphVertexEdgeID(int32_id=val) elif isinstance(val, list): # FIXME: this only check the first item, others could be larger if val[0] >= 4294967296: self.union = GraphVertexEdgeID(int64_ids=val) else: self.union = GraphVertexEdgeID(int32_ids=val) else: raise TypeError(f"{val_name} must be one of the " "following types: [int, list<int>], got " f"{type(val)}")
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_client/exceptions.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from gaas_client.gaas_thrift import spec # FIXME: add more fine-grained exceptions! GaasError = spec.GaasError
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_client/__init__.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from gaas_client.client import GaasClient
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_client/defaults.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. host = "localhost" port = 9090 graph_id = 0
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_client/client.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from functools import wraps from collections.abc import Sequence import pickle from gaas_client import defaults from gaas_client.types import ValueWrapper, GraphVertexEdgeID from gaas_client.gaas_thrift import create_client class GaasClient: """ Client object for GaaS, which defines the API that clients can use to access the GaaS server. """ def __init__(self, host=defaults.host, port=defaults.port): """ Creates a connection to a GaaS server running on host/port. Parameters ---------- host : string, defaults to 127.0.0.1 Hostname where the GaaS server is running port : int, defaults to 9090 Port number where the GaaS server is listening Returns ------- GaasClient object Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() """ self.host = host self.port = port self.__client = None # If True, do not automatically close a server connection upon # completion or error of a server API call. This requires the caller to # manually call close() when done. self.hold_open = False def __del__(self): self.close() def __server_connection(method): """ Decorator for methods that require a connection to the server to be created prior to calling a server function, then closed upon completion or error. If self.hold_open is True, the automatic call to close() will not take place, allowing for multiple subsequent server calls to be made using the same connection. self.hold_open therefore requires the caller to manually call close() in order to allow other clients to connect. """ @wraps(method) def wrapped_method(self, *args, **kwargs): self.open() try: ret_val = method(self, *args, **kwargs) finally: if not self.hold_open: self.close() return ret_val return wrapped_method def open(self, call_timeout=900000): """ Opens a connection to the server at self.host/self.port if one is not already established. close() must be called in order to allow other connections from other clients to be made. This call does nothing if a connection to the server is already open. Note: all APIs that access the server will call this method automatically, followed automatically by a call to close(), so calling this method should not be necessary. close() is not automatically called if self.hold_open is False. Parameters ---------- call_timeout : int (default is 900000) Time in millisecods that calls to the server using this open connection must return by. Returns ------- None Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> # Manually open a connection. The connection is held open and other >>> # clients cannot connect until a client API call completes or >>> # close() is manually called. >>> client.open() """ if self.__client is None: self.__client = create_client(self.host, self.port, call_timeout=call_timeout) def close(self): """ Closes a connection to the server if one has been established, allowing other clients to access the server. This method is called automatically for all APIs that access the server if self.hold_open is False. Parameters ---------- None Returns ------- None Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> # Have the client hold open the connect automatically opened as part >>> # of a server API call until close() is called. This is normally not >>> # necessary and shown here for demonstration purposes. >>> client.hold_open = True >>> client.node2vec([0,1], 2) >>> # close the connection so other clients can connect >>> client.close() >>> # go back to automatic open/close mode (safer) >>> client.hold_open = False """ if self.__client is not None: self.__client.close() self.__client = None ############################################################################ # Environment management @__server_connection def uptime(self): """ Return the server uptime in seconds. This is often used as a "ping". Parameters ---------- None Returns ------- uptime : int The time in seconds the server has been running. Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> client.uptime() >>> 32 """ return self.__client.uptime() @__server_connection def get_server_info(self): """ Return a dictionary of information about the server. Parameters ---------- None Returns ------- server_info : dict Dictionary containing environment and state information about the server. Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> client.get_server_info() >>> {'num_gpus': 2} """ server_info = self.__client.get_server_info() # server_info is a dictionary of Value objects ("union" types returned # from the server), so convert them to simple py types. return dict((k, ValueWrapper(server_info[k]).get_py_obj()) for k in server_info) @__server_connection def load_graph_creation_extensions(self, extension_dir_path): """ Loads the extensions for graph creation present in the directory specified by extension_dir_path. Parameters ---------- extension_dir_path : string Path to the directory containing the extension files (.py source files). This directory must be readable by the server. Returns ------- num_files_read : int Number of extension files read in the extension_dir_path directory. Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> num_files_read = client.load_graph_creation_extensions( ... "/some/server/side/directory") >>> """ return self.__client.load_graph_creation_extensions(extension_dir_path) @__server_connection def unload_graph_creation_extensions(self): """ Removes all extensions for graph creation previously loaded. Parameters ---------- None Returns ------- None Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> client.unload_graph_creation_extensions() >>> """ return self.__client.unload_graph_creation_extensions() @__server_connection def call_graph_creation_extension(self, func_name, *func_args, **func_kwargs): """ Calls a graph creation extension on the server that was previously loaded by a prior call to load_graph_creation_extensions(), then returns the graph ID of the graph created by the extension. Parameters ---------- func_name : string The name of the server-side extension function loaded by a prior call to load_graph_creation_extensions(). All graph creation extension functions are expected to return a new graph. *func_args : string, int, list, dictionary (optional) The positional args to pass to func_name. Note that func_args are converted to their string representation using repr() on the client, then restored to python objects on the server using eval(), and therefore only objects that can be restored server-side with eval() are supported. **func_kwargs : string, int, list, dictionary The keyword args to pass to func_name. Note that func_kwargs are converted to their string representation using repr() on the client, then restored to python objects on the server using eval(), and therefore only objects that can be restored server-side with eval() are supported. Returns ------- graph_id : int unique graph ID Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> # Load the extension file containing "my_complex_create_graph()" >>> client.load_graph_creation_extensions("/some/server/side/directory") >>> new_graph_id = client.call_graph_creation_extension( ... "my_complex_create_graph", ... "/path/to/csv/on/server/graph.csv", ... clean_data=True) >>> """ func_args_repr = repr(func_args) func_kwargs_repr = repr(func_kwargs) return self.__client.call_graph_creation_extension( func_name, func_args_repr, func_kwargs_repr) ############################################################################ # Graph management @__server_connection def create_graph(self): """ Create a new graph associated with a new (non-default) unique graph ID, return the new graph ID. Parameters ---------- None Returns ------- graph_id : int unique graph ID Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> my_graph_id = client.create_graph() >>> # Load a CSV to the new graph >>> client.load_csv_as_edge_data( ... "edges.csv", ["int32", "int32", "float32"], ... vertex_col_names=["src", "dst"], graph_id=my_graph_id) >>> """ return self.__client.create_graph() @__server_connection def delete_graph(self, graph_id): """ Deletes the graph referenced by graph_id. Parameters ---------- graph_id : int The graph ID to delete. If the ID passed is not valid on the server, GaaSError is raised. Returns ------- None Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> my_graph_id = client.create_graph() >>> # Load a CSV to the new graph >>> client.load_csv_as_edge_data( ... "edges.csv", ["int32", "int32", "float32"], ... vertex_col_names=["src", "dst"], graph_id=my_graph_id) >>> # Remove the graph instance on the server and reclaim the memory >>> client.delete_graph(my_graph_id) """ return self.__client.delete_graph(graph_id) @__server_connection def get_graph_ids(self): """ Returns a list of all graph IDs the server is currently maintaining. Parameters ---------- None Returns ------- graph_id_list : list of unique int graph IDs Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> # This server already has graphs loaded from other sessions >>> client.get_graph_ids() [0, 26] >>> """ return self.__client.get_graph_ids() @__server_connection def get_graph_info(self, keys=None, graph_id=defaults.graph_id): """ Returns a dictionary containing meta-data about the graph referenced by graph_id (or the default graph if not specified). Parameters ---------- graph_id : int, default is defaults.graph_id The graph ID to apply the properties in the CSV to. If not provided, the default graph ID is used. Returns ------- None Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> client.load_csv_as_vertex_data( ... "/server/path/to/vertex_data.csv", ... dtypes=["int32", "string", "int32"], ... vertex_col_name="vertex_id", ... header="infer") >>> client.get_graph_info() {'num_edges': 3, 'num_vertices': 4} """ # Ensure keys is a list of strings when passing to RPC API if keys is None: keys = [] elif isinstance(keys, str): keys = [keys] elif isinstance(keys, list): if False in [isinstance(k, str) for k in keys]: raise TypeError(f"keys must be a list of strings, got {keys}") else: raise TypeError("keys must be a string or list of strings, got " f"{type(keys)}") graph_info = self.__client.get_graph_info(keys, graph_id) # special case: if only one key was specified, return only the single # value if len(keys) == 1: return ValueWrapper(graph_info[keys[0]]).get_py_obj() # graph_info is a dictionary of Value objects ("union" types returned # from the graph), so convert them to simple py types. return dict((k, ValueWrapper(graph_info[k]).get_py_obj()) for k in graph_info) @__server_connection def load_csv_as_vertex_data(self, csv_file_name, dtypes, vertex_col_name, delimiter=" ", header=None, type_name="", property_columns=None, graph_id=defaults.graph_id, names=None, ): """ Reads csv_file_name and applies it as vertex data to the graph identified as graph_id (or the default graph if not specified). Parameters ---------- csv_file_name : string Path to CSV file on the server dtypes : list of strings Types for the columns in the CSV file vertex_col_name : string Name of the column to use as the vertex ID delimiter : string, default is " " Character that serves as the delimiter between columns in the CSV header : int, default is None Row number to use as the column names. Default behavior is to assume column names are explicitely provided (header=None). header="infer" if the column names are to be inferred. If no names are passed, header=0. See also cudf.read_csv type_name : string, default is "" The vertex property "type" the CSV data is describing. For instance, CSV data describing properties for "users" might pass type_name as "user". A vertex property type is optional. property_columns : list of strings, default is None The column names in the CSV to add as vertex properties. If None, all columns will be added as properties. graph_id : int, default is defaults.graph_id The graph ID to apply the properties in the CSV to. If not provided, the default graph ID is used. names: list of strings, default is None The names to be used to reference the CSV columns, in lieu of a header. Returns ------- None Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> client.load_csv_as_vertex_data( ... "/server/path/to/vertex_data.csv", ... dtypes=["int32", "string", "int32"], ... vertex_col_name="vertex_id", ... header="infer") >>> """ # Map all int arg types that also have string options to ints # FIXME: check for invalid header arg values if header == "infer": header = -1 elif header is None: header = -2 return self.__client.load_csv_as_vertex_data(csv_file_name, delimiter, dtypes, header, vertex_col_name, type_name, property_columns or [], graph_id, names or []) @__server_connection def load_csv_as_edge_data(self, csv_file_name, dtypes, vertex_col_names, delimiter=" ", header=None, type_name="", property_columns=None, graph_id=defaults.graph_id, names=None ): """ Reads csv_file_name and applies it as edge data to the graph identified as graph_id (or the default graph if not specified). Parameters ---------- csv_file_name : string Path to CSV file on the server dtypes : list of strings Types for the columns in the CSV file vertex_col_names : tuple of strings Names of the columns to use as the source and destination vertex IDs defining the edges delimiter : string, default is " " Character that serves as the delimiter between columns in the CSV header : int, default is None Row number to use as the column names. Default behavior is to assume column names are explicitely provided (header=None). header="infer" if the column names are to be inferred. If no names are passed, header=0. See also cudf.read_csv type_name : string, default is "" The edge property "type" the CSV data is describing. For instance, CSV data describing properties for "transactions" might pass type_name as "transaction". An edge property type is optional. property_columns : list of strings, default is None The column names in the CSV to add as edge properties. If None, all columns will be added as properties. graph_id : int, default is defaults.graph_id The graph ID to apply the properties in the CSV to. If not provided, the default graph ID is used. names: list of strings, default is None The names to be used to reference the CSV columns, in lieu of a header. Returns ------- None Examples -------- >>> from gaas_client import GaasClient >>> client = GaasClient() >>> client.load_csv_as_edge_data( ... "/server/path/to/edge_data.csv", ... dtypes=["int32", "int32", "string", "int32"], ... vertex_col_names=("src", "dst"), ... header="infer") >>> """ # Map all int arg types that also have string options to ints # FIXME: check for invalid header arg values if header == "infer": header = -1 elif header is None: header = -2 return self.__client.load_csv_as_edge_data(csv_file_name, delimiter, dtypes, header, vertex_col_names, type_name, property_columns or [], graph_id, names or []) @__server_connection def get_edge_IDs_for_vertices(self, src_vert_IDs, dst_vert_IDs, graph_id=defaults.graph_id): """ """ # FIXME: finish docstring above # FIXME: add type checking return self.__client.get_edge_IDs_for_vertices(src_vert_IDs, dst_vert_IDs, graph_id) @__server_connection def extract_subgraph(self, create_using=None, selection=None, edge_weight_property="", default_edge_weight=1.0, allow_multi_edges=False, renumber_graph=True, add_edge_data=True, graph_id=defaults.graph_id ): """ Return a graph ID for a subgraph of the graph referenced by graph_id that containing vertices and edges that match a selection. Parameters ---------- create_using : string, default is None String describing the type of Graph object to create from the selected subgraph of vertices and edges. The default (None) results in a cugraph.Graph object. selection : int, default is None A PropertySelection ID returned from one or more calls to select_vertices() and/or select_edges(), used for creating a Graph with only the selected properties. If not speciied the resulting Graph will have all properties. Note, this could result in a Graph with multiple edges, which may not be supported based on the value of create_using. edge_weight_property : string, default is "" The name of the property whose values will be used as weights on the returned Graph. If not specified, the returned Graph will be unweighted. default_edge_weight : float, default is 1.0 The value to use when an edge property is specified but not present on an edge. allow_multi_edges : bool If True, multiple edges should be used to create the resulting Graph, otherwise multiple edges will be detected and an exception raised. graph_id : int, default is defaults.graph_id The graph ID to extract the subgraph from. If the ID passed is not valid on the server, GaaSError is raised. Returns ------- A graph ID for a new Graph instance of the same type as create_using containing only the vertices and edges resulting from applying the selection to the set of vertex and edge property data. Examples -------- >>> """ # FIXME: finish docstring above # FIXME: convert defaults to type needed by the Thrift API. These will # be changing to different types. create_using = create_using or "" selection = selection or "" return self.__client.extract_subgraph(create_using, selection, edge_weight_property, default_edge_weight, allow_multi_edges, renumber_graph, add_edge_data, graph_id) @__server_connection def get_graph_vertex_data(self, id_or_ids=-1, null_replacement_value=0, graph_id=defaults.graph_id, property_keys=None ): """ Returns ... Parameters ---------- id_or_ids : int or list of ints (default -1) null_replacement_value : number or string (default 0) graph_id : int, default is defaults.graph_id The graph ID to extract the subgraph from. If the ID passed is not valid on the server, GaaSError is raised. property_keys : list of strings (default []) The keys (names) of properties to retrieve. If omitted, returns the whole dataframe. Returns ------- Examples -------- >>> """ # FIXME: finish docstring above vertex_edge_id_obj = self.__get_vertex_edge_id_obj(id_or_ids) null_replacement_value_obj = ValueWrapper( null_replacement_value, val_name="null_replacement_value").union ndarray_bytes = \ self.__client.get_graph_vertex_data( vertex_edge_id_obj, null_replacement_value_obj, graph_id, property_keys or [] ) return pickle.loads(ndarray_bytes) @__server_connection def get_graph_edge_data(self, id_or_ids=-1, null_replacement_value=0, graph_id=defaults.graph_id, property_keys=None ): """ Returns ... Parameters ---------- id_or_ids : int or list of ints (default -1) null_replacement_value : number or string (default 0) graph_id : int, default is defaults.graph_id The graph ID to extract the subgraph from. If the ID passed is not valid on the server, GaaSError is raised. property_keys : list of strings (default []) The keys (names) of properties to retrieve. If omitted, returns the whole dataframe. Returns ------- Examples -------- >>> """ # FIXME: finish docstring above vertex_edge_id_obj = self.__get_vertex_edge_id_obj(id_or_ids) null_replacement_value_obj = ValueWrapper( null_replacement_value, val_name="null_replacement_value").union ndarray_bytes = \ self.__client.get_graph_edge_data( vertex_edge_id_obj, null_replacement_value_obj, graph_id, property_keys or [] ) return pickle.loads(ndarray_bytes) @__server_connection def is_vertex_property(self, property_key, graph_id=defaults.graph_id): """ Returns True if the given property key is for a valid vertex property in the given graph, false otherwise.e Parameters ---------- property_key: string The key (name) of the vertex property to check graph_id: int The id of the graph of interest """ return self.__client.is_vertex_property(property_key, graph_id) @__server_connection def is_edge_property(self, property_key, graph_id=defaults.graph_id): """ Returns True if the given property key is for a valid vertex property in the given graph, false otherwise.e Parameters ---------- property_key: string The key (name) of the vertex property to check graph_id: int The id of the graph of interest """ return self.__client.is_edge_property(property_key, graph_id) ############################################################################ # Algos @__server_connection def batched_ego_graphs(self, seeds, radius=1, graph_id=defaults.graph_id): """ Parameters ---------- Returns ------- Examples -------- >>> """ # FIXME: finish docstring above if not isinstance(seeds, list): seeds = [seeds] batched_ego_graphs_result = self.__client.batched_ego_graphs(seeds, radius, graph_id) # FIXME: ensure dtypes are correct for values returned from cugraph.batched_ego_graphs() in gaas_handler.py #return (numpy.frombuffer(batched_ego_graphs_result.src_verts, dtype="int32"), # numpy.frombuffer(batched_ego_graphs_result.dst_verts, dtype="int32"), # numpy.frombuffer(batched_ego_graphs_result.edge_weights, dtype="float64"), # numpy.frombuffer(batched_ego_graphs_result.seeds_offsets, dtype="int64")) return (batched_ego_graphs_result.src_verts, batched_ego_graphs_result.dst_verts, batched_ego_graphs_result.edge_weights, batched_ego_graphs_result.seeds_offsets) @__server_connection def node2vec(self, start_vertices, max_depth, graph_id=defaults.graph_id): """ Computes random walks for each node in 'start_vertices', under the node2vec sampling framework. Parameters ---------- start_vertices: int or list or cudf.Series or cudf.DataFrame A single node or a list or a cudf.Series of nodes from which to run the random walks. In case of multi-column vertices it should be a cudf.DataFrame. Only supports int32 currently. max_depth: int The maximum depth of the random walks Returns ------- Examples -------- >>> """ # FIXME: finish docstring above # start_vertices must be a list (cannot just be an iterable), and assume # return value is tuple of python lists on host. if not isinstance(start_vertices, list): start_vertices = [start_vertices] # FIXME: ensure list is a list of int32, since Thrift interface # specifies that? node2vec_result = self.__client.node2vec(start_vertices, max_depth, graph_id) return (node2vec_result.vertex_paths, node2vec_result.edge_weights, node2vec_result.path_sizes) @__server_connection def uniform_neighbor_sample(self, start_list, fanout_vals, with_replacement=True, graph_id=defaults.graph_id): """ Samples the graph and returns the graph id of the sampled graph. Parameters: start_list: list[int] fanout_vals: list[int] with_replacement: bool graph_id: int, default is defaults.graph_id Returns ------- The graph id of the sampled graph. """ return self.__client.uniform_neighbor_sample( start_list, fanout_vals, with_replacement, graph_id, ) @__server_connection def pagerank(self, graph_id=defaults.graph_id): """ pagerank """ raise NotImplementedError ############################################################################ # Test/Debug @__server_connection def _get_graph_type(self, graph_id=defaults.graph_id): """ Test/debug API for returning a string repr of the graph_id instance. """ return self.__client.get_graph_type(graph_id) ############################################################################ # Private @staticmethod def __get_vertex_edge_id_obj(id_or_ids): # FIXME: do not assume all values are int32 if isinstance(id_or_ids, Sequence): vert_edge_id_obj = GraphVertexEdgeID(int32_ids=id_or_ids) else: vert_edge_id_obj = GraphVertexEdgeID(int32_id=id_or_ids) return vert_edge_id_obj
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/client1_script.py
import random import time from pathlib import Path from gaas_client import GaasClient _data_dir = (Path(__file__).parent)/"data" edgelist_csv_data = { "karate": {"csv_file_name": (_data_dir/"karate.csv").absolute().as_posix(), "dtypes": ["int32", "int32", "float32"], "num_edges": 156, }, } client = GaasClient() test_data = edgelist_csv_data["karate"] client.load_csv_as_edge_data(test_data["csv_file_name"], dtypes=test_data["dtypes"], vertex_col_names=["0", "1"], type_name="") time.sleep(10) n = int(random.random() * 1000) #print(f"---> starting {n}", flush=True) for i in range(1000000): extracted_gid = client.extract_subgraph(allow_multi_edges=False) #client.delete_graph(extracted_gid) #print(f"---> {n}: extracted {extracted_gid}", flush=True) #print(f"---> done {n}", flush=True)
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/data.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from pathlib import Path _data_dir = (Path(__file__).parent)/"data" edgelist_csv_data = { "karate": {"csv_file_name": (_data_dir/"karate.csv").absolute().as_posix(), "dtypes": ["int32", "int32", "float32"], "num_edges": 156, }, } property_csv_data = { "merchants": {"csv_file_name": (_data_dir/"merchants.csv").absolute().as_posix(), "dtypes": ["int32", "int32", "int32", "float32", "int32", "string"], "vert_col_name" : "merchant_id", }, "users": {"csv_file_name": (_data_dir/"users.csv").absolute().as_posix(), "dtypes": ["int32", "int32", "int32"], "vert_col_name" : "user_id", }, "transactions": {"csv_file_name": (_data_dir/"transactions.csv").absolute().as_posix(), "dtypes": ["int32", "int32", "float32", "float32", "int32", "string"], "vert_col_names" : ("user_id", "merchant_id"), }, "relationships": {"csv_file_name": (_data_dir/"relationships.csv").absolute().as_posix(), "dtypes": ["int32", "int32", "int32"], "vert_col_names" : ("user_id_1", "user_id_2"), }, "referrals": {"csv_file_name": (_data_dir/"referrals.csv").absolute().as_posix(), "dtypes": ["int32", "int32", "int32", "int32"], "vert_col_names" : ("user_id_1", "user_id_2"), }, }
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/client2_script.py
import time import random from gaas_client import GaasClient client = GaasClient() time.sleep(10) n = int(random.random() * 1000) #print(f"---> starting {n}", flush=True) for i in range(1000000): extracted_gid = client.extract_subgraph(allow_multi_edges=False) #client.delete_graph(extracted_gid) #print(f"---> {n}: extracted {extracted_gid}", flush=True) #print(f"---> done {n}", flush=True)
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/test_mg_gaas_handler.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import os from pathlib import Path import pickle import pytest from . import data ############################################################################### ## fixtures @pytest.fixture(scope="module") def mg_handler(): """ Creates a GaaS handler that uses a dask client. """ from gaas_server.gaas_handler import GaasHandler dask_scheduler_file = os.environ.get("SCHEDULER_FILE") if dask_scheduler_file is None: raise EnvironmentError("Environment variable SCHEDULER_FILE must be set" " to the path to a dask scheduler json file") dask_scheduler_file = Path(dask_scheduler_file) if not dask_scheduler_file.exists(): raise FileNotFoundError("env var SCHEDULER_FILE is set to " f"{dask_scheduler_file}, which does not exist.") handler = GaasHandler() handler.initialize_dask_client(dask_scheduler_file) return handler # Make this a function-level fixture so it cleans up the mg_handler after each # test, allowing other tests to use mg_handler without graphs loaded. @pytest.fixture(scope="function") def handler_with_karate_edgelist_loaded(mg_handler): """ Loads the karate CSV into the default graph in the handler. """ from gaas_client import defaults test_data = data.edgelist_csv_data["karate"] # Ensure the handler starts with no graphs in memory for gid in mg_handler.get_graph_ids(): mg_handler.delete_graph(gid) mg_handler.load_csv_as_edge_data(test_data["csv_file_name"], delimiter=" ", dtypes=test_data["dtypes"], header=None, vertex_col_names=["0", "1"], type_name="", property_columns=[], names=[], graph_id=defaults.graph_id, ) assert mg_handler.get_graph_ids() == [0] yield (mg_handler, test_data) for gid in mg_handler.get_graph_ids(): mg_handler.delete_graph(gid) ############################################################################### ## tests # FIXME: consolidate this with the SG version of this test. def test_get_graph_data_large_vertex_ids( mg_handler, graph_creation_extension_big_vertex_ids, ): """ Test that graphs with large vertex ID values (>int32) are handled. """ handler = mg_handler extension_dir = graph_creation_extension_big_vertex_ids # Load the extension and ensure it can be called. handler.load_graph_creation_extensions(extension_dir) new_graph_id = handler.call_graph_creation_extension( "graph_creation_function_vert_and_edge_data_big_vertex_ids", "()", "{}") invalid_vert_id = 2 vert_data = handler.get_graph_vertex_data( id_or_ids=invalid_vert_id, null_replacement_value=0, graph_id=new_graph_id, property_keys=None) assert len(pickle.loads(vert_data)) == 0 large_vert_id = (2**32)+1 vert_data = handler.get_graph_vertex_data( id_or_ids=large_vert_id, null_replacement_value=0, graph_id=new_graph_id, property_keys=None) assert len(pickle.loads(vert_data)) == 1 invalid_edge_id = (2**32)+1 edge_data = handler.get_graph_edge_data( id_or_ids=invalid_edge_id, null_replacement_value=0, graph_id=new_graph_id, property_keys=None) assert len(pickle.loads(edge_data)) == 0 small_edge_id = 2 edge_data = handler.get_graph_edge_data( id_or_ids=small_edge_id, null_replacement_value=0, graph_id=new_graph_id, property_keys=None) assert len(pickle.loads(edge_data)) == 1 # FIXME: consolidate this with the SG version of this test. def test_get_graph_data_empty_graph( mg_handler, graph_creation_extension_empty_graph, ): """ Tests that get_graph_*_data() handles empty graphs correctly. """ handler = mg_handler extension_dir = graph_creation_extension_empty_graph # Load the extension and ensure it can be called. handler.load_graph_creation_extensions(extension_dir) new_graph_id = handler.call_graph_creation_extension( "graph_creation_function", "()", "{}") invalid_vert_id = 2 vert_data = handler.get_graph_vertex_data( id_or_ids=invalid_vert_id, null_replacement_value=0, graph_id=new_graph_id, property_keys=None) assert len(pickle.loads(vert_data)) == 0 invalid_edge_id = 2 edge_data = handler.get_graph_edge_data( id_or_ids=invalid_vert_id, null_replacement_value=0, graph_id=new_graph_id, property_keys=None) assert len(pickle.loads(edge_data)) == 0 def test_get_edge_IDs_for_vertices(handler_with_karate_edgelist_loaded): from gaas_client import defaults (handler, test_data) = handler_with_karate_edgelist_loaded # Use the test/debug API to ensure the correct type was created assert "MG" in handler.get_graph_type(defaults.graph_id) extracted_graph_id = handler.extract_subgraph(create_using=None, selection=None, edge_weight_property=None, default_edge_weight=1.0, allow_multi_edges=True, renumber_graph=True, add_edge_data=True, graph_id=defaults.graph_id) # FIXME: this assumes these are always the first 3 edges in karate, which # may not be a safe assumption. eIDs = handler.get_edge_IDs_for_vertices([1, 2, 3], [0, 0, 0], extracted_graph_id) assert eIDs == [0, 1, 2] def test_get_graph_info(handler_with_karate_edgelist_loaded): """ get_graph_info() for specific args. """ from gaas_client import defaults from gaas_client.types import ValueWrapper (handler, test_data) = handler_with_karate_edgelist_loaded # A common use of get_graph_info() is to get the "shape" of the data, # meaning the number of vertices/edges by the number of properites per # edge/vertex. info = handler.get_graph_info(["num_edges", "num_edge_properties"], defaults.graph_id) # info is a dictionary containing gaas_client.types.Value objs, so access # the int32 member directly for easy comparison. shape = (ValueWrapper(info["num_edges"]).get_py_obj(), ValueWrapper(info["num_edge_properties"]).get_py_obj()) assert shape == (156, 1) # The single edge property is the weight info = handler.get_graph_info(["num_vertices_from_vertex_data", "num_vertex_properties"], defaults.graph_id) shape = (ValueWrapper(info["num_vertices_from_vertex_data"]).get_py_obj(), ValueWrapper(info["num_vertex_properties"]).get_py_obj()) assert shape == (0, 0) def test_get_graph_info_defaults(mg_handler): """ Ensure calling get_graph_info() with no args returns the info dict with all keys present for an empty default graph. """ from gaas_client import defaults from gaas_client.types import ValueWrapper handler = mg_handler info = handler.get_graph_info([], graph_id=defaults.graph_id) expected = {"num_vertices": 0, "num_vertices_from_vertex_data": 0, "num_edges": 0, "num_vertex_properties": 0, "num_edge_properties": 0, } actual = {key:ValueWrapper(val).get_py_obj() for (key, val) in info.items()} assert expected == actual def test_uniform_neighbor_sampling(handler_with_karate_edgelist_loaded): from gaas_client.exceptions import GaasError from gaas_client import defaults (handler, test_data) = handler_with_karate_edgelist_loaded start_list = [1, 2, 3] fanout_vals = [2, 2, 2] with_replacement = True # invalid graph type - default graph is a PG, needs an extracted subgraph with pytest.raises(GaasError): handler.uniform_neighbor_sample(start_list=start_list, fanout_vals=fanout_vals, with_replacement=with_replacement, graph_id=defaults.graph_id) # FIXME: add test coverage for specifying the edge ID as the # edge_weight_property, then ensuring the edge ID is returned properly with # the uniform_neighbor_sample results. # See: https://github.com/rapidsai/cugraph/issues/2654 extracted_gid = handler.extract_subgraph(create_using=None, selection=None, edge_weight_property=None, default_edge_weight=1.0, allow_multi_edges=True, renumber_graph=True, add_edge_data=True, graph_id=defaults.graph_id) result = handler.uniform_neighbor_sample(start_list=start_list, fanout_vals=fanout_vals, with_replacement=with_replacement, graph_id=extracted_gid)
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/gen_demo_data.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import random ################################################################################ ## vertex CSV colors = ["red", "white", "blue", "green", "yellow", "orange", "black", "purple"] with open("vertex_data.csv", "w") as vertex_out: print("vertex_id color num_stars", file=vertex_out) for i in range(1000): print(f"{i} {random.choice(colors)} {int(random.random() * 10000)}", file=vertex_out) ################################################################################ ## edge CSV relationship = ["friend", "coworker", "reviewer"] ids = range(1000) with open("edge_data.csv", "w") as edge_out: print("src dst relationship_type num_interactions", file=edge_out) for i in range(10000): src = random.choice(ids) dst = random.choice(ids) while(src == dst): dst = random.choice(ids) print(f"{src} {dst} " f"{random.choice(relationship)} " f"{int((random.random() + 1) * 10)}", file=edge_out)
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/conftest.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from pathlib import Path from tempfile import TemporaryDirectory import pytest graph_creation_extension1_file_contents = """ import cudf from cugraph.experimental import PropertyGraph def custom_graph_creation_function(gaas_server): edgelist = cudf.DataFrame(columns=['src', 'dst'], data=[(0, 77), (1, 88), (2, 99)]) pG = PropertyGraph() pG.add_edge_data(edgelist, vertex_col_names=('src', 'dst')) # smoke test the gaas_server object by accesing the "mg" attr gaas_server.is_mg return pG """ graph_creation_extension2_file_contents = """ import cudf from cugraph.experimental import PropertyGraph def __my_private_function(): pass def my_graph_creation_function(arg1:str, arg2:str, arg3:str, gaas_server): edgelist = cudf.DataFrame(columns=[arg1, arg2, arg3], data=[(0, 1, 2), (88, 99, 77)]) pG = PropertyGraph() pG.add_edge_data(edgelist, vertex_col_names=(arg1, arg2)) return pG """ graph_creation_extension_long_running_file_contents = """ import time import cudf from cugraph.experimental import PropertyGraph def long_running_graph_creation_function(gaas_server): time.sleep(10) pG = PropertyGraph() return pG """ graph_creation_extension_no_facade_arg_file_contents = """ import time import cudf from cugraph.experimental import PropertyGraph def graph_creation_function(arg1, arg2): time.sleep(10) pG = PropertyGraph() return pG """ graph_creation_extension_bad_arg_order_file_contents = """ import time import cudf from cugraph.experimental import PropertyGraph def graph_creation_function(gaas_server, arg1, arg2): pG = PropertyGraph() return pG """ graph_creation_extension_empty_graph_file_contents = """ import time import cudf from cugraph.experimental import PropertyGraph, MGPropertyGraph def graph_creation_function(gaas_server): if gaas_server.is_mg: pG = MGPropertyGraph() else: pG = PropertyGraph() return pG """ graph_creation_extension_big_vertex_ids_file_contents = """ import time import cudf import cupy import dask_cudf from cugraph.experimental import PropertyGraph, MGPropertyGraph def graph_creation_function_vert_and_edge_data_big_vertex_ids(gaas_server): if gaas_server.is_mg: pG = MGPropertyGraph() else: pG = PropertyGraph() big_num = (2**32)+1 df = cudf.DataFrame({"vert_id":cupy.arange(big_num, big_num+10, dtype="int64"), "vert_prop":cupy.arange(big_num+100, big_num+110, dtype="int64")}) if gaas_server.is_mg: df = dask_cudf.from_cudf(df, npartitions=2) pG.add_vertex_data(df, vertex_col_name="vert_id") df = cudf.DataFrame({"src":cupy.arange(big_num, big_num+10, dtype="int64"), "dst":cupy.arange(big_num+1,big_num+11, dtype="int64"), "edge_prop":cupy.arange(big_num+100, big_num+110, dtype="int64")}) if gaas_server.is_mg: df = dask_cudf.from_cudf(df, npartitions=2) pG.add_edge_data(df, vertex_col_names=["src", "dst"]) return pG """ ################################################################################ ## module scope fixtures @pytest.fixture(scope="module") def graph_creation_extension1(): with TemporaryDirectory() as tmp_extension_dir: # write graph creation extension .py file graph_creation_extension_file = open( Path(tmp_extension_dir)/"custom_graph_creation_extension.py", "w") print(graph_creation_extension1_file_contents, file=graph_creation_extension_file, flush=True) yield tmp_extension_dir @pytest.fixture(scope="module") def graph_creation_extension2(): with TemporaryDirectory() as tmp_extension_dir: # write graph creation extension .py file graph_creation_extension_file = open( Path(tmp_extension_dir)/"my_graph_creation_extension.py", "w") print(graph_creation_extension2_file_contents, file=graph_creation_extension_file, flush=True) yield tmp_extension_dir @pytest.fixture(scope="module") def graph_creation_extension_long_running(): with TemporaryDirectory() as tmp_extension_dir: # write graph creation extension .py file graph_creation_extension_file = open( Path(tmp_extension_dir)/"long_running_graph_creation_extension.py", "w") print(graph_creation_extension_long_running_file_contents, file=graph_creation_extension_file, flush=True) yield tmp_extension_dir @pytest.fixture(scope="module") def graph_creation_extension_no_facade_arg(): with TemporaryDirectory() as tmp_extension_dir: # write graph creation extension .py file graph_creation_extension_file = open( Path(tmp_extension_dir)/"graph_creation_no_facade_arg_extension.py", "w") print(graph_creation_extension_no_facade_arg_file_contents, file=graph_creation_extension_file, flush=True) yield tmp_extension_dir @pytest.fixture(scope="module") def graph_creation_extension_bad_arg_order(): with TemporaryDirectory() as tmp_extension_dir: # write graph creation extension .py file graph_creation_extension_file = open( Path(tmp_extension_dir)/"graph_creation_bad_arg_order_extension.py", "w") print(graph_creation_extension_bad_arg_order_file_contents, file=graph_creation_extension_file, flush=True) yield tmp_extension_dir @pytest.fixture(scope="module") def graph_creation_extension_big_vertex_ids(): with TemporaryDirectory() as tmp_extension_dir: # write graph creation extension .py file graph_creation_extension_file = open( Path(tmp_extension_dir)/ "graph_creation_big_vertex_ids_extension.py", "w") print(graph_creation_extension_big_vertex_ids_file_contents, file=graph_creation_extension_file, flush=True) yield tmp_extension_dir @pytest.fixture(scope="module") def graph_creation_extension_empty_graph(): with TemporaryDirectory() as tmp_extension_dir: # write graph creation extension .py file graph_creation_extension_file = open( Path(tmp_extension_dir)/ "graph_creation_empty_graph_extension.py", "w") print(graph_creation_extension_empty_graph_file_contents, file=graph_creation_extension_file, flush=True) yield tmp_extension_dir
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/test_gaas_handler.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import pickle import pytest ############################################################################### ## fixtures # The fixtures used in these tests are defined in conftest.py ############################################################################### ## tests def test_load_and_call_graph_creation_extension(graph_creation_extension2): """ Ensures load_extensions reads the extensions and makes the new APIs they add available. """ from gaas_server.gaas_handler import GaasHandler from gaas_client.exceptions import GaasError handler = GaasHandler() extension_dir = graph_creation_extension2 # DNE with pytest.raises(GaasError): handler.load_graph_creation_extensions("/path/that/does/not/exist") # Exists, but is a file with pytest.raises(GaasError): handler.load_graph_creation_extensions(__file__) # Load the extension and call the function defined in it num_files_read = handler.load_graph_creation_extensions(extension_dir) assert num_files_read == 1 # Private function should not be callable with pytest.raises(GaasError): handler.call_graph_creation_extension("__my_private_function", "()", "{}") # Function which DNE in the extension with pytest.raises(GaasError): handler.call_graph_creation_extension("bad_function_name", "()", "{}") # Wrong number of args with pytest.raises(GaasError): handler.call_graph_creation_extension("my_graph_creation_function", "('a',)", "{}") # This call should succeed and should result in a new PropertyGraph present # in the handler instance. new_graph_ID = handler.call_graph_creation_extension( "my_graph_creation_function", "('a', 'b', 'c')", "{}") assert new_graph_ID in handler.get_graph_ids() # Inspect the PG and ensure it was created from my_graph_creation_function pG = handler._get_graph(new_graph_ID) edge_props = pG.edge_property_names assert ("c" in edge_props) def test_load_and_unload_graph_creation_extension(graph_creation_extension2): """ Ensure extensions can be unloaded. """ from gaas_server.gaas_handler import GaasHandler from gaas_client.exceptions import GaasError handler = GaasHandler() extension_dir = graph_creation_extension2 # Load the extensions and ensure it can be called. handler.load_graph_creation_extensions(extension_dir) new_graph_ID = handler.call_graph_creation_extension( "my_graph_creation_function", "('a', 'b', 'c')", "{}") assert new_graph_ID in handler.get_graph_ids() # Unload then try to run the same call again, which should fail handler.unload_graph_creation_extensions() with pytest.raises(GaasError): handler.call_graph_creation_extension( "my_graph_creation_function", "('a', 'b', 'c')", "{}") def test_load_and_unload_graph_creation_extension_no_args( graph_creation_extension1): """ Test graph_creation_extension1 which contains an extension with no args. """ from gaas_server.gaas_handler import GaasHandler handler = GaasHandler() extension_dir = graph_creation_extension1 # Load the extensions and ensure it can be called. handler.load_graph_creation_extensions(extension_dir) new_graph_ID = handler.call_graph_creation_extension( "custom_graph_creation_function", "()", "{}") assert new_graph_ID in handler.get_graph_ids() def test_load_and_unload_graph_creation_extension_no_facade_arg( graph_creation_extension_no_facade_arg): """ Test an extension that has no facade arg. """ from gaas_server.gaas_handler import GaasHandler handler = GaasHandler() extension_dir = graph_creation_extension_no_facade_arg # Load the extensions and ensure it can be called. handler.load_graph_creation_extensions(extension_dir) new_graph_ID = handler.call_graph_creation_extension( "graph_creation_function", "('a')", "{'arg2':33}") assert new_graph_ID in handler.get_graph_ids() def test_load_and_unload_graph_creation_extension_bad_arg_order( graph_creation_extension_bad_arg_order): """ Test an extension that has the facade arg in the wrong position. """ from gaas_server.gaas_handler import GaasHandler from gaas_client.exceptions import GaasError handler = GaasHandler() extension_dir = graph_creation_extension_bad_arg_order # Load the extensions and ensure it can be called. handler.load_graph_creation_extensions(extension_dir) with pytest.raises(GaasError): handler.call_graph_creation_extension( "graph_creation_function", "('a', 'b')", "{}") def test_get_graph_data_large_vertex_ids( graph_creation_extension_big_vertex_ids): """ Test that graphs with large vertex ID values (>int32) are handled. """ from gaas_server.gaas_handler import GaasHandler handler = GaasHandler() extension_dir = graph_creation_extension_big_vertex_ids # Load the extension and ensure it can be called. handler.load_graph_creation_extensions(extension_dir) new_graph_id = handler.call_graph_creation_extension( "graph_creation_function_vert_and_edge_data_big_vertex_ids", "()", "{}") invalid_vert_id = 2 vert_data = handler.get_graph_vertex_data( id_or_ids=invalid_vert_id, null_replacement_value=0, graph_id=new_graph_id, property_keys=None) assert len(pickle.loads(vert_data)) == 0 large_vert_id = (2**32)+1 vert_data = handler.get_graph_vertex_data( id_or_ids=large_vert_id, null_replacement_value=0, graph_id=new_graph_id, property_keys=None) assert len(pickle.loads(vert_data)) == 1 invalid_edge_id = (2**32)+1 edge_data = handler.get_graph_edge_data( id_or_ids=invalid_edge_id, null_replacement_value=0, graph_id=new_graph_id, property_keys=None) assert len(pickle.loads(edge_data)) == 0 small_edge_id = 2 edge_data = handler.get_graph_edge_data( id_or_ids=small_edge_id, null_replacement_value=0, graph_id=new_graph_id, property_keys=None) assert len(pickle.loads(edge_data)) == 1 def test_get_graph_data_empty_graph(graph_creation_extension_empty_graph): """ Tests that get_graph_*_data() handles empty graphs correctly. """ from gaas_server.gaas_handler import GaasHandler handler = GaasHandler() extension_dir = graph_creation_extension_empty_graph # Load the extension and ensure it can be called. handler.load_graph_creation_extensions(extension_dir) new_graph_id = handler.call_graph_creation_extension( "graph_creation_function", "()", "{}") invalid_vert_id = 2 vert_data = handler.get_graph_vertex_data( id_or_ids=invalid_vert_id, null_replacement_value=0, graph_id=new_graph_id, property_keys=None) assert len(pickle.loads(vert_data)) == 0 invalid_edge_id = 2 edge_data = handler.get_graph_edge_data( id_or_ids=invalid_vert_id, null_replacement_value=0, graph_id=new_graph_id, property_keys=None) assert len(pickle.loads(edge_data)) == 0
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/demo1.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from pathlib import Path from gaas_client import GaasClient # Use the location of this file for finding various data files this_dir = Path(__file__).parent # Use the defaults for host and port (localhost, 9090) # Assume the server is running and using the same defaults! client = GaasClient() # Remove any graphs from a previous session! for gid in client.get_graph_ids(): client.delete_graph(gid) # Add vertex and edge data to the default graph instance (the default graph does # not require a graph ID to access) # The file names specified must be visible to the server. client.load_csv_as_vertex_data( (this_dir/"vertex_data.csv").absolute().as_posix(), dtypes=["int32", "string", "int32"], vertex_col_name="vertex_id", header="infer") client.load_csv_as_edge_data( (this_dir/"edge_data.csv").absolute().as_posix(), dtypes=["int32", "int32", "string", "int32"], vertex_col_names=("src", "dst"), header="infer") # Verify the number of edges assert client.get_num_edges() == 10000 # Run sampling and get a path, need to extract a subgraph first extracted_gid = client.extract_subgraph(allow_multi_edges=True) start_vertices = 11 max_depth = 2 (vertex_paths, edge_weights, path_sizes) = \ client.node2vec(start_vertices, max_depth, extracted_gid) # Create another graph on the server graph2 = client.create_graph() # Verify that both the default and new graph are present on the server assert len(client.get_graph_ids()) == 3 # Add edge data to the new graph client.load_csv_as_vertex_data( (this_dir/"vertex_data.csv").absolute().as_posix(), dtypes=["int32", "string", "int32"], vertex_col_name="vertex_id", header="infer", graph_id=graph2) # Remove the new graph from the server and verify client.delete_graph(graph2) assert len(client.get_graph_ids()) == 2
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/multi_client_test_runner.sh
# source this script (ie. do not run it) for easier job control from the shell # FIXME: change this and/or GaaS so PYTHONPATH is not needed PYTHONPATH=/Projects/GaaS/python python client1_script.py & sleep 1 PYTHONPATH=/Projects/GaaS/python python client2_script.py & PYTHONPATH=/Projects/GaaS/python python client2_script.py & PYTHONPATH=/Projects/GaaS/python python client2_script.py & PYTHONPATH=/Projects/GaaS/python python client2_script.py & PYTHONPATH=/Projects/GaaS/python python client2_script.py & PYTHONPATH=/Projects/GaaS/python python client2_script.py & PYTHONPATH=/Projects/GaaS/python python client2_script.py
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/tests/test_e2e.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import os import sys import subprocess import time from collections.abc import Sequence import pytest from . import data ############################################################################### ## fixtures @pytest.fixture(scope="module") def server(graph_creation_extension1): """ Start a GaaS server, stop it when done with the fixture. This also uses graph_creation_extension1 to preload a graph creation extension. """ from gaas_server import server from gaas_client import GaasClient from gaas_client.exceptions import GaasError server_file = server.__file__ server_process = None host = "localhost" port = 9090 graph_creation_extension_dir = graph_creation_extension1 client = GaasClient(host, port) try: client.uptime() print("\nfound running server, assuming it should be used for testing!") yield except GaasError: # A server was not found, so start one for testing then stop it when # testing is done. # pytest will update sys.path based on the tests it discovers, and for # this source tree, an entry for the parent of this "tests" directory # will be added. The parent to this "tests" directory also allows # imports to find the GaaS sources, so in oder to ensure the server # that's started is also using the same sources, the PYTHONPATH env # should be set to the sys.path being used in this process. env_dict = os.environ.copy() env_dict["PYTHONPATH"] = ":".join(sys.path) with subprocess.Popen( [sys.executable, server_file, "--host", host, "--port", str(port), "--graph-creation-extension-dir", graph_creation_extension_dir], env=env_dict, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True) as server_process: try: print("\nLaunched GaaS server, waiting for it to start...", end="", flush=True) max_retries = 10 retries = 0 while retries < max_retries: try: client.uptime() print("started.") break except GaasError: time.sleep(1) retries += 1 if retries >= max_retries: raise RuntimeError("error starting server") except: if server_process.poll() is None: server_process.terminate() raise # yield control to the tests yield # tests are done, now stop the server print("\nTerminating server...", end="", flush=True) server_process.terminate() print("done.", flush=True) @pytest.fixture(scope="function") def client(server): """ Creates a client instance to the running server, closes the client when the fixture is no longer used by tests. """ from gaas_client import GaasClient, defaults client = GaasClient(defaults.host, defaults.port) for gid in client.get_graph_ids(): client.delete_graph(gid) #client.unload_graph_creation_extensions() # yield control to the tests yield client # tests are done, now stop the server client.close() @pytest.fixture(scope="function") def client_with_edgelist_csv_loaded(client): """ Loads the karate CSV into the default graph on the server. """ test_data = data.edgelist_csv_data["karate"] client.load_csv_as_edge_data(test_data["csv_file_name"], dtypes=test_data["dtypes"], vertex_col_names=["0", "1"], type_name="") assert client.get_graph_ids() == [0] return (client, test_data) @pytest.fixture(scope="function") def client_with_property_csvs_loaded(client): """ Loads each of the vertex and edge property CSVs into the default graph on the server. """ merchants = data.property_csv_data["merchants"] users = data.property_csv_data["users"] transactions = data.property_csv_data["transactions"] relationships = data.property_csv_data["relationships"] referrals = data.property_csv_data["referrals"] client.load_csv_as_vertex_data(merchants["csv_file_name"], dtypes=merchants["dtypes"], vertex_col_name=merchants["vert_col_name"], header=0, type_name="merchants") client.load_csv_as_vertex_data(users["csv_file_name"], dtypes=users["dtypes"], vertex_col_name=users["vert_col_name"], header=0, type_name="users") client.load_csv_as_edge_data(transactions["csv_file_name"], dtypes=transactions["dtypes"], vertex_col_names=\ transactions["vert_col_names"], header=0, type_name="transactions") client.load_csv_as_edge_data(relationships["csv_file_name"], dtypes=relationships["dtypes"], vertex_col_names=\ relationships["vert_col_names"], header=0, type_name="relationships") client.load_csv_as_edge_data(referrals["csv_file_name"], dtypes=referrals["dtypes"], vertex_col_names=referrals["vert_col_names"], header=0, type_name="referrals") assert client.get_graph_ids() == [0] return (client, data.property_csv_data) ############################################################################### ## tests def test_get_graph_info_key_types(client_with_property_csvs_loaded): """ Tests error handling for info keys passed in. """ from gaas_client.exceptions import GaasError (client, test_data) = client_with_property_csvs_loaded with pytest.raises(TypeError): client.get_graph_info(21) # bad key type with pytest.raises(TypeError): client.get_graph_info([21, "num_edges"]) # bad key type with pytest.raises(GaasError): client.get_graph_info("21") # bad key value with pytest.raises(GaasError): client.get_graph_info(["21"]) # bad key value with pytest.raises(GaasError): client.get_graph_info(["num_edges", "21"]) # bad key value client.get_graph_info() # valid def test_get_num_edges_default_graph(client_with_edgelist_csv_loaded): (client, test_data) = client_with_edgelist_csv_loaded assert client.get_graph_info("num_edges") == test_data["num_edges"] def test_load_csv_as_edge_data_nondefault_graph(client): from gaas_client.exceptions import GaasError test_data = data.edgelist_csv_data["karate"] with pytest.raises(GaasError): client.load_csv_as_edge_data(test_data["csv_file_name"], dtypes=test_data["dtypes"], vertex_col_names=["0", "1"], type_name="", graph_id=9999) def test_get_num_edges_nondefault_graph(client_with_edgelist_csv_loaded): from gaas_client.exceptions import GaasError (client, test_data) = client_with_edgelist_csv_loaded # Bad graph ID with pytest.raises(GaasError): client.get_graph_info("num_edges", graph_id=9999) new_graph_id = client.create_graph() client.load_csv_as_edge_data(test_data["csv_file_name"], dtypes=test_data["dtypes"], vertex_col_names=["0", "1"], type_name="", graph_id=new_graph_id) assert client.get_graph_info("num_edges") == test_data["num_edges"] assert client.get_graph_info("num_edges", graph_id=new_graph_id) \ == test_data["num_edges"] def test_node2vec(client_with_edgelist_csv_loaded): (client, test_data) = client_with_edgelist_csv_loaded extracted_gid = client.extract_subgraph() start_vertices = 11 max_depth = 2 (vertex_paths, edge_weights, path_sizes) = \ client.node2vec(start_vertices, max_depth, extracted_gid) # FIXME: consider a more thorough test assert isinstance(vertex_paths, list) and len(vertex_paths) assert isinstance(edge_weights, list) and len(edge_weights) assert isinstance(path_sizes, list) and len(path_sizes) def test_extract_subgraph(client_with_edgelist_csv_loaded): (client, test_data) = client_with_edgelist_csv_loaded Gid = client.extract_subgraph(create_using=None, selection=None, edge_weight_property="2", default_edge_weight=None, allow_multi_edges=False) # FIXME: consider a more thorough test assert Gid in client.get_graph_ids() def test_load_and_call_graph_creation_extension(client, graph_creation_extension2): """ Tests calling a user-defined server-side graph creation extension from the GaaS client. """ # The graph_creation_extension returns the tmp dir created which contains # the extension extension_dir = graph_creation_extension2 num_files_loaded = client.load_graph_creation_extensions(extension_dir) assert num_files_loaded == 1 new_graph_ID = client.call_graph_creation_extension( "my_graph_creation_function", "a", "b", "c") assert new_graph_ID in client.get_graph_ids() # Inspect the PG and ensure it was created from my_graph_creation_function # FIXME: add client APIs to allow for a more thorough test of the graph assert client.get_graph_info(["num_edges"], new_graph_ID) == 2 def test_load_and_call_graph_creation_long_running_extension( client, graph_creation_extension_long_running): """ Tests calling a user-defined server-side graph creation extension from the GaaS client. """ # The graph_creation_extension returns the tmp dir created which contains # the extension extension_dir = graph_creation_extension_long_running num_files_loaded = client.load_graph_creation_extensions(extension_dir) assert num_files_loaded == 1 new_graph_ID = client.call_graph_creation_extension( "long_running_graph_creation_function") assert new_graph_ID in client.get_graph_ids() # Inspect the PG and ensure it was created from my_graph_creation_function # FIXME: add client APIs to allow for a more thorough test of the graph assert client.get_graph_info(["num_edges"], new_graph_ID) == 0 def test_call_graph_creation_extension(client): """ Ensure the graph creation extension preloaded by the server fixture is callable. """ new_graph_ID = client.call_graph_creation_extension( "custom_graph_creation_function") assert new_graph_ID in client.get_graph_ids() # Inspect the PG and ensure it was created from # custom_graph_creation_function # FIXME: add client APIs to allow for a more thorough test of the graph assert client.get_graph_info(["num_edges"], new_graph_ID) == 3 def test_get_graph_vertex_data(client_with_property_csvs_loaded): (client, test_data) = client_with_property_csvs_loaded # FIXME: do not hardcode the shape values, get them from the input data. np_array_all_vertex_data = client.get_graph_vertex_data() assert np_array_all_vertex_data.shape == (9, 9) # The remaining tests get individual vertex data - compare those to the # all_vertex_data retrieved earlier. vert_ids = [11, 86, 89021] np_array = client.get_graph_vertex_data(vert_ids) assert np_array.shape == (3, 9) # The 1st element is the vert ID for (i, vid) in enumerate(vert_ids): assert np_array[i][0] == vid np_array = client.get_graph_vertex_data(11) assert np_array.shape == (1, 9) assert np_array[0][0] == 11 np_array = client.get_graph_vertex_data(86) assert np_array.shape == (1, 9) assert np_array[0][0] == 86 def test_get_graph_edge_data(client_with_property_csvs_loaded): (client, test_data) = client_with_property_csvs_loaded # FIXME: do not hardcode the shape values, get them from the input data. np_array_all_rows = client.get_graph_edge_data() assert np_array_all_rows.shape == (17, 11) # The remaining tests get individual edge data - compare those to the # all_edge_data retrieved earlier. edge_ids = [0, 1, 2] np_array = client.get_graph_edge_data(edge_ids) assert np_array.shape == (3, 11) # The 3rd element is the edge ID for (i, eid) in enumerate(edge_ids): assert np_array[i][2] == eid np_array = client.get_graph_edge_data(0) assert np_array.shape == (1, 11) assert np_array[0][2] == 0 np_array = client.get_graph_edge_data(1) assert np_array.shape == (1, 11) assert np_array[0][2] == 1 def test_get_graph_info(client_with_property_csvs_loaded): (client, test_data) = client_with_property_csvs_loaded info = client.get_graph_info(["num_vertices", "num_vertex_properties"]) data = (info["num_vertices"], info["num_vertex_properties"]) # FIXME: do not hardcode values, get them from the input data. assert data == (9, 7) info = client.get_graph_info(["num_edges", "num_edge_properties"]) data = (info["num_edges"], info["num_edge_properties"]) # FIXME: do not hardcode values, get them from the input data. assert data == (17, 7) def test_batched_ego_graphs(client_with_edgelist_csv_loaded): (client, test_data) = client_with_edgelist_csv_loaded extracted_gid = client.extract_subgraph() # These are known vertex IDs in the default graph loaded seeds = [0, 1, 2] results_lists = client.batched_ego_graphs( seeds, radius=1, graph_id=extracted_gid) (srcs, dsts, weights, seeds_offsets) = results_lists assert isinstance(srcs, Sequence) assert isinstance(dsts, Sequence) assert isinstance(weights, Sequence) assert len(srcs) == len(dsts) == len(weights) assert isinstance(seeds_offsets, Sequence) assert len(srcs) == seeds_offsets[-1] def test_get_edge_IDs_for_vertices(client_with_edgelist_csv_loaded): (client, test_data) = client_with_edgelist_csv_loaded extracted_gid = client.extract_subgraph() srcs = [1, 2, 3] dsts = [0, 0, 0] edge_IDs = client.get_edge_IDs_for_vertices(srcs, dsts, graph_id=extracted_gid) assert len(edge_IDs) == len(srcs) def test_uniform_neighbor_sampling(client_with_edgelist_csv_loaded): from gaas_client.exceptions import GaasError from gaas_client import defaults (client, test_data) = client_with_edgelist_csv_loaded start_list = [1, 2, 3] fanout_vals = [2, 2, 2] with_replacement = True # invalid graph type - default graph is a PG, needs an extracted subgraph with pytest.raises(GaasError): client.uniform_neighbor_sample(start_list=start_list, fanout_vals=fanout_vals, with_replacement=with_replacement, graph_id=defaults.graph_id) extracted_gid = client.extract_subgraph(renumber_graph=True) result = client.uniform_neighbor_sample(start_list=start_list, fanout_vals=fanout_vals, with_replacement=with_replacement, graph_id=extracted_gid)
0
rapidsai_public_repos/GaaS/python/tests
rapidsai_public_repos/GaaS/python/tests/data/transactions.csv
"user_id" "merchant_id" "volume" "time" "card_num" "card_type" 89021 11 33.2 1639084966.5513437 123456 "MC" 89216 4 0 1639085163.481217 8832 "CASH" 78634 16 72.0 1639084912.567394 4321 "DEBIT" 32431 4 103.2 1639084721.354346 98124 "V"
0
rapidsai_public_repos/GaaS/python/tests
rapidsai_public_repos/GaaS/python/tests/data/referrals.csv
"user_id_1" "user_id_2" "merchant_id" "stars" 89216 78634 11 5 89021 89216 4 4 89021 89216 21 3 89021 89216 11 3 89021 78634 21 4 78634 32431 11 4 78634 89216 21 3 78634 89216 21 4
0
rapidsai_public_repos/GaaS/python/tests
rapidsai_public_repos/GaaS/python/tests/data/users.csv
"user_id" "user_location" "vertical" 89021 78757 0 32431 78750 1 89216 78757 1 78634 47906 0
0
rapidsai_public_repos/GaaS/python/tests
rapidsai_public_repos/GaaS/python/tests/data/merchants.csv
"merchant_id" "merchant_location" "merchant_size" "merchant_sales" "merchant_num_employees" "merchant_name" 11 78750 44 123.2 12 "north" 4 78757 112 234.99 18 "south" 21 44145 83 992.1 27 "east" 16 47906 92 32.43 5 "west" 86 47906 192 2.43 51 "west"
0
rapidsai_public_repos/GaaS/python/tests
rapidsai_public_repos/GaaS/python/tests/data/relationships.csv
"user_id_1" "user_id_2" "relationship_type" 89216 89021 9 89216 32431 9 32431 78634 8 78634 89216 8 78634 89216 9
0
rapidsai_public_repos/GaaS/python/tests
rapidsai_public_repos/GaaS/python/tests/data/karate.csv
1 0 1.0 2 0 1.0 3 0 1.0 4 0 1.0 5 0 1.0 6 0 1.0 7 0 1.0 8 0 1.0 10 0 1.0 11 0 1.0 12 0 1.0 13 0 1.0 17 0 1.0 19 0 1.0 21 0 1.0 31 0 1.0 2 1 1.0 3 1 1.0 7 1 1.0 13 1 1.0 17 1 1.0 19 1 1.0 21 1 1.0 30 1 1.0 3 2 1.0 7 2 1.0 8 2 1.0 9 2 1.0 13 2 1.0 27 2 1.0 28 2 1.0 32 2 1.0 7 3 1.0 12 3 1.0 13 3 1.0 6 4 1.0 10 4 1.0 6 5 1.0 10 5 1.0 16 5 1.0 16 6 1.0 30 8 1.0 32 8 1.0 33 8 1.0 33 9 1.0 33 13 1.0 32 14 1.0 33 14 1.0 32 15 1.0 33 15 1.0 32 18 1.0 33 18 1.0 33 19 1.0 32 20 1.0 33 20 1.0 32 22 1.0 33 22 1.0 25 23 1.0 27 23 1.0 29 23 1.0 32 23 1.0 33 23 1.0 25 24 1.0 27 24 1.0 31 24 1.0 31 25 1.0 29 26 1.0 33 26 1.0 33 27 1.0 31 28 1.0 33 28 1.0 32 29 1.0 33 29 1.0 32 30 1.0 33 30 1.0 32 31 1.0 33 31 1.0 33 32 1.0 0 1 1.0 0 2 1.0 0 3 1.0 0 4 1.0 0 5 1.0 0 6 1.0 0 7 1.0 0 8 1.0 0 10 1.0 0 11 1.0 0 12 1.0 0 13 1.0 0 17 1.0 0 19 1.0 0 21 1.0 0 31 1.0 1 2 1.0 1 3 1.0 1 7 1.0 1 13 1.0 1 17 1.0 1 19 1.0 1 21 1.0 1 30 1.0 2 3 1.0 2 7 1.0 2 8 1.0 2 9 1.0 2 13 1.0 2 27 1.0 2 28 1.0 2 32 1.0 3 7 1.0 3 12 1.0 3 13 1.0 4 6 1.0 4 10 1.0 5 6 1.0 5 10 1.0 5 16 1.0 6 16 1.0 8 30 1.0 8 32 1.0 8 33 1.0 9 33 1.0 13 33 1.0 14 32 1.0 14 33 1.0 15 32 1.0 15 33 1.0 18 32 1.0 18 33 1.0 19 33 1.0 20 32 1.0 20 33 1.0 22 32 1.0 22 33 1.0 23 25 1.0 23 27 1.0 23 29 1.0 23 32 1.0 23 33 1.0 24 25 1.0 24 27 1.0 24 31 1.0 25 31 1.0 26 29 1.0 26 33 1.0 27 33 1.0 28 31 1.0 28 33 1.0 29 32 1.0 29 33 1.0 30 32 1.0 30 33 1.0 31 32 1.0 31 33 1.0 32 33 1.0
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_server/server.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import argparse from pathlib import Path from gaas_client import defaults from gaas_client.gaas_thrift import create_server from gaas_server.gaas_handler import GaasHandler def create_handler(graph_creation_extension_dir=None, dask_scheduler_file=None): """ Create and return a GaasHandler instance initialized with options. Setting graph_creation_extension_dir to a valid dir results in the handler loading graph creation extensions from that dir. """ handler = GaasHandler() if graph_creation_extension_dir is not None: handler.load_graph_creation_extensions(graph_creation_extension_dir) if dask_scheduler_file is not None: # FIXME: if initialize_dask_client(None) is called, it creates a # LocalCUDACluster. Add support for this via a different CLI option? handler.initialize_dask_client(dask_scheduler_file) return handler def start_server_blocking(handler, host, port): """ Start the GaaS server on host/port, using handler as the request handler instance. This call blocks indefinitely until Ctrl-C. """ server = create_server(handler, host=host, port=port) server.serve() # blocks until Ctrl-C (kill -2) if __name__ == "__main__": arg_parser = argparse.ArgumentParser( description="GaaS - (cu)Graph as a Service") arg_parser.add_argument("--host", type=str, default=defaults.host, help="hostname the server should use, default " \ f"is {defaults.host}") arg_parser.add_argument("--port", type=int, default=defaults.port, help="port the server should listen on, default " \ f"is {defaults.port}") arg_parser.add_argument("--graph-creation-extension-dir", type=Path, help="dir to load graph creation extension " \ "functions from") arg_parser.add_argument("--dask-scheduler-file", type=Path, help="file generated by a dask scheduler, used " \ "for connecting to a dask cluster for MG support") args = arg_parser.parse_args() handler = create_handler(args.graph_creation_extension_dir, args.dask_scheduler_file) print("Starting GaaS...", flush=True) start_server_blocking(handler, args.host, args.port) print("done.")
0
rapidsai_public_repos/GaaS/python
rapidsai_public_repos/GaaS/python/gaas_server/gaas_handler.py
# Copyright (c) 2022, NVIDIA CORPORATION. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from pathlib import Path import importlib import time import traceback from inspect import signature import numpy as np import cudf import dask_cudf import cugraph from dask.distributed import Client from dask_cuda.initialize import initialize as dask_initialize from cugraph.experimental import PropertyGraph, MGPropertyGraph from cugraph.dask.comms import comms as Comms from cugraph import uniform_neighbor_sample from cugraph.dask import uniform_neighbor_sample as mg_uniform_neighbor_sample from cugraph.structure.graph_implementation.simpleDistributedGraph import ( simpleDistributedGraphImpl, ) from gaas_client import defaults from gaas_client.exceptions import GaasError from gaas_client.types import ( BatchedEgoGraphsResult, Node2vecResult, UniformNeighborSampleResult, ValueWrapper, GraphVertexEdgeIDWrapper, ) def call_algo(sg_algo_func, G, **kwargs): """ Calls the appropriate algo function based on the graph G being MG or SG. If G is SG, sg_algo_func will be called and passed kwargs, otherwise the MG version of sg_algo_func will be called with kwargs. """ is_mg_graph = isinstance(G._Impl, simpleDistributedGraphImpl) if sg_algo_func is uniform_neighbor_sample: if is_mg_graph: possible_args = ["start_list", "fanout_vals", "with_replacement"] kwargs_to_pass = {a:kwargs[a] for a in possible_args if a in kwargs} data = mg_uniform_neighbor_sample(G, **kwargs_to_pass) data = data.compute() else: possible_args = ["start_list", "fanout_vals", "with_replacement", "is_edge_ids"] kwargs_to_pass = {a:kwargs[a] for a in possible_args if a in kwargs} data = uniform_neighbor_sample(G, **kwargs_to_pass) return UniformNeighborSampleResult( sources=data.sources.values_host, destinations=data.destinations.values_host, indices=data.indices.values_host ) else: raise RuntimeError(f"internal error: {sg_algo_func} is not supported") class ExtensionServerFacade: """ Instances of this class are passed to server extension functions to be used to access various aspects of the GaaS server from within the extension. This provideas a means to insulate the GaaS handler (considered here to be the "server") from direct access by end user extensions, allowing extension code to query/access the server as needed without giving extensions the ability to call potentially unsafe methods directly on the GaasHandler. An example is using an instance of a ExtensionServerFacade to allow a Graph creation extension to query the SG/MG state the server is using in order to determine how to create a Graph instance. """ def __init__(self, gaas_handler): self.__handler = gaas_handler @property def is_mg(self): return self.__handler.is_mg def get_server_info(self): # The handler returns objects suitable for serialization over RPC so # convert them to regular py objs since this call is originating # server-side. return {k:ValueWrapper(v).get_py_obj() for (k, v) in self.__handler.get_server_info().items()} class GaasHandler: """ Class which handles RPC requests for a GaasService. """ # The name of the param that should be set to a ExtensionServerFacade # instance for server extension functions. __server_facade_extension_param_name = "gaas_server" def __init__(self): self.__next_graph_id = defaults.graph_id + 1 self.__graph_objs = {} self.__graph_creation_extensions = {} self.__dask_client = None self.__dask_cluster = None self.__start_time = int(time.time()) def __del__(self): self.shutdown_dask_client() ############################################################################ # Environment management @property def is_mg(self): """ True if the GaasHandler has multiple GPUs available via a dask cluster. """ return self.__dask_client is not None def uptime(self): """ Return the server uptime in seconds. This is often used as a "ping". """ return int(time.time()) - self.__start_time def get_server_info(self): """ Returns a dictionary of meta-data about the server. Dictionary items are string:union_objs, where union_objs are Value "unions" used for RPC serialization. """ # FIXME: expose self.__dask_client.scheduler_info() as needed if self.__dask_client is not None: num_gpus = len(self.__dask_client.scheduler_info()["workers"]) else: # The assumption is that GaaS requires at least 1 GPU (ie. # currently there is no CPU-only version of GaaS) num_gpus = 1 return {"num_gpus": ValueWrapper(num_gpus).union} def load_graph_creation_extensions(self, extension_dir_path): """ Loads ("imports") all modules matching the pattern *_extension.py in the directory specified by extension_dir_path. The modules are searched and their functions are called (if a match is found) when call_graph_creation_extension() is called. """ extension_dir = Path(extension_dir_path) if (not extension_dir.exists()) or (not extension_dir.is_dir()): raise GaasError(f"bad directory: {extension_dir}") num_files_read = 0 for ext_file in extension_dir.glob("*_extension.py"): module_name = ext_file.stem spec = importlib.util.spec_from_file_location(module_name, ext_file) module = importlib.util.module_from_spec(spec) spec.loader.exec_module(module) self.__graph_creation_extensions[module_name] = module num_files_read += 1 return num_files_read def unload_graph_creation_extensions(self): """ Removes all graph creation extensions. """ self.__graph_creation_extensions.clear() def call_graph_creation_extension(self, func_name, func_args_repr, func_kwargs_repr): """ Calls the graph creation extension function func_name and passes it the eval'd func_args_repr and func_kwargs_repr objects. The arg/kwarg reprs are eval'd prior to calling in order to pass actual python objects to func_name (this is needed to allow arbitrary arg objects to be serialized as part of the RPC call from the client). func_name cannot be a private name (name starting with __). All loaded extension modules are checked when searching for func_name, and the first extension module that contains it will have its function called. """ if not(func_name.startswith("__")): for module in self.__graph_creation_extensions.values(): # Ignore private functions func = getattr(module, func_name, None) if func is not None: func_args = eval(func_args_repr) func_kwargs = eval(func_kwargs_repr) func_sig = signature(func) func_params = list(func_sig.parameters.keys()) facade_param = self.__server_facade_extension_param_name # Graph creation extensions that have the last arg named # self.__server_facade_extension_param_name are passed a # ExtensionServerFacade instance to allow them to query the # "server" in a safe way, if needed. if (facade_param in func_params): if func_params[-1] == facade_param: func_kwargs[facade_param] = \ ExtensionServerFacade(self) else: raise GaasError(f"{facade_param}, if specified, " "must be the last param.") try: graph_obj = func(*func_args, **func_kwargs) except: # FIXME: raise a more detailed error raise GaasError(f"error running {func_name} : " f"{traceback.format_exc()}") return self.__add_graph(graph_obj) raise GaasError(f"{func_name} is not a graph creation extension") def initialize_dask_client(self, dask_scheduler_file=None): """ Initialize a dask client to be used for MG operations. """ if dask_scheduler_file is not None: # Env var UCX_MAX_RNDV_RAILS=1 must be set too. dask_initialize(enable_tcp_over_ucx=True, enable_nvlink=True, enable_infiniband=True, enable_rdmacm=True, # net_devices="mlx5_0:1", ) self.__dask_client = Client(scheduler_file=dask_scheduler_file) else: # FIXME: LocalCUDACluster init. Implement when tests are in place. raise NotImplementedError if not Comms.is_initialized(): Comms.initialize(p2p=True) def shutdown_dask_client(self): """ Shutdown/cleanup the dask client for this handler instance. """ if self.__dask_client is not None: Comms.destroy() self.__dask_client.close() if self.__dask_cluster is not None: self.__dask_cluster.close() self.__dask_cluster = None self.__dask_client = None ############################################################################ # Graph management def create_graph(self): """ Create a new graph associated with a new unique graph ID, return the new graph ID. """ pG = self.__create_graph() return self.__add_graph(pG) def delete_graph(self, graph_id): """ Remove the graph identified by graph_id from the server. """ dG = self.__graph_objs.pop(graph_id, None) if dG is None: raise GaasError(f"invalid graph_id {graph_id}") del dG print(f'deleted graph with id {graph_id}') def get_graph_ids(self): """ Returns a list of the graph IDs currently in use. """ return list(self.__graph_objs.keys()) def get_graph_info(self, keys, graph_id): """ Returns a dictionary of meta-data about the graph identified by graph_id. If keys passed, only returns the values in keys. Dictionary items are string:union_objs, where union_objs are Value "unions" used for RPC serialization. """ valid_keys = set(["num_vertices", "num_vertices_from_vertex_data", "num_edges", "num_vertex_properties", "num_edge_properties", ]) if len(keys) == 0: keys = valid_keys else: invalid_keys = set(keys) - valid_keys if len(invalid_keys) != 0: raise GaasError(f"got invalid keys: {invalid_keys}") G = self._get_graph(graph_id) info = {} if isinstance(G, (PropertyGraph, MGPropertyGraph)): for k in keys: if k == "num_vertices": info[k] = G.get_num_vertices() elif k == "num_vertices_from_vertex_data": info[k] = G.get_num_vertices(include_edge_data=False) elif k == "num_edges": info[k] = G.get_num_edges() elif k == "num_vertex_properties": info[k] = len(G.vertex_property_names) elif k == "num_edge_properties": info[k] = len(G.edge_property_names) else: for k in keys: if k == "num_vertices": info[k] = G.number_of_vertices() elif k == "num_vertices_from_vertex_data": info[k] = 0 elif k == "num_edges": info[k] = G.number_of_edges() elif k == "num_vertex_properties": info[k] = 0 elif k == "num_edge_properties": info[k] = 0 return {key:ValueWrapper(value).union for (key, value) in info.items()} def get_graph_type(self, graph_id): """ Returns a string repr of the graph type associated with graph_id. """ return repr(type(self._get_graph(graph_id))) def load_csv_as_vertex_data(self, csv_file_name, delimiter, dtypes, header, vertex_col_name, type_name, property_columns, graph_id, names ): """ Given a CSV csv_file_name present on the server's file system, read it and apply it as edge data to the graph specified by graph_id, or the default graph if not specified. """ pG = self._get_graph(graph_id) if header == -1: header = "infer" elif header == -2: header = None if len(names) == 0: names = None # FIXME: error check that file exists # FIXME: error check that edgelist was read correctly try: gdf = self.__get_dataframe_from_csv(csv_file_name, delimiter=delimiter, dtypes=dtypes, header=header, names=names) pG.add_vertex_data(gdf, type_name=type_name, vertex_col_name=vertex_col_name, property_columns=property_columns) except: raise GaasError(f"{traceback.format_exc()}") def load_csv_as_edge_data(self, csv_file_name, delimiter, dtypes, header, vertex_col_names, type_name, property_columns, graph_id, names ): """ Given a CSV csv_file_name present on the server's file system, read it and apply it as vertex data to the graph specified by graph_id, or the default graph if not specified. """ pG = self._get_graph(graph_id) # FIXME: error check that file exists # FIXME: error check that edgelist read correctly if header == -1: header = "infer" elif header == -2: header = None if len(names) == 0: names = None try: gdf = self.__get_dataframe_from_csv(csv_file_name, delimiter=delimiter, dtypes=dtypes, header=header, names=names) pG.add_edge_data(gdf, type_name=type_name, vertex_col_names=vertex_col_names, property_columns=property_columns) except: raise GaasError(f"{traceback.format_exc()}") # FIXME: ensure edge IDs can also be filtered by edge type # See: https://github.com/rapidsai/cugraph/issues/2655 def get_edge_IDs_for_vertices(self, src_vert_IDs, dst_vert_IDs, graph_id): """ Return a list of edge IDs corresponding to the vertex IDs in each of src_vert_IDs and dst_vert_IDs that, when combined, define an edge in the graph associated with graph_id. For example, if src_vert_IDs is [0, 1, 2] and dst_vert_IDs is [7, 8, 9], return the edge IDs for edges (0, 7), (1, 8), and (2, 9). graph_id must be associated with a Graph extracted from a PropertyGraph (MG or SG). """ G = self._get_graph(graph_id) if isinstance(G, (PropertyGraph, MGPropertyGraph)): raise GaasError("get_edge_IDs_for_vertices() only accepts an " "extracted subgraph ID, got an ID for a " f"{type(G)}.") return self.__get_edge_IDs_from_graph_edge_data(G, src_vert_IDs, dst_vert_IDs) def extract_subgraph(self, create_using, selection, edge_weight_property, default_edge_weight, allow_multi_edges, renumber_graph, add_edge_data, graph_id ): """ Extract a subgraph, return a new graph ID """ pG = self._get_graph(graph_id) if not(isinstance(pG, (PropertyGraph, MGPropertyGraph))): raise GaasError("extract_subgraph() can only be called on a graph " "with properties.") # Convert defaults needed for the RPC API into defaults used by # PropertyGraph.extract_subgraph() create_using = create_using or cugraph.Graph selection = selection or None edge_weight_property = edge_weight_property or None # FIXME: create_using and selection should not be strings at this point try: G = pG.extract_subgraph(create_using, selection, edge_weight_property, default_edge_weight, allow_multi_edges, renumber_graph, add_edge_data) except: raise GaasError(f"{traceback.format_exc()}") return self.__add_graph(G) def get_graph_vertex_data(self, id_or_ids, null_replacement_value, graph_id, property_keys): """ Returns the vertex data as a serialized numpy array for the given id_or_ids. null_replacement_value must be provided if the data contains NA values, since NA values cannot be serialized. """ pG = self._get_graph(graph_id) ids = GraphVertexEdgeIDWrapper(id_or_ids).get_py_obj() if ids == -1: ids = None elif not isinstance(ids, list): ids = [ids] if property_keys == []: columns = None else: columns = property_keys df = pG.get_vertex_data(vertex_ids=ids, columns=columns) return self.__get_graph_data_as_numpy_bytes(df, null_replacement_value) def get_graph_edge_data(self, id_or_ids, null_replacement_value, graph_id, property_keys): """ Returns the edge data as a serialized numpy array for the given id_or_ids. null_replacement_value must be provided if the data contains NA values, since NA values cannot be serialized. """ pG = self._get_graph(graph_id) ids = GraphVertexEdgeIDWrapper(id_or_ids).get_py_obj() if ids == -1: ids = None elif not isinstance(ids, list): ids = [ids] if property_keys == []: columns = None else: columns = property_keys df = pG.get_edge_data(edge_ids=ids, columns=columns) return self.__get_graph_data_as_numpy_bytes(df, null_replacement_value) def is_vertex_property(self, property_key, graph_id): G = self._get_graph(graph_id) if isinstance(G, (PropertyGraph, MGPropertyGraph)): return property_key in G.vertex_property_names raise GaasError('Graph does not contain properties') def is_edge_property(self, property_key, graph_id): G = self._get_graph(graph_id) if isinstance(G, (PropertyGraph, MGPropertyGraph)): return property_key in G.edge_property_names raise GaasError('Graph does not contain properties') ############################################################################ # Algos def batched_ego_graphs(self, seeds, radius, graph_id): """ """ st=time.time() print("\n----- [GaaS] -----> starting egonet", flush=True) # FIXME: finish docstring above # FIXME: exception handling G = self._get_graph(graph_id) # FIXME: write test to catch an MGPropertyGraph being passed in if isinstance(G, PropertyGraph): raise GaasError("batched_ego_graphs() cannot operate directly on " "a graph with properties, call extract_subgraph() " "then call batched_ego_graphs() on the extracted " "subgraph instead.") try: # FIXME: update this to use call_algo() # FIXME: this should not be needed, need to update # cugraph.batched_ego_graphs to also accept a list seeds = cudf.Series(seeds, dtype="int32") st2=time.time() print(" ----- [GaaS] -----> calling cuGraph", flush=True) (ego_edge_list, seeds_offsets) = \ cugraph.batched_ego_graphs(G, seeds, radius) print(f" ----- [GaaS] -----> FINISHED calling cuGraph, time was: {time.time()-st2}s", flush=True) st2=time.time() print(" ----- [GaaS] -----> copying to host", flush=True) print(f" ----- [GaaS] -----> {len(ego_edge_list['src'])} num edges", flush=True) #batched_ego_graphs_result = BatchedEgoGraphsResult( # src_verts=ego_edge_list["src"].values_host.tobytes(), #int32 # dst_verts=ego_edge_list["dst"].values_host.tobytes(), #int32 # edge_weights=ego_edge_list["weight"].values_host.tobytes(), #float64 # seeds_offsets=seeds_offsets.values_host.tobytes() #int64 #) batched_ego_graphs_result = BatchedEgoGraphsResult( src_verts=ego_edge_list["src"].values_host, dst_verts=ego_edge_list["dst"].values_host, edge_weights=ego_edge_list["weight"].values_host, seeds_offsets=seeds_offsets.values_host ) print(f" ----- [GaaS] -----> FINISHED copying to host, time was: {time.time()-st2}s", flush=True) return batched_ego_graphs_result except: raise GaasError(f"{traceback.format_exc()}") print(f"----- [GaaS] -----> FINISHED egonet, time was: {time.time()-st}s", flush=True) return batched_ego_graphs_result def node2vec(self, start_vertices, max_depth, graph_id): """ """ # FIXME: finish docstring above # FIXME: exception handling G = self._get_graph(graph_id) # FIXME: write test to catch an MGPropertyGraph being passed in if isinstance(G, PropertyGraph): raise GaasError("node2vec() cannot operate directly on a graph with" " properties, call extract_subgraph() then call " "node2vec() on the extracted subgraph instead.") try: # FIXME: update this to use call_algo() # FIXME: this should not be needed, need to update cugraph.node2vec to # also accept a list start_vertices = cudf.Series(start_vertices, dtype="int32") (paths, weights, path_sizes) = \ cugraph.node2vec(G, start_vertices, max_depth) node2vec_result = Node2vecResult( vertex_paths = paths.values_host, edge_weights = weights.values_host, path_sizes = path_sizes.values_host, ) except: raise GaasError(f"{traceback.format_exc()}") return node2vec_result def uniform_neighbor_sample(self, start_list, fanout_vals, with_replacement, graph_id, ): G = self._get_graph(graph_id) if isinstance(G, (MGPropertyGraph, PropertyGraph)): raise GaasError("uniform_neighbor_sample() cannot operate directly " "on a graph with properties, call " "extract_subgraph() then call " "uniform_neighbor_sample() on the extracted " "subgraph instead.") try: return call_algo( uniform_neighbor_sample, G, start_list=start_list, fanout_vals=fanout_vals, with_replacement=with_replacement ) except: raise GaasError(f"{traceback.format_exc()}") def pagerank(self, graph_id): """ """ raise NotImplementedError ############################################################################ # "Protected" interface - used for both implementation and test/debug. Will # not be exposed to a GaaS client. def _get_graph(self, graph_id): """ Return the cuGraph Graph object associated with graph_id. If the graph_id is the default graph ID and the default graph has not been created, then instantiate a new PropertyGraph as the default graph and return it. """ pG = self.__graph_objs.get(graph_id) # Always create the default graph if it does not exist if pG is None: if graph_id == defaults.graph_id: pG = self.__create_graph() self.__graph_objs[graph_id] = pG else: raise GaasError(f"invalid graph_id {graph_id}") return pG ############################################################################ # Private def __get_dataframe_from_csv(self, csv_file_name, delimiter, dtypes, header, names): """ Read a CSV into a DataFrame and return it. This will use either a cuDF DataFrame or a dask_cudf DataFrame based on if the handler is configured to use a dask cluster or not. """ gdf = cudf.read_csv(csv_file_name, delimiter=delimiter, dtype=dtypes, header=header, names=names) if self.is_mg: num_gpus = len(self.__dask_client.scheduler_info()["workers"]) return dask_cudf.from_cudf(gdf, npartitions=num_gpus) return gdf def __add_graph(self, G): """ Create a new graph ID for G and add G to the internal mapping of graph ID:graph instance. """ gid = self.__next_graph_id self.__graph_objs[gid] = G self.__next_graph_id += 1 return gid def __create_graph(self): """ Instantiate a graph object using a type appropriate for the handler ( either SG or MG) """ return MGPropertyGraph() if self.is_mg else PropertyGraph() # FIXME: consider adding this to PropertyGraph def __remove_internal_columns(self, pg_column_names): """ Removes all column names from pg_column_names that are "internal" (ie. used for PropertyGraph bookkeeping purposes only) """ internal_column_names=[PropertyGraph.vertex_col_name, PropertyGraph.src_col_name, PropertyGraph.dst_col_name, PropertyGraph.type_col_name, PropertyGraph.edge_id_col_name, PropertyGraph.vertex_id_col_name, PropertyGraph.weight_col_name] # Create a list of user-visible columns by removing the internals while # preserving order user_visible_column_names = list(pg_column_names) for internal_column_name in internal_column_names: if internal_column_name in user_visible_column_names: user_visible_column_names.remove(internal_column_name) return user_visible_column_names # FIXME: consider adding this to PropertyGraph def __get_edge_IDs_from_graph_edge_data(self, G, src_vert_IDs, dst_vert_IDs): """ Return a list of edge IDs corresponding to the vertex IDs in each of src_vert_IDs and dst_vert_IDs that, when combined, define an edge in G. For example, if src_vert_IDs is [0, 1, 2] and dst_vert_IDs is [7, 8, 9], return the edge IDs for edges (0, 7), (1, 8), and (2, 9). G must have an "edge_data" attribute. """ edge_IDs = [] num_edges = len(src_vert_IDs) for i in range(num_edges): src_mask = G.edge_data[PropertyGraph.src_col_name] == \ src_vert_IDs[i] dst_mask = G.edge_data[PropertyGraph.dst_col_name] == \ dst_vert_IDs[i] value = G.edge_data[src_mask & dst_mask]\ [PropertyGraph.edge_id_col_name] # FIXME: This will compute the result (if using dask) then transfer # to host memory for each iteration - is there a more efficient way? if self.is_mg: value = value.compute() edge_IDs.append(value.values_host[0]) return edge_IDs def __get_graph_data_as_numpy_bytes(self, dataframe, null_replacement_value): """ Returns a byte array repr of the vertex or edge graph data. Since the byte array cannot represent NA values, null_replacement_value must be provided to be used in place of NAs. """ try: if dataframe is None: return np.ndarray(shape=(0, 0)).dumps() elif isinstance(dataframe, dask_cudf.DataFrame): df = dataframe.compute() else: df = dataframe # null_replacement_value is a Value "union" n = ValueWrapper(null_replacement_value).get_py_obj() # This needs to be a copy of the df data to replace NA values # FIXME: should something other than a numpy type be serialized to # prevent a copy? (note: any other type required to be de-serialzed # on the client end could add dependencies on the client) df_numpy = df.to_numpy(na_value=n) return df_numpy.dumps() except: raise GaasError(f"{traceback.format_exc()}")
0
rapidsai_public_repos/GaaS
rapidsai_public_repos/GaaS/scripts/default-config.sh
# Copyright (c) 2022, NVIDIA CORPORATION. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. THIS_DIR=$(cd $(dirname ${BASH_SOURCE[0]}) && pwd) # Most are defined using the bash := or :- syntax, which means they # will be set only if they were previously unset. The project config # is loaded first, which gives it the opportunity to override anything # in this file that uses that syntax. If there are variables in this # file that should not be overridded by a project, then they will # simply not use that syntax and override, since these variables are # read last. SCRIPTS_DIR=$THIS_DIR # These really should be oerridden by the project config! CONDA_ENV=${CONDA_ENV:-rapids} GPUS_PER_NODE=${GPUS_PER_NODE:-8} WORKER_RMM_POOL_SIZE=${WORKER_RMM_POOL_SIZE:-12G} DASK_CUDA_INTERFACE=${DASK_CUDA_INTERFACE:-ib0} DASK_SCHEDULER_PORT=${DASK_SCHEDULER_PORT:-8792} DASK_DEVICE_MEMORY_LIMIT=${DASK_DEVICE_MEMORY_LIMIT:-auto} DASK_HOST_MEMORY_LIMIT=${DASK_HOST_MEMORY_LIMIT:-auto} BUILD_LOG_FILE=${BUILD_LOG_FILE:-${RESULTS_DIR}/build_log.txt} SCHEDULER_FILE=${SCHEDULER_FILE:-${WORKSPACE}/dask-scheduler.json} DATE=${DATE:-$(date --utc "+%Y-%m-%d_%H:%M:%S")_UTC} ENV_EXPORT_FILE=${ENV_EXPORT_FILE:-${WORKSPACE}/$(basename ${CONDA_ENV})-${DATE}.txt}
0
rapidsai_public_repos/GaaS
rapidsai_public_repos/GaaS/scripts/README.md
This directory contains various scripts helpful for GaaS users and developers. The following scripts were copied from https://github.com/rapidsai/multi-gpu-tools and are useful for starting a dask cluster, which is needed by GaaS for multi-GPU support. * `run-dask-process.sh` * `functions.sh` * `default-config.sh`
0
rapidsai_public_repos/GaaS
rapidsai_public_repos/GaaS/scripts/functions.sh
# Copyright (c) 2022, NVIDIA CORPORATION. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # This file is source'd from script-env.sh to add functions to the # calling environment, hence no #!/bin/bash as the first line. This # also assumes the variables used in this file have been defined # elsewhere. NUMARGS=$# ARGS=$* function hasArg { (( ${NUMARGS} != 0 )) && (echo " ${ARGS} " | grep -q " $1 ") } function logger { echo -e ">>>> $@" } # Calling "setTee outfile" will cause all stdout and stderr of the # current script to be output to "tee", which outputs to stdout and # "outfile" simultaneously. This is useful by allowing a script to # "tee" itself at any point without being called with tee. _origFileDescriptorsSaved=0 function setTee { if [[ $_origFileDescriptorsSaved == 0 ]]; then # Save off the original file descr 1 and 2 as 3 and 4 exec 3>&1 4>&2 _origFileDescriptorsSaved=1 fi teeFile=$1 # Create a named pipe. pipeName=$(mktemp -u) mkfifo $pipeName # Close the currnet 1 and 2 and restore to original (3, 4) in the # event this function is called repeatedly. exec 1>&- 2>&- exec 1>&3 2>&4 # Start a tee process reading from the named pipe. Redirect stdout # and stderr to the named pipe which goes to the tee process. The # named pipe "file" can be removed and the tee process stays alive # until the fd is closed. tee -a < $pipeName $teeFile & exec > $pipeName 2>&1 rm $pipeName } # Call this to stop script output from going to "tee" after a prior # call to setTee. function unsetTee { if [[ $_origFileDescriptorsSaved == 1 ]]; then # Close the current fd 1 and 2 which should stop the tee # process, then restore 1 and 2 to original (saved as 3, 4). exec 1>&- 2>&- exec 1>&3 2>&4 fi }
0
rapidsai_public_repos/GaaS
rapidsai_public_repos/GaaS/scripts/run-dask-process.sh
#!/bin/bash # Copyright (c) 2022, NVIDIA CORPORATION. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. THIS_DIR=$(cd $(dirname ${BASH_SOURCE[0]}) && pwd) source ${THIS_DIR}/default-config.sh source ${THIS_DIR}/functions.sh # Logs can be written to a specific location by setting the LOGS_DIR # env var. LOGS_DIR=${LOGS_DIR:-dask_logs-$$} ######################################## NUMARGS=$# ARGS=$* function hasArg { (( ${NUMARGS} != 0 )) && (echo " ${ARGS} " | grep -q " $1 ") } VALIDARGS="-h --help scheduler workers --tcp --ucx --ucxib --ucx-ib" HELP="$0 [<app> ...] [<flag> ...] where <app> is: scheduler - start dask scheduler workers - start dask workers and <flag> is: --tcp - initalize a tcp cluster (default) --ucx - initialize a ucx cluster with NVLink --ucxib | --ucx-ib - initialize a ucx cluster with IB+NVLink -h | --help - print this text The cluster config order of precedence is any specification on the command line (--tcp, --ucx, etc.) if provided, then the value of the env var CLUSTER_CONFIG_TYPE if set, then the default value of tcp. " # CLUSTER_CONFIG_TYPE defaults to the env var value if set, else TCP CLUSTER_CONFIG_TYPE=${CLUSTER_CONFIG_TYPE:-TCP} START_SCHEDULER=0 START_WORKERS=0 if (( ${NUMARGS} == 0 )); then echo "${HELP}" exit 0 else if hasArg -h || hasArg --help; then echo "${HELP}" exit 0 fi for a in ${ARGS}; do if ! (echo " ${VALIDARGS} " | grep -q " ${a} "); then echo "Invalid option: ${a}" exit 1 fi done fi if hasArg scheduler; then START_SCHEDULER=1 fi if hasArg workers; then START_WORKERS=1 fi # Allow the command line to take precedence if hasArg --tcp; then CLUSTER_CONFIG_TYPE=TCP elif hasArg --ucx; then CLUSTER_CONFIG_TYPE=UCX elif hasArg --ucxib || hasArg --ucx-ib; then CLUSTER_CONFIG_TYPE=UCXIB fi ######################################## #export DASK_LOGGING__DISTRIBUTED="DEBUG" #ulimit -n 100000 SCHEDULER_LOG=${LOGS_DIR}/scheduler_log.txt WORKERS_LOG=${LOGS_DIR}/worker-${HOSTNAME}_log.txt function buildTcpArgs { export DASK_DISTRIBUTED__COMM__TIMEOUTS__CONNECT="100s" export DASK_DISTRIBUTED__COMM__TIMEOUTS__TCP="600s" export DASK_DISTRIBUTED__COMM__RETRY__DELAY__MIN="1s" export DASK_DISTRIBUTED__COMM__RETRY__DELAY__MAX="60s" export DASK_DISTRIBUTED__WORKER__MEMORY__Terminate="False" SCHEDULER_ARGS="--protocol=tcp --port=$DASK_SCHEDULER_PORT --scheduler-file $SCHEDULER_FILE " WORKER_ARGS="--rmm-pool-size=$WORKER_RMM_POOL_SIZE --local-directory=/tmp/$LOGNAME --scheduler-file=$SCHEDULER_FILE --memory-limit=$DASK_HOST_MEMORY_LIMIT --device-memory-limit=$DASK_DEVICE_MEMORY_LIMIT " } function buildUCXWithInfinibandArgs { export UCX_MAX_RNDV_RAILS=1 export UCX_MEMTYPE_REG_WHOLE_ALLOC_TYPES=cuda export DASK_RMM__POOL_SIZE=0.5GB export DASK_DISTRIBUTED__COMM__UCX__CREATE_CUDA_CONTEXT=True SCHEDULER_ARGS="--protocol=ucx --port=$DASK_SCHEDULER_PORT --interface=$DASK_CUDA_INTERFACE --scheduler-file $SCHEDULER_FILE " WORKER_ARGS="--interface=$DASK_CUDA_INTERFACE --rmm-pool-size=$WORKER_RMM_POOL_SIZE --rmm-maximum-pool-size=$WORKER_RMM_POOL_SIZE --local-directory=/tmp/$LOGNAME --scheduler-file=$SCHEDULER_FILE --memory-limit=$DASK_HOST_MEMORY_LIMIT --device-memory-limit=$DASK_DEVICE_MEMORY_LIMIT --jit-unspill " } function buildUCXwithoutInfinibandArgs { export UCX_TCP_CM_REUSEADDR=y export UCX_MAX_RNDV_RAILS=1 export UCX_TCP_TX_SEG_SIZE=8M export UCX_TCP_RX_SEG_SIZE=8M export DASK_DISTRIBUTED__COMM__UCX__CUDA_COPY=True export DASK_DISTRIBUTED__COMM__UCX__TCP=True export DASK_DISTRIBUTED__COMM__UCX__NVLINK=True export DASK_DISTRIBUTED__COMM__UCX__INFINIBAND=False export DASK_DISTRIBUTED__COMM__UCX__RDMACM=False export DASK_RMM__POOL_SIZE=0.5GB SCHEDULER_ARGS="--protocol=ucx --port=$DASK_SCHEDULER_PORT --scheduler-file $SCHEDULER_FILE " WORKER_ARGS="--enable-tcp-over-ucx --enable-nvlink --disable-infiniband --disable-rdmacm --rmm-pool-size=$WORKER_RMM_POOL_SIZE --rmm-maximum-pool-size=$WORKER_RMM_POOL_SIZE --local-directory=/tmp/$LOGNAME --scheduler-file=$SCHEDULER_FILE --memory-limit=$DASK_HOST_MEMORY_LIMIT --device-memory-limit=$DASK_DEVICE_MEMORY_LIMIT --jit-unspill " } if [[ "$CLUSTER_CONFIG_TYPE" == "UCX" ]]; then logger "Using cluster configurtion for UCX" buildUCXwithoutInfinibandArgs elif [[ "$CLUSTER_CONFIG_TYPE" == "UCXIB" ]]; then logger "Using cluster configurtion for UCX with Infiniband" buildUCXWithInfinibandArgs else logger "Using cluster configurtion for TCP" buildTcpArgs fi ######################################## scheduler_pid="" worker_pid="" num_scheduler_tries=0 function startScheduler { mkdir -p $(dirname $SCHEDULER_FILE) echo "RUNNING: \"python -m distributed.cli.dask_scheduler $SCHEDULER_ARGS\"" > $SCHEDULER_LOG dask-scheduler $SCHEDULER_ARGS >> $SCHEDULER_LOG 2>&1 & scheduler_pid=$! } mkdir -p $LOGS_DIR logger "Logs written to: $LOGS_DIR" if [[ $START_SCHEDULER == 1 ]]; then rm -f $SCHEDULER_FILE $SCHEDULER_LOG $WORKERS_LOG startScheduler sleep 6 num_scheduler_tries=$(python -c "print($num_scheduler_tries+1)") # Wait for the scheduler to start first before proceeding, since # it may require several retries (if prior run left ports open # that need time to close, etc.) while [ ! -f "$SCHEDULER_FILE" ]; do scheduler_alive=$(ps -p $scheduler_pid > /dev/null ; echo $?) if [[ $scheduler_alive != 0 ]]; then if [[ $num_scheduler_tries != 30 ]]; then echo "scheduler failed to start, retry #$num_scheduler_tries" startScheduler sleep 6 num_scheduler_tries=$(echo $num_scheduler_tries+1 | bc) else echo "could not start scheduler, exiting." exit 1 fi fi done echo "scheduler started." fi if [[ $START_WORKERS == 1 ]]; then rm -f $WORKERS_LOG while [ ! -f "$SCHEDULER_FILE" ]; do echo "run-dask-process.sh: $SCHEDULER_FILE not present - waiting to start workers..." sleep 2 done echo "RUNNING: \"python -m dask_cuda.cli.dask_cuda_worker $WORKER_ARGS\"" > $WORKERS_LOG dask-cuda-worker $WORKER_ARGS >> $WORKERS_LOG 2>&1 & worker_pid=$! echo "worker(s) started." fi # This script will not return until the following background process # have been completed/killed. if [[ $worker_pid != "" ]]; then echo "waiting for worker pid $worker_pid to finish before exiting script..." wait $worker_pid fi if [[ $scheduler_pid != "" ]]; then echo "waiting for scheduler pid $scheduler_pid to finish before exiting script..." wait $scheduler_pid fi
0
rapidsai_public_repos/GaaS/docs
rapidsai_public_repos/GaaS/docs/gaas/README.md
# Building Documentation ...._coming soon_ ## Steps to follow: ...._coming soon_ ```bash # most be in the /docs/cugraph directory make html ``` This should run Sphinx in your shell, and outputs to `build/html/index.html` ## View docs web page by opening HTML in browser: First navigate to `/build/html/` folder, and then run the following command: ```bash python -m http.server ``` Then, navigate a web browser to the IP address or hostname of the host machine at port 8000: ``` https://<host IP-Address>:8000 ``` Now you can check if your docs edits formatted correctly, and read well.
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/package.json
{ "devDependencies": { "autoprefixer":"^10.4.16", "postcss":"^8.4.31", "postcss-cli":"^10.1.0" } }
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/.nvmrc
20
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/README.md
# <div align="left"><img src="https://rapids.ai/assets/images/rapids_logo.png" width="90px"/> &nbsp; [RAPIDS.ai](https://rapids.ai.com) Website This repository contains the source code and content for the [RAPIDS.ai](https://rapids.ai) website. The site uses [Hugo](https://gohugo.io/) as a static site generator with the [Docsy theme](https://github.com/google/docsy). ## Requirements All logos and images are located in the [images](/static/images) folder. Externally (no website) referenced files should be placed in the [assets](/assets) folder. Font Icons are used from [Font Awesome](https://fontawesome.com/), and include Pro account icons. ## Pull Request Previews [Netlify](https://www.netlify.com/) will create a preview environment when PRs are opened. ## Contributing You can use the included devcontainer for local development. Start the container and run `hugo serve` to start a development server. To view draft files, run `hugo serve -D`. The development server can be viewed in a browser at <http://localhost:1313>.
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/build.sh
#!/bin/bash set -euo pipefail HUGO_ENV=${HUGO_ENV:-staging} hugo --gc --minify "$@" cp _redirects public
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/go.sum
github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo= github.com/google/docsy v0.7.1 h1:DUriA7Nr3lJjNi9Ulev1SfiG1sUYmvyDeU4nTp7uDxY= github.com/google/docsy v0.7.1/go.mod h1:JCmE+c+izhE0Rvzv3y+AzHhz1KdwlA9Oj5YBMklJcfc= github.com/google/docsy/dependencies v0.7.1 h1:NbzYKJYMin2q50xdWSUzR2c9gCp7zR/XHDBcxklEcTQ= github.com/google/docsy/dependencies v0.7.1/go.mod h1:gihhs5gmgeO+wuoay4FwOzob+jYJVyQbNaQOh788lD4= github.com/twbs/bootstrap v5.2.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/hugo.yaml
baseURL: https://rapids.ai/ languageCode: en-us title: RAPIDS | GPU Accelerated Data Science enableRobotsTXT: true services: googleAnalytics: ID: G-RKXFW6CM42 disableKinds: [taxonomy, term] sitemap: changefreq: monthly filename: sitemap.xml priority: 0.5 params: title: RAPIDS | GPU Accelerated Data Science description: Open source GPU accelerated data science libraries images: - /images/RAPIDS-logo-white.png social: twitter: rapidsai module: proxy: direct hugoVersion: extended: true min: 0.73.0 imports: - path: github.com/google/docsy disable: false - path: github.com/google/docsy/dependencies disable: false
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/go.mod
module github.com/rapidsai/rapids.ai go 1.21.3 require ( github.com/google/docsy v0.7.1 // indirect github.com/google/docsy/dependencies v0.7.1 // indirect )
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/netlify.toml
[build] publish = "public" command = "./build.sh" [build.environment] GO_VERSION = "1.21.3" HUGO_VERSION = "0.119.0" HUGO_ENV = "production" HUGO_ENABLEGITINFO = "true" # Build drafts on PR previews [context.deploy-preview] command = "./build.sh --buildDrafts" # Setting HUGO_ENV != "production" prevents # Google Analytics from being loaded on PR previews [context.deploy-preview.environment] HUGO_ENV = "staging"
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/_redirects
/about /learn-more/#about /about.html /learn-more/#about /cloud https://docs.rapids.ai/deployment/stable/cloud/ /cloud.html https://docs.rapids.ai/deployment/stable/cloud/ /community /learn-more/#get-involved /community.html /learn-more/#get-involved /dask https://docs.dask.org/en/stable/gpu.html /dask.html https://docs.dask.org/en/stable/gpu.html /documentation /start /documentation.html /start /hpc https://docs.rapids.ai/deployment/stable/hpc.html /hpc.html https://docs.rapids.ai/deployment/stable/hpc.html /hpo https://docs.rapids.ai/deployment/stable/examples/index.html /hpo.html https://docs.rapids.ai/deployment/stable/examples/index.html /introgtc2023 https://github.com/shwina/rapids-tutorial-gtc-2023 /pip https://docs.rapids.ai/install#pip /pip.html https://docs.rapids.ai/install#pip /plotly https://docs.rapids.ai/visualization /plotly.html https://docs.rapids.ai/visualization /slack-invite https://join.slack.com/t/rapids-goai/shared_invite/zt-trnsul8g-Sblci8dk6dIoEeGpoFcFOQ /smsl https://studiolab.sagemaker.aws/import/github/rapidsai-community/rapids-smsl/blob/main/rapids-smsl.ipynb?ncid=so-othe-849406-vt27#cid=av02_so-othe_en-us /smsl.html https://studiolab.sagemaker.aws/import/github/rapidsai-community/rapids-smsl/blob/main/rapids-smsl.ipynb?ncid=so-othe-849406-vt27#cid=av02_so-othe_en-us /start https://docs.rapids.ai/install /start.html https://docs.rapids.ai/install /wsl2 https://docs.rapids.ai/install#WSL2 /wsl2.html https://docs.rapids.ai/install#WSL2 /xgboost https://xgboost.readthedocs.io/en/stable/gpu/index.html /xgboost.html https://xgboost.readthedocs.io/en/stable/gpu/index.html
0
rapidsai_public_repos
rapidsai_public_repos/rapids.ai/package-lock.json
{ "name": "rapids.ai", "lockfileVersion": 3, "requires": true, "packages": { "": { "devDependencies": { "autoprefixer": "^10.4.16", "postcss": "^8.4.31", "postcss-cli": "^10.1.0" } }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" }, "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" }, "engines": { "node": ">= 8" } }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/anymatch": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" }, "engines": { "node": ">= 8" } }, "node_modules/autoprefixer": { "version": "10.4.16", "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/autoprefixer" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "dependencies": { "browserslist": "^4.21.10", "caniuse-lite": "^1.0.30001538", "fraction.js": "^4.3.6", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", "postcss-value-parser": "^4.2.0" }, "bin": { "autoprefixer": "bin/autoprefixer" }, "engines": { "node": "^10 || ^12 || >=14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "dependencies": { "fill-range": "^7.0.1" }, "engines": { "node": ">=8" } }, "node_modules/browserslist": { "version": "4.22.1", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "dependencies": { "caniuse-lite": "^1.0.30001541", "electron-to-chromium": "^1.4.535", "node-releases": "^2.0.13", "update-browserslist-db": "^1.0.13" }, "bin": { "browserslist": "cli.js" }, "engines": { "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, "node_modules/caniuse-lite": { "version": "1.0.30001555", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001555.tgz", "integrity": "sha512-NzbUFKUnJ3DTcq6YyZB6+qqhfD112uR3uoEnkmfzm2wVzUNsFkU7AwBjKQ654Sp5cau0JxhFyRSn/tQZ+XfygA==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ] }, "node_modules/chokidar": { "version": "3.5.3", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "dev": true, "funding": [ { "type": "individual", "url": "https://paulmillr.com/funding/" } ], "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "engines": { "node": ">= 8.10.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "node_modules/cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" }, "engines": { "node": ">=12" } }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, "node_modules/dependency-graph": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", "dev": true, "engines": { "node": ">= 0.6.0" } }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "dependencies": { "path-type": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/electron-to-chromium": { "version": "1.4.569", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.569.tgz", "integrity": "sha512-LsrJjZ0IbVy12ApW3gpYpcmHS3iRxH4bkKOW98y1/D+3cvDUWGcbzbsFinfUS8knpcZk/PG/2p/RnkMCYN7PVg==", "dev": true }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, "node_modules/escalade": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true, "engines": { "node": ">=6" } }, "node_modules/fast-glob": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" }, "engines": { "node": ">=8.6.0" } }, "node_modules/fastq": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, "dependencies": { "reusify": "^1.0.4" } }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, "dependencies": { "to-regex-range": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/fraction.js": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "dev": true, "engines": { "node": "*" }, "funding": { "type": "patreon", "url": "https://github.com/sponsors/rawify" } }, "node_modules/fs-extra": { "version": "11.1.1", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", "dev": true, "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { "node": ">=14.14" } }, "node_modules/fsevents": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "hasInstallScript": true, "optional": true, "os": [ "darwin" ], "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, "engines": { "node": "6.* || 8.* || >= 10.*" } }, "node_modules/get-stdin": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==", "dev": true, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { "is-glob": "^4.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/globby": { "version": "13.2.2", "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", "dev": true, "dependencies": { "dir-glob": "^3.0.1", "fast-glob": "^3.3.0", "ignore": "^5.2.4", "merge2": "^1.4.1", "slash": "^4.0.0" }, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/globby/node_modules/slash": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "dev": true, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, "node_modules/ignore": { "version": "5.2.4", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "dev": true, "engines": { "node": ">= 4" } }, "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, "dependencies": { "binary-extensions": "^2.0.0" }, "engines": { "node": ">=8" } }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "dependencies": { "is-extglob": "^2.1.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, "engines": { "node": ">=0.12.0" } }, "node_modules/jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }, "node_modules/lilconfig": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", "dev": true, "engines": { "node": ">=10" } }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, "engines": { "node": ">= 8" } }, "node_modules/micromatch": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "dependencies": { "braces": "^3.0.2", "picomatch": "^2.3.1" }, "engines": { "node": ">=8.6" } }, "node_modules/nanoid": { "version": "3.3.6", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/ai" } ], "bin": { "nanoid": "bin/nanoid.cjs" }, "engines": { "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, "node_modules/node-releases": { "version": "2.0.13", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", "dev": true }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, "engines": { "node": ">=8" } }, "node_modules/picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, "engines": { "node": ">=8.6" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" } }, "node_modules/pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/postcss": { "version": "8.4.31", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "dependencies": { "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, "engines": { "node": "^10 || ^12 || >=14" } }, "node_modules/postcss-cli": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-10.1.0.tgz", "integrity": "sha512-Zu7PLORkE9YwNdvOeOVKPmWghprOtjFQU3srMUGbdz3pHJiFh7yZ4geiZFMkjMfB0mtTFR3h8RemR62rPkbOPA==", "dev": true, "dependencies": { "chokidar": "^3.3.0", "dependency-graph": "^0.11.0", "fs-extra": "^11.0.0", "get-stdin": "^9.0.0", "globby": "^13.0.0", "picocolors": "^1.0.0", "postcss-load-config": "^4.0.0", "postcss-reporter": "^7.0.0", "pretty-hrtime": "^1.0.3", "read-cache": "^1.0.0", "slash": "^5.0.0", "yargs": "^17.0.0" }, "bin": { "postcss": "index.js" }, "engines": { "node": ">=14" }, "peerDependencies": { "postcss": "^8.0.0" } }, "node_modules/postcss-load-config": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", "dev": true, "dependencies": { "lilconfig": "^2.0.5", "yaml": "^2.1.1" }, "engines": { "node": ">= 14" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, "peerDependencies": { "postcss": ">=8.0.9", "ts-node": ">=9.0.0" }, "peerDependenciesMeta": { "postcss": { "optional": true }, "ts-node": { "optional": true } } }, "node_modules/postcss-reporter": { "version": "7.0.5", "resolved": "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-7.0.5.tgz", "integrity": "sha512-glWg7VZBilooZGOFPhN9msJ3FQs19Hie7l5a/eE6WglzYqVeH3ong3ShFcp9kDWJT1g2Y/wd59cocf9XxBtkWA==", "dev": true, "dependencies": { "picocolors": "^1.0.0", "thenby": "^1.3.4" }, "engines": { "node": ">=10" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, "node_modules/pretty-hrtime": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", "dev": true, "engines": { "node": ">= 0.8" } }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ] }, "node_modules/read-cache": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", "dev": true, "dependencies": { "pify": "^2.3.0" } }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, "dependencies": { "picomatch": "^2.2.1" }, "engines": { "node": ">=8.10.0" } }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" } }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/slash": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", "dev": true, "engines": { "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/source-map-js": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/thenby": { "version": "1.3.4", "resolved": "https://registry.npmjs.org/thenby/-/thenby-1.3.4.tgz", "integrity": "sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ==", "dev": true }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "dependencies": { "is-number": "^7.0.0" }, "engines": { "node": ">=8.0" } }, "node_modules/universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", "dev": true, "engines": { "node": ">= 10.0.0" } }, "node_modules/update-browserslist-db": { "version": "1.0.13", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "dependencies": { "escalade": "^3.1.1", "picocolors": "^1.0.0" }, "bin": { "update-browserslist-db": "cli.js" }, "peerDependencies": { "browserslist": ">= 4.21.0" } }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, "engines": { "node": ">=10" } }, "node_modules/yaml": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.3.tgz", "integrity": "sha512-zw0VAJxgeZ6+++/su5AFoqBbZbrEakwu+X0M5HmcwUiBL7AzcuPKjj5we4xfQLp78LkEMpD0cOnUhmgOVy3KdQ==", "dev": true, "engines": { "node": ">= 14" } }, "node_modules/yargs": { "version": "17.7.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", "yargs-parser": "^21.1.1" }, "engines": { "node": ">=12" } }, "node_modules/yargs-parser": { "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, "engines": { "node": ">=12" } } } }
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/archetypes/default.md
--- title: "{{ replace .Name "-" " " | title }}" date: {{ .Date }} draft: true ---
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/scripts/get_medium.py
import requests import xmltodict import yaml from html.parser import HTMLParser from pathlib import Path class SummaryParser(HTMLParser): """ Parses HTML content and stores all of the text from paragraph elements in "self.all_p_data". """ def __init__(self): HTMLParser.__init__(self) self.in_p_tag = False self.current_p_data = "" self.all_p_data = [] def handle_starttag(self, tag, attrs): if tag == "p": self.in_p_tag = True def handle_endtag(self, tag): if tag == "p": self.in_p_tag = False self.all_p_data.append(self.current_p_data) self.current_p_data = "" def handle_data(self, data): if self.in_p_tag: self.current_p_data += data def is_author_element(p): """ Returns True if the given paragraph text contains author information. """ return ("Authors" in p) or ("By:" in p) def get_summary(rssContent): """ Returns a 270 character summary of a Medium article given it's full content as retrieved from their RSS feed. """ parser = SummaryParser() parser.feed(rssContent) article_content = " ".join( [p for p in parser.all_p_data if not is_author_element(p)] ) if article_content: return article_content[:267] + "..." return "" def write_posts_to_file(posts): """ Writes the posts data to a YAML file that can be used by Hugo. """ script_path = Path(__file__) script_name = script_path.name current_dir = script_path.parent output_file = current_dir.joinpath("..", "data", "posts", "medium.yaml") header = "\n".join( ["#", f'# This file was automatically generated by "{script_name}"', "#"] ) with open(output_file, "w") as file: file.write("\n".join([header, yaml.dump(posts)])) def main(): """ Retrieves latests RAPIDS posts from Medium's RSS feed and writes the content to a YAML file that can be used by Hugo. """ response = requests.get("https://medium.com/feed/rapids-ai") xml = xmltodict.parse(response.content) posts = [] for x in xml["rss"]["channel"]["item"]: post = {} post["title"] = x["title"] post["link"] = x["link"].split("?")[0] post["poster"] = x["dc:creator"] post["date"] = x["pubDate"] post["text"] = get_summary(x["content:encoded"]) posts.append(post) write_posts_to_file(posts) if __name__ == "__main__": main()
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/scripts/devcontainer-init.sh
#!/bin/bash set -euo pipefail # Install Hugo version from `netlify.toml` file mkdir -p ~/.local/bin HUGO_VERSION=$(yq -oy '.build.environment.HUGO_VERSION' netlify.toml) wget "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz" -O - | \ tar -xzvf - -C ~/.local/bin hugo # Install Hugo/Go Modules hugo mod get # Install NodeJS version from `.nvmrc` file . "${NVM_DIR}/nvm.sh" --install rm -rf node_modules npm install
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/scripts/requirements.txt
PyYAML>=6.0,<7 requests>=2.28.2,<3 xmltodict>=0.13.0,<0.14
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/.devcontainer/devcontainer.json
{ "name": "rapids-site", "image": "mcr.microsoft.com/devcontainers/base:ubuntu", "forwardPorts": [1313], "features": { "ghcr.io/devcontainers/features/go:1": {}, "ghcr.io/devcontainers/features/node:1": { "version": "none", "nodeGypDependencies": false }, "ghcr.io/eitsupi/devcontainer-features/jq-likes:2": { "jqVersion": "latest", "yqVersion": "latest" } }, "postCreateCommand": "./scripts/devcontainer-init.sh" }
0
rapidsai_public_repos/rapids.ai/assets
rapidsai_public_repos/rapids.ai/assets/scss/_main-container.scss
/* This file is copied from the link below in order to comment out Docsy's default section padding. https://github.com/google/docsy/blob/v0.7.1/assets/scss/_main-container.scss */ // The outer page container i.e. common styles for any page. .td-outer { display: flex; flex-direction: column; min-height: 100vh; } // The outer page container for the default base template. // .td-default { // main { // > section:first-of-type { // @include media-breakpoint-up(md) { // padding-top: 8rem; // } // } // section { // @extend .td-block-padding; // } // } // } .td-main { flex-grow: 1; } // .td-404 main, // .td-main main { // padding-top: 1.5rem; // padding-bottom: 2rem; // @include media-breakpoint-up(md) { // padding-top: 5.5rem; // } // }
0
rapidsai_public_repos/rapids.ai/assets
rapidsai_public_repos/rapids.ai/assets/scss/README.md
# scss This directory contains SCSS files for the RAPIDS website. ## Special Files There are two special files in this directory, listed below and described in the Docsy documentation [here](https://www.docsy.dev/docs/adding-content/lookandfeel/): - `_variables_project.scss` - used for setting SCSS variables _before_ Bootstrap (which is used by Docsy) generates all of its classes. This is useful for modifying Bootstrap's generated classes according to their utility API docs [here](https://getbootstrap.com/docs/5.2/utilities/api/) or setting other customization variables as described [here](https://getbootstrap.com/docs/5.2/customize/overview/) - `_styles_project.scss` - used for adding additional SCSS styles to the final generated stylesheet. These styles can use the generated Bootstrap styles based on the contents of `_variables_project.scss` ## Other Files RAPIDS-specific styles should go in the `rapidsai/` subdirectory. These files can then be imported into the `_styles_project.scss` file. Aside from the special files listed above, the root `assets/scss` directory is reserved for overriding SCSS files from the Docsy theme. In some cases, it may be necessary to override Docsy's default `.scss` files that are located [here](https://github.com/google/docsy/tree/v0.7.1/assets/scss). In these instances, the Docsy files can be copied directly into the `assets/scss` directory and modified as needed. This should be used as a last resort though, only after adding additional styles to the `rapidsai/` directory has been deemed insufficient. ## Conventions Below is a list of conventions for authoring styles for the site. In the future, we can explore adding [StyleLint](https://stylelint.io/) to our devcontainer to help enforce rules. - Avoid writing styles. Instead, leverage Bootstrap's utility classes whenever possible. Utility classes are configurable via their [utility API](https://getbootstrap.com/docs/5.2/utilities/api/). Reusable components can be created with Hugo by leveraging its shortcode functionality to avoid needing to repeat utility classes across multiple instances of the same component - When it is necessary to create custom styles, use the following conventions: - Place the related styles in their own `.scss` file in the `rapidsai/*` directory. Import the newly created file in `rapidsai/_index.scss` - Use the [BEM](https://getbem.com/) naming convention to avoid naming collisions and promote consistent naming conventions - Avoid deep nesting with SCSS. Aim for no more than 1 level of nesting - Reserve nesting for pseudo-classes, psuedo-elements, and media query mixins - Use Bootstrap's built-in `media-breakpoint-up` ([docs](https://getbootstrap.com/docs/5.2/layout/breakpoints/#min-width)) mixin to generate consistent `min-width` media queries for a [mobile-first](https://zellwk.com/blog/how-to-write-mobile-first-css/) design approach
0
rapidsai_public_repos/rapids.ai/assets
rapidsai_public_repos/rapids.ai/assets/scss/_variables_project.scss
/* This file works by: - Importing Docsy Bootstrap forward variables - Settings RAPIDS-specific Bootstrap variables - Importing Docsy Bootstrap main variables - Importing the necessary Bootstrap files to use their Utility API - Utility API: https://getbootstrap.com/docs/5.2/utilities/api/ */ @import "_variables_forward"; // Configure font sizes according to Bulma $h1-font-size: $font-size-base * 3; $h2-font-size: $font-size-base * 2.5; $h3-font-size: $font-size-base * 2; $h4-font-size: $font-size-base * 1.5; $h5-font-size: $font-size-base * 1.25; $h6-font-size: $font-size-base; $h7-font-size: $font-size-base * 0.9; $h8-font-size: $font-size-base * 0.75; $font-sizes: ( 1: $h1-font-size, 2: $h2-font-size, 3: $h3-font-size, 4: $h4-font-size, 5: $h5-font-size, 6: $h6-font-size, 7: $h7-font-size, 8: $h8-font-size, ); // Configure spacers according to Bulma $spacers: ( 0: 0, 1: $spacer * 0.25, 2: $spacer * 0.5, 3: $spacer * 0.75, 4: $spacer, 5: $spacer * 1.5, 6: $spacer * 2.5, 7: $spacer * 3, 8: $spacer * 3.5, 9: $spacer * 4.5, ); // Configure breakpoints according to Bulma $grid-breakpoints: ( sm: 0, md: 769px, lg: 1024px, xl: 1216px, xxl: 1408px ); // Disable responsive font sizing: // https://getbootstrap.com/docs/5.2/getting-started/rfs/ $enable-rfs: false; // Disable Docsy Google Fonts since we load them ourself $td-enable-google-fonts: false; // Import Docsy variables @import "variables"; // Import necessary bootstrap files to use utility API @import "../vendor/bootstrap/scss/functions"; @import "../vendor/bootstrap/scss/variables"; @import "../vendor/bootstrap/scss/maps"; @import "../vendor/bootstrap/scss/mixins"; @import "../vendor/bootstrap/scss/utilities"; // Configure container widths according to Bulma $container-max-widths: ( md: 100%, lg: 960px + ($grid-gutter-width / 1rem * 16px), xl: 1152px + ($grid-gutter-width / 1rem * 16px), xxl: 1344px + ($grid-gutter-width / 1rem * 16px), ); $additional-line-heights: ( xs: 1.15 ); $merged-line-heights: ( "line-height": map-merge(map-get($utilities, "line-height"), (values: map-merge(map-get(map-get($utilities, "line-height"), "values"), $additional-line-heights, ), ), ), ); $merged-maps: map-merge-multiple($merged-line-heights); $utilities: map-merge($utilities, $merged-maps);
0
rapidsai_public_repos/rapids.ai/assets
rapidsai_public_repos/rapids.ai/assets/scss/_styles_project.scss
@import "rapidsai/index"; @import "rapidsai/navigation";
0
rapidsai_public_repos/rapids.ai/assets/scss
rapidsai_public_repos/rapids.ai/assets/scss/rapidsai/_navigation.scss
.navigation { box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2); position: fixed; top: 0; left: 0; right: 0; z-index: $zindex-fixed; @extend .has-background-rapids-purple-primary; @include media-breakpoint-up(lg) { display: flex; } } .navigation__brand { min-height: 3.25rem; display: flex; align-items: center; width: 100%; justify-content: space-between; @include media-breakpoint-up(lg) { width: auto; } } .navigation__logo { max-height: 2.5rem; } .navigation__item, .navigation__link { padding: 0.5rem 0; line-height: 1.5; @include media-breakpoint-up(lg) { padding: 0.5rem 0.75rem; } } .navigation__item { color: white; position: relative; @include media-breakpoint-up(lg) { display: flex; align-items: stretch; } } .navigation__item:last-child { margin-bottom: 0.5rem; @include media-breakpoint-up(lg) { margin-bottom: 0; } } .navigation__link { color: white; display: flex; align-items: center; position: relative; border-bottom: 1px solid white; transition: color 0.2s ease-out; &:hover { color: #b49fd6; } @include media-breakpoint-up(lg) { border-bottom: none; } } .navigation__item--dropdown { padding: 0; } .navigation__item--dropdown .navigation__link { padding-right: 2.5em; } .navigation__item--dropdown .navigation__link::after { border: 3px solid white; border-radius: 2px; border-right: 0; border-top: 0; content: " "; display: block; height: 0.625em; pointer-events: none; position: absolute; top: 50%; transform: rotate(-45deg); transform-origin: center; width: 0.625em; margin-top: -0.375em; right: 1.125em; } .navigation__burger { line-height: 1; margin: 1rem; padding: 0; color: white; font-size: $h4-font-size; border: none; text-decoration: none; box-shadow: none; &:hover, &:active { color: white; } &::before { font-family: 'Font Awesome 6 Free'; content: "\f0c9"; font-weight: 900; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; -webkit-font-smoothing: antialiased; } @include media-breakpoint-up(lg) { display: none; } } .navigation__menu { align-items: stretch; transition: all 0.35s ease; // 0.35s ease matches other Docsy menu transitions height: 0; overflow: hidden; @include media-breakpoint-up(lg) { display: flex; height: auto !important; overflow: visible; } } .navigation__dropdown { font-size: 0.875rem; padding: 0.5rem 1.5rem; @include media-breakpoint-up(lg) { display: none; padding: 0.5rem 0; } } .navigation__item:hover .navigation__dropdown { @include media-breakpoint-up(lg) { display: block; position: absolute; top: 100%; background-color: rgb(139, 47, 255); box-shadow: 0 4px 4px rgba(10, 10, 10, 0.2); border-radius: 0 0 6px 6px; } } .navigation__dropdown .navigation__item { display: block; @include media-breakpoint-up(lg) { padding-top: 0.375rem; padding-bottom: 0.375rem; padding-right: 3rem; padding-left: 1rem; text-wrap: nowrap; } } .navigation__dropdown .navigation__item:hover { @include media-breakpoint-up(lg) { color: #b49fd6; } }
0
rapidsai_public_repos/rapids.ai/assets/scss
rapidsai_public_repos/rapids.ai/assets/scss/rapidsai/_index.scss
/* ============================ Custom CSS for rapids.ai =========================== */ /* /// general /// */ body { font-display: fallback; font-family: 'Open Sans', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background-color: #fff; color: #212121; line-height: 1.6; } // TODO: remove this block. // These styles were a part of our previously used `normalize.css` file. That // file has been removed, but I copied these styles over in particular to avoid // having to make additional changes to the site. In the future, we should // remove this block and fix the styles on our landing pages accordingly. The // presence of these styles makes our documentation pages look bad. blockquote, body, dd, dl, dt, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, html, iframe, legend, li, ol, p, pre, textarea, ul { margin: 0; padding: 0; } img { max-width: 100%; } a { color: #37c9dd; cursor: pointer; font-weight: 700; transition: all 0.4s ease-out; } a:hover { color: #409da9; transition: all 0.4s ease-out; } .title:not(:last-child) { margin-bottom: 0.5rem; } h1, h2, h3 { color: #7306ff; font-weight: 300; letter-spacing: normal; font-family: sans-serif; text-transform: uppercase; margin-bottom: 0; } h1 { font-size: 2.5rem; line-height: 2.5rem; } h2 { font-size: 1.7rem; line-height: 2rem; } h3 { font-weight: bold; } h3, h4, h5, h6 { font-size: map-get($font-sizes, 6); line-height: 1.6; } .subheading { font-size: 1.3rem; } strong { color: inherit; } pre { position: relative; background-color: #efefef; padding: 1em; border-top: 2px solid #dedede; word-break: break-word; white-space: pre-wrap; margin-right: 1rem; overflow: visible; box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2); color: #4a4a4a } code { color: #151515; background-color: #efefef; } .code-sample { display: block; background-color: #efefef; padding: 1em 2em; border-top: 2px solid #7400ff; word-break: break-word; overflow: visible; box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2); color: #4a4a4a } a button { text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3); transition: all 0.4s ease-out; } a button:hover { text-shadow: none; transition: all 0.4s ease-out; } /* /// button style /// */ button { background-color: transparent; cursor: pointer; justify-content: center; padding-bottom: calc(0.5em - 1px); padding-left: 1em; padding-right: 1em; padding-top: calc(0.5em - 1px); text-align: center; white-space: nowrap; border-style: solid; border-color: #dbdbdb; color: white; border-width: 3px; border-radius: 0.5rem; border-top-right-radius: 0; font-weight: 600; font-family: 'Open Sans'; text-transform: uppercase; transition: all 0.55s ease-out; line-height: 1.15; /* spent too much time on this */ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 2px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.2) inset; } button:hover { text-shadow: none; box-shadow: none; transition: all 0.35s ease-out; } .button-rapids-white { color: white; border-color: white; } .button-rapids-purple { color: #7400ff; border-color: #7400ff; } .button-rapids-teal { color: #1ebdd2; border-color: #1ebdd2; } .section { padding: map-get($spacers, 7) 0; } /* Note: copy-button class applied by js */ .copy-button { position: absolute; top: -2rem; right: 0; border-radius: 0; border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; border-width: 2px; border-bottom-width: 0; color: #720dff; border-color: #720dff; box-shadow: 0px 3px 2px rgba(0,0,0, 0.3) inset; } /* Note: copy-button-white class applied by js if 'use-white-copy' class present */ .copy-button-white { position: absolute; top: -2rem; right: 0; border-radius: 0; border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; border-width: 2px; border-bottom-width: 0; color: white; border-color: white; box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.3) inset; line-height: map-get($additional-line-heights, "xs"); } /* /// footer /// */ .footer { padding-top: 1rem; padding-bottom: 5rem; } .footer-logo { margin: 0 auto; width: 150px; } .footer-item { color: rgba(255, 255, 255, 0.85); padding-left: 0.1rem; padding-right: 0.1rem; } /* /// hero /// */ .hero-rapids-bg { background: url(../images/header-bg.svg) top center no-repeat; background-size: cover; min-height: 300px; } .hero-img { width: 225px; margin: 0 auto; } .hero-body { padding: 7rem 1.5rem; @include media-breakpoint-up(md) { padding: 9rem 4.5rem; } } .hero-announce-container { display: flex; justify-content: center; flex-wrap: wrap; } .hero-announce { position: relative; font-size: 0.85rem; padding-left: 0.5rem; padding-right: 0.5rem; margin-top: 1rem; } .announce-icon { position: absolute !important; // override .fa-stack position font-size: 0.75rem; top: -0.75rem; left: -0.3rem; color: #7400ff; } /* /// slant graphics /// */ /* https://css-tricks.com/using-box-shadows-and-clip-path-together/ */ .top-slant-container { filter: drop-shadow(0px -3px 2px rgba(0, 0, 0, 0.2)); margin: 0 calc(-#{$grid-gutter-width} / 2); } .top-slant-up { height: 4.1rem; margin-top: -4rem; margin-bottom: -0.1rem; clip-path: polygon(0 100%, 0 80%, 100% 0, 100% 100%); } .top-slant-down { height: 4.1rem; margin-top: -4rem; margin-bottom: -0.1rem; clip-path: polygon(0 100%, 100% 100%, 100% 80%, 0 0); } .bottom-slant-container { filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.2)); margin: 0 calc(-#{$grid-gutter-width} / 2); } .bottom-slant-up { height: 4.1rem; margin-bottom: -4rem; margin-top: -0.1rem; clip-path: polygon(0 0, 100% 0, 100% 20%, 0% 100%); } .bottom-slant-down { height: 4.1rem; margin-bottom: -4rem; margin-top: -0.1rem; clip-path: polygon(0 0, 0 20%, 100% 100%, 100% 0); } .padding-bottom-slant { padding-bottom: 10.5rem; } .padding-top-slant { padding-top: 10.5rem; } /* /// misc /// */ .tags-container { width: 100%; margin-top: -0.2rem; margin-bottom: 0.5rem; display: flex; justify-content: right; } .tags-item { font-size: 0.7rem; font-weight: 600; border-width: 0.13rem; border-bottom-right-radius: 0.5rem; border-bottom-left-radius: 0.5rem; border-left-style: solid; border-right-style: solid; border-bottom-style: solid; text-align: center; padding-top: 0.15rem; padding-bottom: 0.15rem; padding-left: 0.45rem; padding-right: 0.45rem; margin-left: 0.4rem; margin-top: -0.1rem; } /* /// border colors /// */ // TODO: generate utility classes for custom colors // so that "!important" can be removed. .has-border-rapids-purple-primary { border-color:#720dff!important; } .has-border-rapids-pink { border-color: #d216d2; } .has-border-rapids-orange { border-color: #ffb500; } .has-border-rapids-teal { border-color: #36c9dd; } .border-white { border-color: rgb(228, 228, 228)!important; } /* /// posts /// */ .post-text { color: #666666; font-weight: 400; line-height: 1.4rem; overflow: hidden; text-overflow: ellipsis; } .post-action { color: #7306ff; font-size: 1.2rem; margin-top: 0.5rem; font-variant: all-small-caps; } /* /// images /// */ .img-center { margin: 0 auto; } .img-full { width: 100%; } .img-half { width: 50%; } .img-third { width: 33%; } .img-quarter { width: 25%; } .img-w100 { width: 100px; } .img-w150 { width: 150px; } .img-w200 { width: 200px; } .img-w250 { width: 250px; } .img-w400 { width: 400px; } /* /// colors /// */ .has-background-rapids-image { background: url(../images/header-bg.svg) no-repeat; background-size: cover; border-radius: 0.5rem; border-top-right-radius: 0; } .has-background-rapids-gray { background-color: #f8f8f8; } .has-background-rapids-purple-primary { background-color: #7400ff; } .has-background-rapids-purple-secondary1 { background-color: #8735fb; } .has-background-rapids-purple-secondary2 { background-color: #984dfb; } .has-background-rapids-pink { background-color: #d216d2; } .has-background-rapids-orange { background-color: #ffb500; } .has-background-rapids-teal { background-color: #36c9dd; } .has-text-rapids-purple-primary { color: #7400ff; } .has-text-rapids-purple-secondary1 { color: #8735fb; } .has-text-rapids-purple-secondary2 { color: #984dfb; } .has-text-rapids-pink { color: #d216d2; } .has-text-rapids-orange { color: #ffb500; } .has-text-rapids-teal { color: #36c9dd; } /* /// misc additions /// */ .fs-7 { font-size: 0.7rem; } .mt-10 { margin-top: 5rem; } .mb-10 { margin-bottom: 5rem; } .pt-10 { padding-top: 5rem; } .pb-10 { padding-bottom: 5rem; }
0
rapidsai_public_repos/rapids.ai/data
rapidsai_public_repos/rapids.ai/data/posts/medium.yaml
# # This file was automatically generated by "get_medium.py" # - date: Tue, 24 Oct 2023 23:20:14 GMT link: https://medium.com/rapids-ai/intro-to-graph-analysis-using-cugraph-similarity-algorithms-64fa923791ac poster: Don Acosta text: This is the second chapter in our blog series on GPU-accelerated graph analysis using RAPIDS cuGraph. In the first chapter, we introduced the basics of graphs and analyzed them using a few of the many algorithms in cuGraph. That blog answered some practical questions... title: 'Intro to Graph Analysis using cuGraph: Similarity Algorithms' - date: Tue, 12 Sep 2023 15:30:51 GMT link: https://medium.com/rapids-ai/introduction-to-graph-neural-networks-with-cugraph-dgl-64c632e9cc52 poster: Alex Ravenel text: "Graph neural networks (GNNs) have emerged as a powerful\ \ tool for a variety of machine learning tasks on graph-structured data. These\ \ tasks range from node classification and link prediction to graph classification.\ \ They also cover a wide range of a..." title: Intro to Graph Neural Networks with cuGraph-DGL - date: Wed, 23 Aug 2023 19:44:20 GMT link: https://medium.com/rapids-ai/rapids-23-08-release-23db51c255f0 poster: Alex Ravenel text: The RAPIDS 23.08 release was a big one, with new features to support large-scale text processing and LLMs in both cuDF and RAFT, major new functionality to cuXfilter and cuSpatial (and the new cuProj library for coordinate transforms), impressive performance numbers ... title: RAPIDS 23.08 Release - date: Tue, 11 Jul 2023 18:22:11 GMT link: https://medium.com/rapids-ai/introduction-to-graph-analysis-using-cugraph-a9dc2fbc3c5e poster: Don Acosta text: When analyzing data, sometimes the relationships between the data elements are important along with the scope of the question being asked. In those cases, it is better to represent the data as a graph and apply graph analytics. An example coming out of the COVID pand... title: Introduction to Graph Analysis using cuGraph - date: Wed, 21 Jun 2023 15:53:26 GMT link: https://medium.com/rapids-ai/rapids-23-06-release-accelerating-data-science-6b09018c0527 poster: Alex Ravenel text: "RAPIDS\u2019 23.06 release is now available! This release adds a number of\ \ features and improvements we are excited about, including: Get started with\ \ the quick start installation instructions for conda, pip, or docker or read\ \ on to see more details on this months\u2019 upgrad..." title: "RAPIDS 23.06 Release\u200A\u2014\u200AAccelerating Data Science" - date: Tue, 23 May 2023 15:02:01 GMT link: https://medium.com/rapids-ai/cuspatial-23-04-7d8014570d8d poster: Alex Ravenel text: cuSpatial continues barreling towards complete spatial relationship predicate (DE-9IM) support and Cartesian distance between any two geometries. In support of these goals cuSpatial 23.04 includes multiple new features, as well as a new notebook that shows off the ca... title: cuSpatial 23.04 - date: Thu, 11 May 2023 16:01:54 GMT link: https://medium.com/rapids-ai/intro-to-graph-neural-networks-with-cugraph-pyg-6fe32c93a2d0 poster: Alex Barghi text: Introduction Graph Neural Networks (GNNs) are one of the fastest-growing tools in machine learning. GNNs combine a rich array of feature data (similar to the input of a traditional neural network) with network structure (represented as a graph). Depending on the work... title: Intro to Graph Neural Networks with cuGraph-PyG - date: Tue, 09 May 2023 18:37:21 GMT link: https://medium.com/rapids-ai/rapids-release-23-04-ed03055d378f poster: Alex Ravenel text: RAPIDS 23.04 is out! We are excited about this release, which includes major updates to cuSpatial, continued improvements to graph neural network functionality in our graph libraries, some performance improvements (and benchmarking!) in cuDF, and a number of improvem... title: RAPIDS Release 23.04 - date: Thu, 09 Mar 2023 22:40:44 GMT link: https://medium.com/rapids-ai/rapids-release-23-02-1518cfaed17f poster: Paul Mahler text: "First Release of the\_Year RAPIDS Release 23.02 is live. We are most excited\ \ to highlight several quality-of-life improvements. We have a new web presence\ \ for RAPIDS; we believe this will make learning, using, and adding to RAPIDS\ \ easier and more enjoyable than ever b..." title: RAPIDS Release 23.02 - date: Wed, 22 Feb 2023 16:40:19 GMT link: https://medium.com/rapids-ai/faster-resampling-with-imbalanced-learn-and-cuml-6cfc1dae63bf poster: Nick Becker text: "Imbalanced-learn is the most popular open source library for resampling datasets\ \ with class imbalance. With more than 3 million downloads in the past month alone,\ \ it\u2019s a critical piece of the data analysis and machine learning ecosystem.\ \ RAPIDS cuML is a suite of fas..." title: Faster Resampling with Imbalanced-learn and cuML
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/static/manifest.json
{ "name": "RAPIDS GPU accelerated data science", "short_name": "RAPIDS", "theme_color": "#fff", "background_color": "#fff", "display": "browser", "orientation": "portrait", "scope": "/", "start_url": "/https://rapids.ai/", "icons": [ { "src": "images/icons/icon-72x72.png", "sizes": "72x72", "type": "image/png" }, { "src": "images/icons/icon-96x96.png", "sizes": "96x96", "type": "image/png" }, { "src": "images/icons/icon-128x128.png", "sizes": "128x128", "type": "image/png" }, { "src": "images/icons/icon-144x144.png", "sizes": "144x144", "type": "image/png" }, { "src": "images/icons/icon-152x152.png", "sizes": "152x152", "type": "image/png" }, { "src": "images/icons/icon-192x192.png", "sizes": "192x192", "type": "image/png" }, { "src": "images/icons/icon-384x384.png", "sizes": "384x384", "type": "image/png" }, { "src": "images/icons/icon-512x512.png", "sizes": "512x512", "type": "image/png" } ] }
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/static/site.webmanifest
{ "short_name": "RAPIDS", "name": "RAPIDS", "icons": [{ "src": "icon.png", "type": "image/png", "sizes": "512x512" }], "start_url": "/?utm_source=homescreen", "background_color": "#fafafa", "theme_color": "#fafafa" }
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/css/normalize.css
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ /* Document ========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * Render the `main` element consistently in IE. */ main { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * Remove the gray background on active links in IE 10. */ a { background-color: transparent; } /** * 1. Remove the bottom border in Chrome 57- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE 10. */ img { border-style: none; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers. * 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. * 1. Show the overflow in Edge. */ button, input { /* 1 */ overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * Correct the inability to style clickable types in iOS and Safari. */ button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } /** * Remove the inner border and padding in Firefox. */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } /** * Restore the focus styles unset by the previous rule. */ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Correct the padding in Firefox. */ fieldset { padding: 0.35em 0.75em 0.625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Remove the default vertical scrollbar in IE 10+. */ textarea { overflow: auto; } /** * 1. Add the correct box sizing in IE 10. * 2. Remove the padding in IE 10. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } /** * Remove the inner padding in Chrome and Safari on macOS. */ [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE 10+, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* Misc ========================================================================== */ /** * Add the correct display in IE 10+. */ template { display: none; } /** * Add the correct display in IE 10. */ [hidden] { display: none; }
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/css/highlight.css
/* From https://github.com/mozmorris/tomorrow-pygments/blob/master/css/tomorrow.css */ .highlight .hll { background-color: #d6d6d6 } .highlight .c { color: #8e908c } /* Comment */ .highlight .err { color: #c82829 } /* Error */ .highlight .k { color: #8959a8 } /* Keyword */ .highlight .l { color: #f5871f } /* Literal */ .highlight .n { color: #4d4d4c } /* Name */ .highlight .o { color: #3e999f } /* Operator */ .highlight .p { color: #4d4d4c } /* Punctuation */ .highlight .cm { color: #8e908c } /* Comment.Multiline */ .highlight .cp { color: #8e908c } /* Comment.Preproc */ .highlight .c1 { color: #8e908c } /* Comment.Single */ .highlight .cs { color: #8e908c } /* Comment.Special */ .highlight .gd { color: #c82829 } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ .highlight .gh { color: #4d4d4c; font-weight: bold } /* Generic.Heading */ .highlight .gi { color: #718c00 } /* Generic.Inserted */ .highlight .gp { color: #8e908c; font-weight: bold } /* Generic.Prompt */ .highlight .gs { font-weight: bold } /* Generic.Strong */ .highlight .gu { color: #3e999f; font-weight: bold } /* Generic.Subheading */ .highlight .kc { color: #8959a8 } /* Keyword.Constant */ .highlight .kd { color: #8959a8 } /* Keyword.Declaration */ .highlight .kn { color: #3e999f } /* Keyword.Namespace */ .highlight .kp { color: #8959a8 } /* Keyword.Pseudo */ .highlight .kr { color: #8959a8 } /* Keyword.Reserved */ .highlight .kt { color: #eab700 } /* Keyword.Type */ .highlight .ld { color: #718c00 } /* Literal.Date */ .highlight .m { color: #f5871f } /* Literal.Number */ .highlight .s { color: #718c00 } /* Literal.String */ .highlight .na { color: #4271ae } /* Name.Attribute */ .highlight .nb { color: #4d4d4c } /* Name.Builtin */ .highlight .nc { color: #eab700 } /* Name.Class */ .highlight .no { color: #c82829 } /* Name.Constant */ .highlight .nd { color: #3e999f } /* Name.Decorator */ .highlight .ni { color: #4d4d4c } /* Name.Entity */ .highlight .ne { color: #c82829 } /* Name.Exception */ .highlight .nf { color: #4271ae } /* Name.Function */ .highlight .nl { color: #4d4d4c } /* Name.Label */ .highlight .nn { color: #eab700 } /* Name.Namespace */ .highlight .nx { color: #4271ae } /* Name.Other */ .highlight .py { color: #4d4d4c } /* Name.Property */ .highlight .nt { color: #3e999f } /* Name.Tag */ .highlight .nv { color: #c82829 } /* Name.Variable */ .highlight .ow { color: #3e999f } /* Operator.Word */ .highlight .w { color: #4d4d4c } /* Text.Whitespace */ .highlight .mf { color: #f5871f } /* Literal.Number.Float */ .highlight .mh { color: #f5871f } /* Literal.Number.Hex */ .highlight .mi { color: #f5871f } /* Literal.Number.Integer */ .highlight .mo { color: #f5871f } /* Literal.Number.Oct */ .highlight .sb { color: #718c00 } /* Literal.String.Backtick */ .highlight .sc { color: #4d4d4c } /* Literal.String.Char */ .highlight .sd { color: #8e908c } /* Literal.String.Doc */ .highlight .s2 { color: #718c00 } /* Literal.String.Double */ .highlight .se { color: #f5871f } /* Literal.String.Escape */ .highlight .sh { color: #718c00 } /* Literal.String.Heredoc */ .highlight .si { color: #f5871f } /* Literal.String.Interpol */ .highlight .sx { color: #718c00 } /* Literal.String.Other */ .highlight .sr { color: #718c00 } /* Literal.String.Regex */ .highlight .s1 { color: #718c00 } /* Literal.String.Single */ .highlight .ss { color: #718c00 } /* Literal.String.Symbol */ .highlight .bp { color: #4d4d4c } /* Name.Builtin.Pseudo */ .highlight .vc { color: #c82829 } /* Name.Variable.Class */ .highlight .vg { color: #c82829 } /* Name.Variable.Global */ .highlight .vi { color: #c82829 } /* Name.Variable.Instance */ .highlight .il { color: #f5871f } /* Literal.Number.Integer.Long */
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/EaseVsPerformance.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 260 280" style="enable-background:new 0 0 260 280;" xml:space="preserve"> <style type="text/css"> .st0{fill:#36C9DD;} .st1{enable-background:new ;} .st2{fill:#FFFFFF;} .st3{fill:#828282;} .st4{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;} .st5{fill:none;stroke:#828282;stroke-width:2;stroke-miterlimit:10;} .st6{fill:none;stroke:#36C9DD;stroke-width:2;stroke-miterlimit:10;} </style> <title>EaseVsPerformance</title> <rect x="42.5" y="41.3" class="st0" width="178" height="29"/> <g class="st1"> <path class="st2" d="M115.5,55.3c0,1-0.3,1.8-1,2.4s-1.7,0.8-2.9,0.8h-1v3.7h-1.6v-10h2.9c1.2,0,2.2,0.3,2.8,0.8 S115.5,54.3,115.5,55.3z M110.6,57.1h0.9c0.8,0,1.5-0.1,1.8-0.4s0.6-0.7,0.6-1.4c0-0.6-0.2-1-0.5-1.3s-0.9-0.4-1.6-0.4h-1.1V57.1z" /> </g> <g class="st1"> <path class="st2" d="M116.2,54.7h1.8l1.5,4.3c0.2,0.6,0.4,1.2,0.5,1.7h0.1c0-0.3,0.1-0.6,0.2-0.9c0.1-0.4,0.7-2.1,1.7-5.1h1.7 l-3.2,8.6c-0.6,1.6-1.6,2.4-2.9,2.4c-0.4,0-0.7,0-1-0.1v-1.3c0.2,0.1,0.5,0.1,0.8,0.1c0.8,0,1.3-0.4,1.6-1.3l0.3-0.7L116.2,54.7z" /> </g> <g class="st1"> <path class="st2" d="M127.6,61.1c0.4,0,0.8-0.1,1.2-0.2v1.2c-0.2,0.1-0.4,0.1-0.7,0.2c-0.3,0.1-0.6,0.1-0.9,0.1 c-1.5,0-2.3-0.8-2.3-2.4v-4.1h-1v-0.7l1.1-0.6l0.5-1.6h1v1.7h2.2v1.2h-2.2v4c0,0.4,0.1,0.7,0.3,0.9C127,61,127.3,61.1,127.6,61.1z" /> </g> <g class="st1"> <path class="st2" d="M136.9,62.3h-1.6v-4.6c0-0.6-0.1-1-0.4-1.3c-0.2-0.3-0.6-0.4-1.1-0.4c-0.7,0-1.2,0.2-1.5,0.6 c-0.3,0.4-0.5,1.1-0.5,2v3.8h-1.6V51.6h1.6v2.7c0,0.4,0,0.9-0.1,1.4h0.1c0.2-0.4,0.5-0.6,0.9-0.8s0.8-0.3,1.4-0.3 c1.8,0,2.7,0.9,2.7,2.8V62.3z"/> <path class="st2" d="M145.9,58.5c0,1.2-0.3,2.2-1,2.9c-0.6,0.7-1.5,1-2.6,1c-0.7,0-1.3-0.2-1.9-0.5c-0.5-0.3-1-0.8-1.3-1.4 c-0.3-0.6-0.4-1.3-0.4-2.1c0-1.2,0.3-2.2,0.9-2.9s1.5-1,2.7-1c1.1,0,2,0.4,2.6,1.1C145.5,56.3,145.9,57.3,145.9,58.5z M140.3,58.5 c0,1.7,0.6,2.6,1.9,2.6c1.3,0,1.9-0.9,1.9-2.6c0-1.7-0.6-2.6-1.9-2.6c-0.7,0-1.2,0.2-1.5,0.7C140.5,57,140.3,57.6,140.3,58.5z"/> </g> <g class="st1"> <path class="st2" d="M154.3,62.3h-1.6v-4.6c0-0.6-0.1-1-0.4-1.3c-0.2-0.3-0.6-0.4-1.1-0.4c-0.7,0-1.2,0.2-1.5,0.6s-0.5,1.1-0.5,2 v3.8h-1.6v-7.6h1.3l0.2,1h0.1c0.2-0.4,0.6-0.6,1-0.8c0.4-0.2,0.9-0.3,1.4-0.3c1.8,0,2.7,0.9,2.7,2.8V62.3z"/> </g> <rect x="42.5" y="113.3" class="st0" width="178" height="29"/> <g class="st1"> <path class="st2" d="M117.6,124.5c-0.9,0-1.7,0.3-2.2,1s-0.8,1.6-0.8,2.8c0,1.2,0.3,2.2,0.8,2.8s1.3,0.9,2.2,0.9 c0.4,0,0.8,0,1.2-0.1c0.4-0.1,0.8-0.2,1.2-0.3v1.4c-0.8,0.3-1.7,0.4-2.7,0.4c-1.5,0-2.6-0.4-3.4-1.3c-0.8-0.9-1.2-2.2-1.2-3.8 c0-1,0.2-1.9,0.6-2.7s0.9-1.4,1.7-1.8s1.6-0.6,2.5-0.6c1,0,2,0.2,2.8,0.6l-0.6,1.4c-0.3-0.2-0.7-0.3-1.1-0.4 C118.5,124.6,118.1,124.5,117.6,124.5z"/> </g> <g class="st1"> <path class="st2" d="M130.1,123.3v6.5c0,0.7-0.2,1.4-0.5,1.9c-0.3,0.6-0.8,1-1.4,1.3c-0.6,0.3-1.3,0.4-2.1,0.4 c-1.2,0-2.2-0.3-2.9-1s-1-1.6-1-2.7v-6.4h1.6v6.3c0,0.8,0.2,1.4,0.6,1.8s1,0.6,1.8,0.6c1.5,0,2.3-0.8,2.3-2.4v-6.3H130.1z"/> </g> <g class="st1"> <path class="st2" d="M140.8,128.2c0,1.6-0.5,2.9-1.4,3.8c-0.9,0.9-2.2,1.3-4,1.3h-2.8v-10h3.1c1.6,0,2.8,0.4,3.7,1.3 C140.4,125.4,140.8,126.6,140.8,128.2z M139.1,128.2c0-2.4-1.1-3.6-3.4-3.6h-1.4v7.3h1.2C137.9,131.9,139.1,130.7,139.1,128.2z"/> </g> <g class="st1"> <path class="st2" d="M149.2,133.3l-1-2.8h-3.8l-1,2.8h-1.7l3.7-10h1.8l3.7,10H149.2z M147.8,129.1l-0.9-2.7 c-0.1-0.2-0.2-0.5-0.3-0.9c-0.1-0.4-0.2-0.7-0.2-0.9c-0.1,0.6-0.3,1.2-0.5,1.8l-0.9,2.6H147.8z"/> </g> <rect x="42.5" y="77.3" class="st0" width="178" height="29"/> <g class="st1"> <path class="st2" d="M117.5,88.5c-0.9,0-1.7,0.3-2.2,1s-0.8,1.6-0.8,2.8c0,1.2,0.3,2.2,0.8,2.8s1.3,0.9,2.2,0.9 c0.4,0,0.8,0,1.2-0.1c0.4-0.1,0.8-0.2,1.2-0.3V97c-0.8,0.3-1.7,0.4-2.7,0.4c-1.5,0-2.6-0.4-3.4-1.3c-0.8-0.9-1.2-2.2-1.2-3.8 c0-1,0.2-1.9,0.6-2.7s0.9-1.4,1.7-1.8s1.6-0.6,2.5-0.6c1,0,2,0.2,2.8,0.6l-0.6,1.4c-0.3-0.2-0.7-0.3-1.1-0.4 C118.3,88.6,117.9,88.5,117.5,88.5z"/> </g> <g class="st1"> <path class="st2" d="M126.1,87.3l-3.7,10h-1.5l3.7-10H126.1z"/> </g> <g class="st1"> <path class="st2" d="M131.8,88.5c-0.9,0-1.7,0.3-2.2,1c-0.5,0.7-0.8,1.6-0.8,2.8c0,1.2,0.3,2.2,0.8,2.8c0.5,0.6,1.3,0.9,2.2,0.9 c0.4,0,0.8,0,1.2-0.1c0.4-0.1,0.8-0.2,1.2-0.3V97c-0.8,0.3-1.7,0.4-2.7,0.4c-1.5,0-2.6-0.4-3.4-1.3c-0.8-0.9-1.2-2.2-1.2-3.8 c0-1,0.2-1.9,0.6-2.7c0.4-0.8,0.9-1.4,1.7-1.8c0.7-0.4,1.6-0.6,2.5-0.6c1,0,2,0.2,2.8,0.6l-0.6,1.4c-0.3-0.2-0.7-0.3-1.1-0.4 C132.6,88.6,132.2,88.5,131.8,88.5z"/> </g> <g class="st1"> <path class="st2" d="M138.5,92.9h-2.7v-1.2h2.7v-2.8h1.2v2.8h2.7v1.2h-2.7v2.8h-1.2V92.9z"/> </g> <g class="st1"> <path class="st2" d="M146.5,92.9h-2.7v-1.2h2.7v-2.8h1.2v2.8h2.7v1.2h-2.7v2.8h-1.2V92.9z"/> </g> <rect x="43" y="156.3" class="st3" width="177" height="83"/> <g class="st1"> <path class="st2" d="M122.3,169.8h3.7v5c-0.6,0.2-1.2,0.3-1.7,0.4s-1.2,0.1-1.8,0.1c-1.5,0-2.7-0.4-3.5-1.3 c-0.8-0.9-1.2-2.2-1.2-3.8c0-1.6,0.5-2.9,1.4-3.8c0.9-0.9,2.2-1.4,3.8-1.4c1,0,2,0.2,3,0.6l-0.6,1.4c-0.8-0.4-1.6-0.6-2.4-0.6 c-1.1,0-1.9,0.3-2.5,1s-0.9,1.6-0.9,2.7c0,1.2,0.3,2.1,0.8,2.8c0.6,0.6,1.4,1,2.4,1c0.5,0,1.1-0.1,1.7-0.2v-2.6h-2.1V169.8z"/> </g> <g class="st1"> <path class="st2" d="M135.1,168.3c0,1-0.3,1.8-1,2.4s-1.7,0.8-2.9,0.8h-1v3.7h-1.6v-10h2.9c1.2,0,2.2,0.3,2.8,0.8 S135.1,167.3,135.1,168.3z M130.1,170.1h0.9c0.8,0,1.5-0.1,1.8-0.4c0.4-0.3,0.6-0.7,0.6-1.4c0-0.6-0.2-1-0.5-1.3 c-0.4-0.3-0.9-0.4-1.6-0.4h-1.1V170.1z"/> </g> <g class="st1"> <path class="st2" d="M144.8,165.3v6.5c0,0.7-0.2,1.4-0.5,1.9c-0.3,0.6-0.8,1-1.4,1.3c-0.6,0.3-1.3,0.4-2.2,0.4 c-1.2,0-2.2-0.3-2.9-1c-0.7-0.7-1-1.6-1-2.7v-6.4h1.6v6.3c0,0.8,0.2,1.4,0.6,1.8s1,0.6,1.8,0.6c1.5,0,2.3-0.8,2.3-2.4v-6.3H144.8z" /> </g> <g class="st1"> <path class="st2" d="M88.2,189.3l-1-2.8h-3.8l-1,2.8h-1.7l3.7-10h1.8l3.7,10H88.2z M86.8,185.1l-0.9-2.7c-0.1-0.2-0.2-0.5-0.3-0.9 s-0.2-0.7-0.2-0.9c-0.1,0.6-0.3,1.2-0.5,1.8l-0.9,2.6H86.8z"/> <path class="st2" d="M92.9,185.3v4h-1.6v-10h2.8c1.3,0,2.2,0.2,2.9,0.7s0.9,1.2,0.9,2.2c0,1.2-0.6,2.1-1.9,2.7l2.8,4.4h-1.9l-2.4-4 H92.9z M92.9,183.9h1.1c0.8,0,1.3-0.1,1.7-0.4s0.5-0.7,0.5-1.3c0-0.6-0.2-1-0.6-1.2s-0.9-0.4-1.7-0.4h-1.1V183.9z"/> <path class="st2" d="M104.5,180.5c-0.9,0-1.7,0.3-2.2,1s-0.8,1.6-0.8,2.8c0,1.2,0.3,2.2,0.8,2.8s1.3,0.9,2.2,0.9 c0.4,0,0.8,0,1.2-0.1c0.4-0.1,0.8-0.2,1.2-0.3v1.4c-0.8,0.3-1.7,0.4-2.7,0.4c-1.5,0-2.6-0.4-3.4-1.3c-0.8-0.9-1.2-2.2-1.2-3.8 c0-1,0.2-1.9,0.6-2.7s0.9-1.4,1.7-1.8s1.6-0.6,2.5-0.6c1,0,2,0.2,2.8,0.6l-0.6,1.4c-0.3-0.2-0.7-0.3-1.1-0.4 C105.3,180.6,104.9,180.5,104.5,180.5z"/> <path class="st2" d="M117,189.3h-1.6v-4.5h-4.6v4.5h-1.6v-10h1.6v4.1h4.6v-4.1h1.6V189.3z"/> <path class="st2" d="M119.6,189.3v-10h1.6v10H119.6z"/> <path class="st2" d="M127.4,189.3h-1.6v-8.6h-2.9v-1.4h7.5v1.4h-2.9V189.3z"/> <path class="st2" d="M137.5,189.3h-5.7v-10h5.7v1.4h-4v2.7h3.8v1.4h-3.8v3.1h4V189.3z"/> <path class="st2" d="M143.9,180.5c-0.9,0-1.7,0.3-2.2,1c-0.5,0.7-0.8,1.6-0.8,2.8c0,1.2,0.3,2.2,0.8,2.8c0.5,0.6,1.3,0.9,2.2,0.9 c0.4,0,0.8,0,1.2-0.1c0.4-0.1,0.8-0.2,1.2-0.3v1.4c-0.8,0.3-1.7,0.4-2.7,0.4c-1.5,0-2.6-0.4-3.4-1.3c-0.8-0.9-1.2-2.2-1.2-3.8 c0-1,0.2-1.9,0.6-2.7c0.4-0.8,0.9-1.4,1.7-1.8c0.7-0.4,1.6-0.6,2.5-0.6c1,0,2,0.2,2.8,0.6l-0.6,1.4c-0.3-0.2-0.7-0.3-1.1-0.4 C144.7,180.6,144.3,180.5,143.9,180.5z"/> <path class="st2" d="M152,189.3h-1.6v-8.6h-2.9v-1.4h7.5v1.4H152V189.3z"/> <path class="st2" d="M164.3,179.3v6.5c0,0.7-0.2,1.4-0.5,1.9c-0.3,0.6-0.8,1-1.4,1.3c-0.6,0.3-1.3,0.4-2.1,0.4 c-1.2,0-2.2-0.3-2.9-1c-0.7-0.7-1-1.6-1-2.7v-6.4h1.6v6.3c0,0.8,0.2,1.4,0.6,1.8s1,0.6,1.8,0.6c1.5,0,2.3-0.8,2.3-2.4v-6.3H164.3z" /> <path class="st2" d="M168.5,185.3v4h-1.6v-10h2.8c1.3,0,2.2,0.2,2.9,0.7c0.6,0.5,0.9,1.2,0.9,2.2c0,1.2-0.6,2.1-1.9,2.7l2.8,4.4 h-1.9l-2.4-4H168.5z M168.5,183.9h1.1c0.8,0,1.3-0.1,1.7-0.4s0.5-0.7,0.5-1.3c0-0.6-0.2-1-0.6-1.2s-0.9-0.4-1.7-0.4h-1.1V183.9z"/> <path class="st2" d="M181.4,189.3h-5.7v-10h5.7v1.4h-4v2.7h3.8v1.4h-3.8v3.1h4V189.3z"/> </g> <rect x="146.2" y="205.4" class="st4" width="17.7" height="17.7"/> <rect x="151.8" y="221.4" class="st2" width="6.4" height="1.6"/> <rect x="146.2" y="211" class="st2" width="1.6" height="6.4"/> <rect x="151.8" y="205.3" class="st2" width="6.4" height="1.6"/> <rect x="162.3" y="211" class="st2" width="1.6" height="6.4"/> <rect x="155.9" y="208.6" class="st2" width="4.8" height="4.8"/> <rect x="149.4" y="208.6" class="st2" width="4.8" height="4.8"/> <rect x="155.9" y="215" class="st2" width="4.8" height="4.8"/> <rect x="149.4" y="215" class="st2" width="4.8" height="4.8"/> <rect x="102.3" y="203.8" class="st2" width="1.6" height="1.6"/> <rect x="104.7" y="203.8" class="st2" width="1.6" height="1.6"/> <rect x="102.3" y="206.2" class="st2" width="1.6" height="1.6"/> <rect x="104.7" y="206.2" class="st2" width="1.6" height="1.6"/> <rect x="102.3" y="208.6" class="st2" width="1.6" height="1.6"/> <rect x="104.7" y="208.6" class="st2" width="1.6" height="1.6"/> <rect x="102.3" y="211" class="st2" width="1.6" height="1.6"/> <rect x="102.3" y="213.4" class="st2" width="1.6" height="1.6"/> <rect x="102.3" y="215.8" class="st2" width="1.6" height="1.6"/> <rect x="102.3" y="218.2" class="st2" width="1.6" height="1.6"/> <rect x="104.7" y="218.2" class="st2" width="1.6" height="1.6"/> <rect x="102.3" y="220.6" class="st2" width="1.6" height="1.6"/> <rect x="104.7" y="220.6" class="st2" width="1.6" height="1.6"/> <rect x="102.3" y="223" class="st2" width="1.6" height="1.6"/> <rect x="104.7" y="223" class="st2" width="1.6" height="1.6"/> <rect x="107.2" y="203.8" class="st2" width="1.6" height="1.6"/> <rect x="109.6" y="203.8" class="st2" width="1.6" height="1.6"/> <rect x="107.2" y="206.2" class="st2" width="1.6" height="1.6"/> <rect x="109.6" y="206.2" class="st2" width="1.6" height="1.6"/> <rect x="107.2" y="208.6" class="st2" width="1.6" height="1.6"/> <rect x="109.6" y="208.6" class="st2" width="1.6" height="1.6"/> <rect x="107.2" y="218.2" class="st2" width="1.6" height="1.6"/> <rect x="109.6" y="218.2" class="st2" width="1.6" height="1.6"/> <rect x="107.2" y="220.6" class="st2" width="1.6" height="1.6"/> <rect x="109.6" y="220.6" class="st2" width="1.6" height="1.6"/> <rect x="107.2" y="223" class="st2" width="1.6" height="1.6"/> <rect x="109.6" y="223" class="st2" width="1.6" height="1.6"/> <rect x="112" y="203.8" class="st2" width="1.6" height="1.6"/> <rect x="114.4" y="203.8" class="st2" width="1.6" height="1.6"/> <rect x="112" y="206.2" class="st2" width="1.6" height="1.6"/> <rect x="114.4" y="206.2" class="st2" width="1.6" height="1.6"/> <rect x="112" y="208.6" class="st2" width="1.6" height="1.6"/> <rect x="114.4" y="208.6" class="st2" width="1.6" height="1.6"/> <rect x="112" y="218.2" class="st2" width="1.6" height="1.6"/> <rect x="114.4" y="218.2" class="st2" width="1.6" height="1.6"/> <rect x="112" y="220.6" class="st2" width="1.6" height="1.6"/> <rect x="114.4" y="220.6" class="st2" width="1.6" height="1.6"/> <rect x="112" y="223" class="st2" width="1.6" height="1.6"/> <rect x="114.4" y="223" class="st2" width="1.6" height="1.6"/> <rect x="116.8" y="203.8" class="st2" width="1.6" height="1.6"/> <rect x="119.2" y="203.8" class="st2" width="1.6" height="1.6"/> <rect x="116.8" y="206.2" class="st2" width="1.6" height="1.6"/> <rect x="119.2" y="206.2" class="st2" width="1.6" height="1.6"/> <rect x="116.8" y="208.6" class="st2" width="1.6" height="1.6"/> <rect x="119.2" y="208.6" class="st2" width="1.6" height="1.6"/> <rect x="104.7" y="211" class="st2" width="1.6" height="1.6"/> <rect x="104.7" y="213.4" class="st2" width="1.6" height="1.6"/> <rect x="104.7" y="215.8" class="st2" width="1.6" height="1.6"/> <rect x="107.2" y="211" class="st2" width="1.6" height="1.6"/> <rect x="109.6" y="211" class="st2" width="1.6" height="1.6"/> <rect x="107.2" y="213.4" class="st2" width="1.6" height="1.6"/> <rect x="109.6" y="213.4" class="st2" width="1.6" height="1.6"/> <rect x="107.2" y="215.8" class="st2" width="1.6" height="1.6"/> <rect x="109.6" y="215.8" class="st2" width="1.6" height="1.6"/> <rect x="112" y="211" class="st2" width="1.6" height="1.6"/> <rect x="114.4" y="211" class="st2" width="1.6" height="1.6"/> <rect x="112" y="213.4" class="st2" width="1.6" height="1.6"/> <rect x="114.4" y="213.4" class="st2" width="1.6" height="1.6"/> <rect x="112" y="215.8" class="st2" width="1.6" height="1.6"/> <rect x="114.4" y="215.8" class="st2" width="1.6" height="1.6"/> <rect x="116.8" y="211" class="st2" width="1.6" height="1.6"/> <rect x="119.2" y="211" class="st2" width="1.6" height="1.6"/> <rect x="116.8" y="213.4" class="st2" width="1.6" height="1.6"/> <rect x="119.2" y="213.4" class="st2" width="1.6" height="1.6"/> <rect x="116.8" y="215.8" class="st2" width="1.6" height="1.6"/> <rect x="119.2" y="215.8" class="st2" width="1.6" height="1.6"/> <rect x="116.8" y="218.2" class="st2" width="1.6" height="1.6"/> <rect x="119.2" y="218.2" class="st2" width="1.6" height="1.6"/> <rect x="116.8" y="220.6" class="st2" width="1.6" height="1.6"/> <rect x="119.2" y="220.6" class="st2" width="1.6" height="1.6"/> <rect x="116.8" y="223" class="st2" width="1.6" height="1.6"/> <rect x="121.6" y="203.8" class="st2" width="1.6" height="1.6"/> <rect x="121.6" y="206.2" class="st2" width="1.6" height="1.6"/> <rect x="121.6" y="208.6" class="st2" width="1.6" height="1.6"/> <rect x="121.6" y="211" class="st2" width="1.6" height="1.6"/> <rect x="121.6" y="213.4" class="st2" width="1.6" height="1.6"/> <rect x="121.6" y="215.8" class="st2" width="1.6" height="1.6"/> <rect x="121.6" y="218.2" class="st2" width="1.6" height="1.6"/> <rect x="121.6" y="220.6" class="st2" width="1.6" height="1.6"/> <rect x="121.6" y="223" class="st2" width="1.6" height="1.6"/> <rect x="119.2" y="223" class="st2" width="1.6" height="1.6"/> <rect x="99.1" y="200.5" class="st4" width="27.3" height="27.3"/> <rect x="99.1" y="211" class="st2" width="1.6" height="6.4"/> <rect x="124.8" y="211" class="st2" width="1.6" height="6.4"/> <rect x="109.6" y="200.5" class="st2" width="6.4" height="1.6"/> <rect x="109.6" y="226.2" class="st2" width="6.4" height="1.6"/> <line class="st4" x1="126.4" y1="214.2" x2="146.2" y2="214.2"/> <line class="st5" x1="234.5" y1="231.6" x2="234.5" y2="44.3"/> <polygon class="st3" points="238,229.2 234.5,242.3 231,229.2 "/> <line class="st6" x1="25.5" y1="46.2" x2="25.5" y2="237.8"/> <polygon class="st0" points="22,48.5 25.5,35.5 29,48.5 "/> <g class="st1"> <path class="st0" d="M30.6,26.8l-6.1,0l0-10.7l6.1,0l0,1.5l-4.3,0l0,2.9l4,0l0,1.5l-4,0l0,3.4l4.3,0L30.6,26.8z"/> <path class="st0" d="M37.8,26.8l-0.3-1.1l-0.1,0c-0.4,0.5-0.8,0.8-1.2,1s-0.9,0.3-1.5,0.3c-0.8,0-1.4-0.2-1.9-0.6 c-0.4-0.4-0.7-1-0.7-1.8c0-0.8,0.3-1.5,0.9-1.9c0.6-0.4,1.6-0.7,2.8-0.7l1.4,0l0-0.4c0-0.5-0.1-0.9-0.4-1.2 c-0.2-0.3-0.6-0.4-1.1-0.4c-0.4,0-0.8,0.1-1.2,0.2c-0.4,0.1-0.7,0.3-1.1,0.4L33,19.2c0.4-0.2,0.9-0.4,1.4-0.5 c0.5-0.1,1-0.2,1.5-0.2c1,0,1.8,0.2,2.3,0.7c0.5,0.4,0.8,1.2,0.8,2.1l0,5.5L37.8,26.8z M35.2,25.6c0.6,0,1.1-0.2,1.5-0.5 c0.4-0.4,0.6-0.8,0.6-1.5l0-0.7l-1,0c-0.8,0-1.4,0.2-1.8,0.4S34,24,34,24.5c0,0.4,0.1,0.6,0.3,0.8C34.5,25.5,34.8,25.6,35.2,25.6z" /> <path class="st0" d="M46.9,24.4c0,0.8-0.3,1.4-0.9,1.8c-0.6,0.4-1.4,0.6-2.5,0.6c-1.1,0-1.9-0.2-2.6-0.5l0-1.5 c1,0.4,1.8,0.7,2.7,0.7c1.1,0,1.6-0.3,1.6-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.3-0.3-0.6-0.4c-0.3-0.1-0.6-0.3-1.1-0.5 c-0.9-0.4-1.6-0.7-1.9-1.1c-0.3-0.4-0.5-0.8-0.5-1.4c0-0.7,0.3-1.2,0.8-1.6c0.6-0.4,1.3-0.6,2.3-0.6c1,0,1.9,0.2,2.7,0.6l-0.6,1.3 c-0.9-0.4-1.6-0.5-2.2-0.5c-0.9,0-1.4,0.3-1.4,0.8c0,0.3,0.1,0.5,0.4,0.6c0.2,0.2,0.8,0.4,1.5,0.7c0.7,0.3,1.2,0.5,1.5,0.7 c0.3,0.2,0.5,0.5,0.7,0.7C46.8,23.7,46.9,24,46.9,24.4z"/> <path class="st0" d="M52.3,26.9c-1.3,0-2.2-0.4-3-1.1c-0.7-0.7-1.1-1.7-1.1-3c0-1.3,0.3-2.4,1-3.1c0.7-0.8,1.6-1.1,2.7-1.1 c1.1,0,1.9,0.3,2.5,1c0.6,0.6,0.9,1.5,0.9,2.7l0,0.9l-5.4,0c0,0.8,0.2,1.4,0.6,1.8c0.4,0.4,1,0.6,1.7,0.6c0.5,0,0.9,0,1.3-0.1 c0.4-0.1,0.9-0.2,1.3-0.5l0,1.4c-0.4,0.2-0.8,0.3-1.3,0.4C53.3,26.8,52.8,26.9,52.3,26.9z M52,19.8c-0.5,0-1,0.2-1.3,0.5 c-0.3,0.3-0.5,0.9-0.6,1.5l3.7,0c0-0.7-0.2-1.2-0.5-1.5C52.9,20,52.5,19.8,52,19.8z"/> <path class="st0" d="M68.5,22.6c0,1.3-0.3,2.4-1,3.1s-1.6,1.1-2.8,1.1c-0.8,0-1.4-0.2-2-0.5c-0.6-0.3-1-0.8-1.3-1.5 c-0.3-0.6-0.5-1.4-0.5-2.2c0-1.3,0.3-2.3,1-3.1s1.6-1.1,2.8-1.1c1.2,0,2.1,0.4,2.8,1.1C68.1,20.3,68.5,21.4,68.5,22.6z M62.6,22.6 c0,1.9,0.7,2.8,2.1,2.8c1.4,0,2-0.9,2-2.8c0-1.9-0.7-2.8-2.1-2.8c-0.7,0-1.2,0.2-1.6,0.7C62.7,21.1,62.6,21.8,62.6,22.6z"/> <path class="st0" d="M74.5,19.9l-2,0l0,6.8l-1.7,0l0-6.8l-1.3,0l0-0.8l1.3-0.5l0-0.5c0-1,0.2-1.7,0.7-2.1s1.1-0.7,2.1-0.7 c0.6,0,1.2,0.1,1.8,0.3l-0.5,1.3c-0.4-0.1-0.8-0.2-1.2-0.2c-0.4,0-0.7,0.1-0.9,0.4c-0.2,0.2-0.3,0.6-0.3,1.1l0,0.5l2,0L74.5,19.9z" /> <path class="st0" d="M88.3,16l0,6.9c0,0.8-0.2,1.5-0.5,2.1c-0.3,0.6-0.8,1.1-1.5,1.4c-0.6,0.3-1.4,0.5-2.3,0.5 c-1.3,0-2.4-0.3-3.1-1c-0.7-0.7-1.1-1.7-1.1-2.9l0-6.9l1.8,0l0,6.8c0,0.9,0.2,1.5,0.6,2c0.4,0.4,1,0.6,1.9,0.6 c1.7,0,2.5-0.9,2.5-2.6l0-6.8L88.3,16z"/> <path class="st0" d="M96.4,24.3c0,0.8-0.3,1.4-0.9,1.8c-0.6,0.4-1.4,0.6-2.5,0.6c-1.1,0-1.9-0.2-2.6-0.5l0-1.5 c1,0.4,1.8,0.7,2.7,0.7c1.1,0,1.6-0.3,1.6-1c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.3-0.3-0.6-0.4c-0.3-0.1-0.6-0.3-1.1-0.5 c-0.9-0.4-1.6-0.7-1.9-1.1c-0.3-0.4-0.5-0.8-0.5-1.4c0-0.7,0.3-1.2,0.8-1.6c0.6-0.4,1.3-0.6,2.3-0.6c1,0,1.9,0.2,2.7,0.6l-0.6,1.3 c-0.9-0.4-1.6-0.5-2.2-0.5c-0.9,0-1.4,0.3-1.4,0.8c0,0.3,0.1,0.5,0.4,0.6c0.2,0.2,0.8,0.4,1.5,0.7c0.7,0.3,1.2,0.5,1.5,0.7 c0.3,0.2,0.5,0.5,0.7,0.7S96.4,24,96.4,24.3z"/> <path class="st0" d="M101.8,26.8c-1.3,0-2.2-0.4-3-1.1c-0.7-0.7-1.1-1.7-1.1-3c0-1.3,0.3-2.4,1-3.1s1.6-1.1,2.7-1.1 c1.1,0,1.9,0.3,2.5,1c0.6,0.6,0.9,1.5,0.9,2.7l0,0.9l-5.4,0c0,0.8,0.2,1.4,0.6,1.8c0.4,0.4,1,0.6,1.7,0.6c0.5,0,0.9,0,1.3-0.1 c0.4-0.1,0.9-0.2,1.3-0.5l0,1.4c-0.4,0.2-0.8,0.3-1.3,0.4C102.8,26.7,102.3,26.8,101.8,26.8z M101.4,19.7c-0.5,0-1,0.2-1.3,0.5 c-0.3,0.3-0.5,0.9-0.6,1.5l3.7,0c0-0.7-0.2-1.2-0.5-1.5C102.4,19.9,102,19.7,101.4,19.7z"/> </g> <g class="st1"> <path class="st3" d="M149.8,254.5c0,1.1-0.4,2-1.1,2.6c-0.7,0.6-1.8,0.9-3.1,0.9l-1.1,0l0,4l-1.8,0l0-10.7l3.1,0 c1.3,0,2.3,0.3,3,0.8C149.5,252.6,149.8,253.4,149.8,254.5z M144.5,256.5l0.9,0c0.9,0,1.6-0.2,2-0.5c0.4-0.3,0.6-0.8,0.6-1.5 c0-0.6-0.2-1.1-0.6-1.4c-0.4-0.3-1-0.5-1.8-0.5l-1.2,0L144.5,256.5z"/> <path class="st3" d="M155.3,262.1c-1.3,0-2.2-0.4-3-1.1c-0.7-0.7-1.1-1.7-1.1-3c0-1.3,0.3-2.4,1-3.1c0.7-0.8,1.6-1.1,2.7-1.1 c1.1,0,1.9,0.3,2.5,1c0.6,0.7,0.9,1.5,0.9,2.7l0,0.9l-5.4,0c0,0.8,0.2,1.4,0.6,1.8c0.4,0.4,1,0.6,1.7,0.6c0.5,0,0.9,0,1.3-0.1 c0.4-0.1,0.9-0.2,1.3-0.5l0,1.4c-0.4,0.2-0.8,0.3-1.3,0.4C156.4,262.1,155.9,262.1,155.3,262.1z M155,255c-0.5,0-1,0.2-1.3,0.5 c-0.3,0.3-0.5,0.9-0.6,1.5l3.7,0c0-0.7-0.2-1.2-0.5-1.5S155.5,255,155,255z"/> <path class="st3" d="M164.5,253.7c0.3,0,0.6,0,0.9,0.1l-0.2,1.6c-0.2-0.1-0.5-0.1-0.8-0.1c-0.7,0-1.2,0.2-1.7,0.7 c-0.4,0.4-0.6,1-0.6,1.8l0,4.2l-1.7,0l0-8.1l1.3,0l0.2,1.4h0.1c0.3-0.5,0.6-0.9,1-1.2C163.6,253.8,164,253.7,164.5,253.7z"/> <path class="st3" d="M170.9,255.1l-2,0l0,6.8l-1.7,0l0-6.8l-1.3,0l0-0.8l1.3-0.5l0-0.5c0-1,0.2-1.7,0.7-2.1 c0.4-0.5,1.1-0.7,2.1-0.7c0.6,0,1.2,0.1,1.8,0.3l-0.5,1.3c-0.4-0.1-0.8-0.2-1.2-0.2c-0.4,0-0.7,0.1-0.9,0.4 c-0.2,0.2-0.3,0.6-0.3,1.1l0,0.5l2,0L170.9,255.1z"/> <path class="st3" d="M179.5,257.8c0,1.3-0.3,2.4-1,3.1c-0.7,0.7-1.6,1.1-2.8,1.1c-0.8,0-1.4-0.2-2-0.5c-0.6-0.3-1-0.8-1.3-1.5 s-0.5-1.4-0.5-2.2c0-1.3,0.3-2.3,1-3.1c0.7-0.7,1.6-1.1,2.8-1.1c1.2,0,2.1,0.4,2.8,1.1C179.2,255.6,179.5,256.6,179.5,257.8z M173.6,257.9c0,1.9,0.7,2.8,2.1,2.8c1.4,0,2-0.9,2-2.8c0-1.8-0.7-2.8-2.1-2.8c-0.7,0-1.2,0.2-1.6,0.7 C173.8,256.3,173.6,257,173.6,257.9z"/> <path class="st3" d="M185.6,253.7c0.3,0,0.6,0,0.9,0.1l-0.2,1.6c-0.2-0.1-0.5-0.1-0.8-0.1c-0.7,0-1.2,0.2-1.7,0.7 c-0.4,0.5-0.6,1-0.6,1.8l0,4.2l-1.7,0l0-8.1l1.3,0l0.2,1.4h0.1c0.3-0.5,0.6-0.9,1-1.2C184.6,253.8,185.1,253.7,185.6,253.7z"/> <path class="st3" d="M194.8,261.9l-1.7,0l0-5c0-0.6-0.1-1.1-0.4-1.4c-0.2-0.3-0.6-0.5-1.1-0.5c-0.7,0-1.2,0.2-1.5,0.7 c-0.3,0.4-0.5,1.2-0.5,2.2l0,4l-1.7,0l0-8.1l1.3,0l0.2,1.1h0.1c0.2-0.4,0.5-0.7,1-0.9s0.9-0.3,1.4-0.3c1.2,0,2.1,0.4,2.5,1.3h0.1 c0.2-0.4,0.6-0.7,1-0.9c0.4-0.2,0.9-0.3,1.5-0.3c1,0,1.7,0.2,2.1,0.7c0.4,0.5,0.7,1.2,0.7,2.2l0,5.3l-1.7,0l0-5 c0-0.6-0.1-1.1-0.4-1.4s-0.6-0.5-1.1-0.5c-0.7,0-1.2,0.2-1.5,0.6c-0.3,0.4-0.5,1.1-0.5,1.9L194.8,261.9z"/> <path class="st3" d="M207.4,261.9l-0.3-1.1H207c-0.4,0.5-0.8,0.8-1.2,1c-0.4,0.2-0.9,0.3-1.5,0.3c-0.8,0-1.4-0.2-1.9-0.6 c-0.4-0.4-0.7-1-0.7-1.8c0-0.8,0.3-1.5,0.9-1.9c0.6-0.4,1.6-0.7,2.8-0.7l1.4,0l0-0.4c0-0.5-0.1-0.9-0.4-1.2s-0.6-0.4-1.1-0.4 c-0.4,0-0.8,0.1-1.2,0.2s-0.7,0.3-1.1,0.4l-0.6-1.2c0.4-0.2,0.9-0.4,1.4-0.5s1-0.2,1.5-0.2c1,0,1.8,0.2,2.3,0.7 c0.5,0.4,0.8,1.2,0.8,2.1l0,5.5L207.4,261.9z M204.8,260.7c0.6,0,1.1-0.2,1.5-0.5c0.4-0.4,0.6-0.8,0.6-1.5l0-0.7l-1,0 c-0.8,0-1.4,0.2-1.8,0.4c-0.4,0.2-0.6,0.6-0.6,1.1c0,0.4,0.1,0.6,0.3,0.8S204.4,260.7,204.8,260.7z"/> <path class="st3" d="M218.1,261.8l-1.7,0l0-5c0-0.6-0.1-1.1-0.4-1.4c-0.3-0.3-0.7-0.5-1.2-0.5c-0.7,0-1.3,0.2-1.6,0.6 c-0.3,0.4-0.5,1.2-0.5,2.2l0,4l-1.7,0l0-8.1l1.3,0l0.2,1.1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.4-0.2,0.9-0.3,1.5-0.3c1.9,0,2.9,1,2.9,3 L218.1,261.8z"/> <path class="st3" d="M223.8,262c-1.2,0-2.2-0.4-2.8-1.1c-0.6-0.7-1-1.7-1-3.1c0-1.4,0.3-2.4,1-3.1c0.7-0.7,1.6-1.1,2.9-1.1 c0.9,0,1.6,0.2,2.3,0.5l-0.5,1.4c-0.7-0.3-1.3-0.4-1.8-0.4c-1.4,0-2.1,0.9-2.1,2.8c0,0.9,0.2,1.6,0.5,2c0.3,0.5,0.9,0.7,1.5,0.7 c0.8,0,1.5-0.2,2.2-0.6l0,1.5c-0.3,0.2-0.6,0.3-1,0.4C224.7,261.9,224.3,262,223.8,262z"/> <path class="st3" d="M231.5,262c-1.3,0-2.2-0.4-3-1.1c-0.7-0.7-1.1-1.7-1.1-3c0-1.3,0.3-2.4,1-3.1c0.7-0.8,1.6-1.1,2.7-1.1 c1.1,0,1.9,0.3,2.5,1c0.6,0.7,0.9,1.5,0.9,2.7l0,0.9l-5.4,0c0,0.8,0.2,1.4,0.6,1.8c0.4,0.4,1,0.6,1.7,0.6c0.5,0,0.9,0,1.3-0.1 c0.4-0.1,0.9-0.2,1.3-0.5l0,1.4c-0.4,0.2-0.8,0.3-1.3,0.4C232.5,261.9,232,262,231.5,262z M231.2,254.9c-0.5,0-1,0.2-1.3,0.5 c-0.3,0.3-0.5,0.9-0.6,1.5l3.7,0c0-0.7-0.2-1.2-0.5-1.5S231.7,254.9,231.2,254.9z"/> </g> </svg>
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/rapids-logo-whitetxt.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 244 54.4" style="enable-background:new 0 0 244 54.4;" xml:space="preserve"> <style type="text/css"> .st0{fill:#FFFFFF;} </style> <g> <path class="st0" d="M0.5,50.4C0.2,50.1,0,49.7,0,49.3V3.9C0,3.5,0.1,3,0.5,2.7c0.3-0.3,0.8-0.5,1.2-0.5h18c4.8-0.3,9.5,1.1,13.4,4 c3.3,2.8,5.1,7,4.8,11.3c0.1,3-0.7,6-2.4,8.5c-1.7,2.3-4.1,4.1-6.8,5l10.1,17.7c0.1,0.2,0.2,0.5,0.2,0.8c0,0.4-0.2,0.8-0.5,1.1 c-0.3,0.3-0.6,0.4-1,0.4h-6.4c-0.6,0-1.2-0.1-1.7-0.5c-0.4-0.4-0.8-0.8-1.1-1.3l-8.9-16.5H9.8v16.7c0,0.4-0.2,0.9-0.5,1.2 c-0.3,0.3-0.8,0.5-1.3,0.5H1.7C1.2,50.9,0.8,50.8,0.5,50.4z M19.5,24.6c2.2,0.2,4.5-0.5,6.3-1.9c1.5-1.4,2.2-3.4,2.1-5.4 c0.1-2-0.6-4-2.1-5.5c-1.8-1.4-4-2.1-6.3-1.9H9.8v14.6H19.5z M44.4,50.5c-0.3-0.3-0.4-0.7-0.4-1.1l0.1-0.6L60.9,3.9 c0.3-1.1,1.4-1.8,2.5-1.7H71c1.1,0,2.2,0.7,2.5,1.7l16.7,44.9l0.1,0.6c0,0.4-0.2,0.8-0.5,1.1c-0.3,0.3-0.6,0.4-1,0.4h-6.2 c-0.9,0.1-1.7-0.5-2-1.3l-3.2-8.4H56.9l-3.2,8.4c-0.3,0.8-1.1,1.4-2,1.3h-6.2C45.1,50.9,44.7,50.8,44.4,50.5L44.4,50.5z M59.3,33.1 h15.7l-7.9-21.4L59.3,33.1z M95.7,50.4c-0.3-0.3-0.5-0.7-0.5-1.2V3.9c0-0.5,0.1-0.9,0.5-1.3c0.3-0.3,0.8-0.5,1.2-0.5h18.7 c4.7-0.3,9.4,1.1,13.2,4c3.3,2.9,5.1,7.2,4.8,11.6c0.3,4.3-1.5,8.6-4.8,11.4c-3.8,2.8-8.5,4.1-13.2,3.9h-10.2v16.3 c0,0.5-0.2,0.9-0.5,1.2c-0.3,0.3-0.8,0.5-1.3,0.4h-6.7C96.5,50.9,96,50.8,95.7,50.4L95.7,50.4z M115.2,25.2 c2.2,0.2,4.4-0.5,6.2-1.9c1.5-1.5,2.3-3.5,2.1-5.6c0.1-2.1-0.6-4.1-2.1-5.7c-1.7-1.5-4-2.2-6.2-2h-10v15.2H115.2z M213.4,49.7 c-2.6-1-5-2.7-6.8-4.9c-1.5-1.9-2.3-4.3-2.4-6.7c0-0.4,0.2-0.7,0.4-1c0.3-0.3,0.6-0.5,1-0.4h6.3c0.4,0,0.9,0.1,1.3,0.3 c0.4,0.3,0.7,0.6,0.9,1c0.5,1.7,1.7,3.1,3.2,4c2.1,1.2,4.4,1.7,6.8,1.6c2.6,0.2,5.1-0.4,7.3-1.6c1.6-0.9,2.5-2.6,2.5-4.5 c0-1.2-0.4-2.3-1.3-3.2c-1.1-1-2.4-1.7-3.8-2.2c-1.7-0.6-4.2-1.4-7.6-2.3c-4.3-0.8-8.5-2.6-12-5.1c-2.6-2.3-4-5.7-3.8-9.2 c0-2.6,0.8-5.1,2.2-7.2c1.6-2.2,3.8-3.9,6.4-5c3.1-1.3,6.3-1.9,9.6-1.8c3.4-0.1,6.9,0.6,10,2c2.5,1.1,4.7,2.9,6.4,5.1 c1.4,1.7,2.2,3.8,2.3,6c0,0.4-0.2,0.7-0.4,1c-0.3,0.3-0.6,0.4-1,0.4h-6.6c-0.9,0.1-1.7-0.4-2.1-1.3c-0.3-1.6-1.3-2.9-2.7-3.7 c-3.7-2-8.2-2-11.9,0c-1.4,0.9-2.3,2.5-2.2,4.2c0,1.1,0.4,2.3,1.1,3.1c1,1,2.2,1.7,3.5,2.2c2.3,0.8,4.6,1.6,6.9,2.1 c3.4,0.7,6.7,1.7,9.9,3.1c2.2,0.9,4,2.5,5.4,4.4c1.2,2,1.8,4.4,1.7,6.7c0.1,2.8-0.8,5.6-2.5,7.8c-1.8,2.3-4.2,4.1-7,5.1 c-3.3,1.2-6.9,1.8-10.4,1.7C220.5,51.7,216.8,51.1,213.4,49.7L213.4,49.7z M141.2,49.3c0,0.1,0,0.1,0,5.2l10-10V10l-10-10 c0,3.7,0,3.8,0,3.8V49.3z M198.6,21.1c-0.3-12.6-7.3-18.9-21-18.9h-17c-0.5,0-0.9,0.2-1.2,0.5C159.1,3,159,3.5,159,3.9v13.6 l9.8,9.7v-17h8.5c5.4-0.9,10.4,2.7,11.4,8c0.2,1,0.2,2,0,3.1c0.1,2.7,0.1,4.4,0.1,5.2c0,0.7,0,2.4-0.1,5.2c0.2,3.1-0.8,6.2-2.7,8.6 c-2.3,1.9-5.3,2.9-8.4,2.6h-8.8V27.2l-9.8,9.7v12.4c0,0.4,0.2,0.9,0.5,1.2c0.3,0.3,0.7,0.5,1.2,0.5H178c6.9,0,12-1.5,15.4-4.6 c3.3-3.1,5.1-7.9,5.3-14.4c0.1-2.7,0.1-4.5,0.1-5.4C198.7,25.6,198.7,23.8,198.6,21.1L198.6,21.1z"/> </g> </svg>
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/top-purple-strip.svg
<svg xmlns="http://www.w3.org/2000/svg" width="2560" height="169" viewBox="0 0 2560 169"> <metadata><?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c140 79.160451, 2017/05/06-01:08:21 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about=""/> </rdf:RDF> </x:xmpmeta> <?xpacket end="w"?></metadata> <defs> <style> .cls-1 { fill: #9943ff; fill-rule: evenodd; } </style> </defs> <path id="Lighter_Purple_BKGD_copy" data-name="Lighter Purple BKGD copy" class="cls-1" d="M2708,1705H148V1536l2560,128v41Z" transform="translate(-148 -1536)"/> </svg>
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/RAPIDS-logo-purple.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1920 704" style="enable-background:new 0 0 1920 704;" xml:space="preserve"> <style type="text/css"> .st0{fill:#7300FF;} </style> <g> <path class="st0" d="M389.7,337.5c15.5,0,27.1-3.4,34.9-10.3c7.8-6.8,11.6-16.9,11.6-30c0-13.2-3.9-23.3-11.6-30.4 c-7.8-7.1-19.4-10.7-34.9-10.7h-53.9v81.4H389.7z M284,481.2c-1.8-1.8-2.7-4-2.7-6.6V222.4c0-2.8,0.8-5.2,2.5-7 c1.7-1.8,3.9-2.7,6.8-2.7h100.4c31.8,0,56.6,7.4,74.6,22.1c18,14.7,26.9,35.7,26.9,62.8c0,18.9-4.5,34.7-13.6,47.5 c-9,12.8-21.7,22-38,27.7l56.2,98.8c0.8,1.5,1.2,3,1.2,4.3c0,2.3-0.8,4.3-2.5,5.8c-1.7,1.5-3.6,2.3-5.6,2.3h-35.7 c-4.1,0-7.4-1-9.7-2.9c-2.3-1.9-4.4-4.5-6.2-7.6L389,381.7h-53.1v93c0,2.6-0.9,4.8-2.7,6.6c-1.8,1.8-4.1,2.7-7,2.7h-35.7 C288,484,285.8,483.1,284,481.2"/> <path class="st0" d="M611.5,384.8h87.6l-43.8-119.4L611.5,384.8z M528.6,481.6c-1.6-1.6-2.3-3.5-2.3-5.8l0.8-3.5l93-249.9 c2.6-6.5,7.2-9.7,13.9-9.7h42.6c6.7,0,11.4,3.2,14,9.7l93,249.9l0.8,3.5c0,2.3-0.8,4.3-2.5,5.8c-1.7,1.5-3.6,2.3-5.6,2.3h-34.5 c-5.4,0-9.2-2.5-11.2-7.4l-17.8-46.9H597.9l-17.8,46.9c-2.1,4.9-5.8,7.4-11.2,7.4h-34.5C532,484,530.1,483.2,528.6,481.6"/> <path class="st0" d="M922.6,340.6c15,0,26.4-3.5,34.3-10.7c7.9-7.1,11.8-17.5,11.8-31.2c0-13.4-3.8-23.9-11.4-31.4 c-7.6-7.5-19.2-11.2-34.7-11.2h-55.8v84.5H922.6z M814.1,481.2c-1.8-1.8-2.7-4-2.7-6.6V222.4c0-2.8,0.8-5.2,2.5-7 c1.7-1.8,3.9-2.7,6.8-2.7h103.9c31.3,0,55.8,7.4,73.6,22.1c17.8,14.7,26.7,36.2,26.7,64.3c0,27.9-8.9,49-26.7,63.4 c-17.8,14.3-42.4,21.5-73.6,21.5h-57v90.7c0,2.8-0.9,5.1-2.7,6.8c-1.8,1.7-4.1,2.5-7,2.5h-37.2C818.1,484,815.9,483.1,814.1,481.2" /> <path class="st0" d="M1469.1,477.4c-16.5-7-29.1-16.1-37.6-27.5c-8.5-11.4-13-23.8-13.6-37.2c0-2.1,0.8-3.9,2.3-5.6 c1.5-1.7,3.5-2.5,5.8-2.5h35.3c2.8,0,5.2,0.7,7,1.9c1.8,1.3,3.5,3.1,5,5.4c2.6,8.8,8.5,16.1,17.6,22.1c9.2,5.9,21.8,8.9,37.8,8.9 c18.1,0,31.7-3,40.9-9.1c9.2-6.1,13.8-14.4,13.8-25c0-7-2.3-12.8-7-17.4c-4.7-4.6-11.7-8.7-21.1-12.2c-9.4-3.5-23.4-7.7-42-12.6 c-30.5-7.2-52.8-16.8-67-28.7c-14.2-11.9-21.3-28.9-21.3-51.2c0-15,4.1-28.4,12.4-40.1c8.3-11.8,20.1-21,35.5-27.7 c15.4-6.7,33.3-10.1,53.7-10.1c21.4,0,40,3.7,55.6,11.2c15.6,7.5,27.5,16.9,35.7,28.1c8.1,11.2,12.5,22.4,13,33.5 c0,2.1-0.8,3.9-2.3,5.6c-1.6,1.7-3.5,2.5-5.8,2.5h-36.8c-5.7,0-9.6-2.3-11.6-7c-1.3-8.3-6.3-15.2-15.1-20.7 c-8.8-5.5-19.6-8.3-32.6-8.3c-14.2,0-25.4,2.7-33.5,8.1c-8.1,5.4-12.2,13.3-12.2,23.6c0,7,2.1,12.8,6.2,17.4 c4.1,4.6,10.6,8.7,19.4,12.2c8.8,3.5,21.6,7.4,38.4,11.8c23,5.2,41.3,11,54.8,17.4c13.6,6.5,23.6,14.6,30,24.4 c6.5,9.8,9.7,22.3,9.7,37.6c0,16.8-4.6,31.3-13.8,43.6c-9.2,12.3-22.1,21.6-38.7,28.1c-16.7,6.5-36,9.7-57.9,9.7 C1505.5,487.8,1485.7,484.3,1469.1,477.4"/> <path class="st0" d="M1067.1,474.7c0,0.4,0.1,0.8,0.1,28.8l55.7-55.7V256.3l-55.7-55.7c0,20.7-0.1,21-0.1,21.4V474.7z"/> <path class="st0" d="M1386.6,318.1c-1.6-70.3-40.4-105.4-116.6-105.4h-94.6c-2.8,0-5.1,0.9-6.8,2.7c-1.7,1.8-2.5,4.1-2.5,7v75.8 l54.6,53.9v-94.4h47.3c21.7,0,37.6,5,47.7,14.9c10.1,9.9,15.4,25.5,15.9,46.7c0.5,15,0.8,24.5,0.8,28.7c0,3.9-0.3,13.6-0.8,29.1 c-0.5,22.2-5.6,38.1-15.1,47.7c-9.6,9.6-25.1,14.3-46.5,14.3h-49.2v-87l-54.6,53.9v68.8c0,2.6,0.9,4.8,2.7,6.6 c1.8,1.8,4,2.7,6.6,2.7h96.5c38.5,0,67-8.6,85.4-25.8c18.5-17.2,28.2-43.8,29.3-80c0.5-15,0.8-24.9,0.8-29.8 C1387.4,343.2,1387.1,333.1,1386.6,318.1"/> </g> </svg>
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/header-bg.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1200 370" style="enable-background:new 0 0 1200 370;" xml:space="preserve"> <style type="text/css"> .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#7400FF;} .st1{opacity:0.14;fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;enable-background:new ;} </style> <g id="Rectangle_37_copy_7"> <g> <polygon class="st0" points="0,0 1200,0 1200,370 0,370 "/> </g> </g> <path class="st1" d="M1200,0.9H875.4L734.1,220l175.4,149.1l290.5-1V0.9z"/> <path class="st1" d="M1200,0.9H927L742.3,124.6l167.2,244.5l290.5-1V0.9z"/> </svg>
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/dask.svg
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1055.69 386.2"> <g> <path d="M80.51,127.89l83.85-48.38a2.69,2.69,0,0,0,1.34-2.32v-29A13.89,13.89,0,0,0,160.52,37a13.21,13.21,0,0,0-14.8-1L28.43,103.73a13.32,13.32,0,0,0-6.67,11.54l0,152.84a13.91,13.91,0,0,0,5.17,11.14,13.23,13.23,0,0,0,14.82,1l24.84-14.33a2.68,2.68,0,0,0,1.34-2.32l0-113.9A25.16,25.16,0,0,1,80.51,127.89Z" fill="#ffc11e"/> <path d="M281.51,106a13.21,13.21,0,0,0-13.33,0L150.89,173.63a13.36,13.36,0,0,0-6.67,11.54l-.05,153.42a13.34,13.34,0,0,0,20,11.55l117.28-67.68a13.34,13.34,0,0,0,6.67-11.54l.05-153.42A13.19,13.19,0,0,0,281.51,106Z" fill="#ef1161"/> <path d="M145,163.36l77.4-44.65a2.7,2.7,0,0,0,1.33-2.32V82.6a13.86,13.86,0,0,0-5.19-11.15,13.25,13.25,0,0,0-14.8-1L171.62,89,86.43,138.15a13.33,13.33,0,0,0-6.66,11.54l0,115.45,0,37.39a13.89,13.89,0,0,0,5.18,11.14,13.25,13.25,0,0,0,14.81,1L131,296.61a2.68,2.68,0,0,0,1.34-2.32l0-109.12A25.17,25.17,0,0,1,145,163.36Z" fill="#fc6e6b"/> <g> <path d="M375.29,224.46V178c0-39.85,23.53-67.14,59-67.14,25.41,0,42.36,13.17,49.25,25.41V52.2a3.79,3.79,0,0,1,4.09-4.08h30.75a4,4,0,0,1,4.07,4.08V283.13c0,2.51-1.57,4.08-4.39,4.08H488.87a3.79,3.79,0,0,1-4.08-4.08V265.56c-7.21,12.24-24.47,25.1-48.94,25.1C398.51,290.66,375.29,264.31,375.29,224.46Zm108.24-5.65V183.67c0-24.47-16-38.59-35.76-38.59-22,0-33.57,14.43-33.57,38.59v35.14c0,24.47,11.61,37.65,33.57,37.65C467.54,256.46,483.53,243.28,483.53,218.81Z" fill="#04255c"/> <path d="M692.49,167.67V282.82c0,2.82-1.57,4.39-4.39,4.39H660.48c-2.82,0-4.39-1.57-4.39-4.39v-20.4c-10.66,17.26-28.24,28.24-49.57,28.24-32.63,0-53.34-21.33-53.34-52.4,0-31.37,20.71-49.57,65.89-52.71a268.17,268.17,0,0,1,35.46-.31v-16c0-19.46-10.67-27.3-28.56-27.3s-24.47,6.59-28.86,18.82c-1.26,3.45-2.51,4.08-6,3.14L563.85,157c-2.83-.94-3.77-2.51-2.83-5,5-24.48,27.3-41.42,66.52-41.42C668,110.56,692.49,129.7,692.49,167.67Zm-38,63.69V210a275.38,275.38,0,0,0-32.32.62c-20.4,2.2-32,9.1-32,25.42,0,14.12,9.73,23.21,26.36,23.21C634.13,259.28,647.62,248.93,654.53,231.36Z" fill="#04255c"/> <path d="M856.27,151.35c.94,2.82,0,5-3.14,6l-22.91,8.16c-3.45.94-5,0-6-3.14-5-14.12-16.31-21-33.25-21-17.58,0-27.93,7.22-27.93,18.51,0,10.67,7.21,15.06,40.47,24.47,39.23,11,54.91,26.36,54.91,53.66,0,32-26.35,53-66.83,53-36.4,0-62.75-15.06-70.91-40.79-1.26-3.45,0-5.34,3.77-6.91l20.39-10c3.76-1.25,5.65-.62,6.9,3.77,4.71,14.43,19.46,23.22,38.59,23.22,19.46,0,30.76-7.53,30.76-19.77,0-11.3-9.42-17.26-42-26.36-37.65-10.67-53.34-25.41-53.34-51.77,0-31.06,25.42-51.77,64-51.77C823.64,110.56,848.11,125.62,856.27,151.35Z" fill="#04255c"/> <path d="M1030.09,287.21H997.14c-3.14,0-4.39-1.25-5.65-3.76l-39.22-72.17-23.54,27.61v43.93c0,2.82-1.56,4.39-4.39,4.39H894.22c-2.82,0-4.39-1.57-4.39-4.39V52.2a4.11,4.11,0,0,1,4.39-4.39h30.12a4.11,4.11,0,0,1,4.39,4.39v139l59-72.8c2.83-3.13,5-4.39,8.79-4.39h31.69a3.53,3.53,0,0,1,2.83,6l-52.72,61.19,54.91,100.09C1035.1,284.39,1033.22,287.21,1030.09,287.21Z" fill="#04255c"/> </g> </g> </svg>
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/rapids-end-to-end-performance-chart-oss-page-r4.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 850 450" style="enable-background:new 0 0 850 450;" xml:space="preserve"> <style type="text/css"> .st0{fill:#666666;} .st1{fill:#D216D2;} .st2{fill:#36C9DD;} .st3{fill:#FFB500;} .st4{fill:none;stroke:#666666;stroke-linecap:square;} .st5{fill:#FFFFFF;} </style> <title>Asset 12</title> <g id="Layer_1-2"> <path class="st0" d="M33.3,185.8c1.2-0.1,2.3,0.3,3.2,1c0.8,0.7,1.2,1.7,1.2,2.8c0.1,1.2-0.4,2.3-1.3,3.1c-1,0.8-2.2,1.2-3.5,1.1 c-1.1,0.1-2.3-0.2-3.3-0.7v-1.4c0.5,0.3,1,0.5,1.5,0.6c0.6,0.1,1.2,0.2,1.8,0.2c0.9,0.1,1.7-0.2,2.4-0.7c0.6-0.5,0.9-1.3,0.9-2.1 c0-1.8-1.1-2.7-3.3-2.7c-0.7,0-1.5,0.1-2.2,0.2l-0.8-0.5l0.5-6h6.4v1.4h-5.1l-0.3,3.9C32,185.9,32.7,185.8,33.3,185.8z"/> <path class="st0" d="M48.1,187.2c0.1,1.7-0.2,3.5-1,5c-1.2,1.8-3.7,2.2-5.4,1c-0.4-0.3-0.7-0.6-1-1c-0.8-1.5-1.2-3.3-1.1-5 c-0.1-1.7,0.2-3.5,1-5c1.3-1.7,3.7-2.1,5.4-0.9c0.4,0.3,0.7,0.6,0.9,1C47.8,183.8,48.2,185.5,48.1,187.2z M41.1,187.2 c-0.1,1.4,0.1,2.8,0.7,4.1c0.6,1.2,2,1.6,3.2,1c0.4-0.2,0.8-0.6,1-1c0.9-2.6,0.9-5.5,0-8.1c-0.6-1.2-2-1.6-3.2-1 c-0.4,0.2-0.8,0.6-1,1C41.3,184.5,41,185.8,41.1,187.2L41.1,187.2z"/> <path class="st0" d="M61,182c-1.3-0.1-2.5,0.5-3.3,1.4c-0.9,1.1-1.3,2.5-1.2,3.9c-0.1,1.4,0.3,2.8,1.2,3.9c0.9,1,2.1,1.5,3.4,1.4 c1,0,2.1-0.2,3.1-0.5v1.3c-1.1,0.4-2.2,0.5-3.3,0.5c-1.6,0.1-3.2-0.5-4.4-1.7c-1.1-1.4-1.7-3.1-1.6-4.9c0-1.2,0.2-2.4,0.8-3.5 c0.5-1,1.2-1.8,2.1-2.3c1-0.6,2.1-0.8,3.3-0.8s2.4,0.2,3.5,0.7l-0.6,1.3C63,182.2,62,182,61,182z"/> <path class="st0" d="M75,184.6c0.1,1.2-0.4,2.3-1.3,3c-1.1,0.8-2.5,1.1-3.8,1h-1.5v5.1h-1.5v-12.8h3.3 C73.4,180.8,75,182.1,75,184.6z M68.3,187.3h1.3c1,0.1,2-0.1,2.9-0.6c0.6-0.5,1-1.3,0.9-2.1c0.1-0.7-0.3-1.4-0.8-1.9 c-0.8-0.5-1.7-0.7-2.6-0.6h-1.7L68.3,187.3z"/> <path class="st0" d="M87.4,180.8v8.3c0.1,1.3-0.4,2.6-1.4,3.5s-2.3,1.3-3.7,1.2c-1.3,0.1-2.6-0.4-3.6-1.3c-0.9-0.9-1.3-2.2-1.3-3.5 v-8.3H79v8.4c-0.1,0.9,0.3,1.8,0.9,2.5c0.7,0.6,1.6,0.9,2.6,0.9c0.9,0.1,1.8-0.2,2.5-0.9c0.6-0.7,0.9-1.6,0.9-2.5v-8.4L87.4,180.8z "/> <path class="st0" d="M105.5,193.7h-1.7l-7-10.8h-0.1c0.1,1.3,0.1,2.4,0.1,3.5v7.3h-1.4v-12.9h1.7l7,10.7h0.1c0-0.2,0-0.7-0.1-1.5 s-0.1-1.5,0-1.8v-7.4h1.4V193.7z"/> <path class="st0" d="M117.1,188.8c0.1,1.3-0.3,2.6-1.2,3.7c-0.8,0.9-2,1.4-3.3,1.3c-0.8,0-1.6-0.2-2.3-0.6c-0.7-0.4-1.2-1-1.6-1.7 c-0.4-0.8-0.6-1.7-0.5-2.7c-0.1-1.3,0.3-2.6,1.2-3.7c0.8-0.9,2-1.4,3.3-1.3c1.2-0.1,2.4,0.4,3.2,1.3 C116.8,186.2,117.2,187.5,117.1,188.8z M109.8,188.8c-0.1,1,0.2,2,0.7,2.8c0.5,0.7,1.3,1,2.2,1c0.8,0,1.7-0.3,2.2-1 c0.6-0.8,0.8-1.8,0.8-2.8c0.1-1-0.2-2-0.8-2.8c-0.5-0.7-1.3-1-2.2-1c-0.8-0.1-1.6,0.3-2.2,0.9C109.9,186.8,109.7,187.8,109.8,188.8 z"/> <path class="st0" d="M126.2,192.4L126.2,192.4c-0.8,1-1.9,1.5-3.1,1.5c-1.1,0.1-2.2-0.4-2.9-1.3c-0.8-1.1-1.1-2.4-1.1-3.7 c-0.1-1.3,0.3-2.6,1.1-3.7c1.4-1.6,3.9-1.8,5.5-0.3c0.2,0.1,0.3,0.3,0.4,0.4h0.1l-0.1-0.7v-0.7V180h1.5v13.7h-1.2L126.2,192.4z M123.3,192.6c0.8,0.1,1.6-0.2,2.2-0.8c0.5-0.8,0.7-1.7,0.7-2.6v-0.3c0.1-1-0.1-2.1-0.7-2.9c-0.5-0.6-1.3-0.9-2.2-0.9 c-0.8,0-1.6,0.3-2,1c-0.5,0.9-0.7,1.8-0.7,2.8c-0.1,1,0.2,1.9,0.7,2.8C121.8,192.3,122.5,192.7,123.3,192.6z"/> <path class="st0" d="M134.8,193.8c-1.3,0.1-2.5-0.4-3.4-1.3c-0.9-1-1.3-2.3-1.2-3.6c-0.1-1.3,0.3-2.6,1.1-3.7 c0.8-0.9,1.9-1.4,3.1-1.4c1.1-0.1,2.1,0.4,2.9,1.2c0.7,0.9,1.1,2,1.1,3.1v0.9h-6.6c0,0.9,0.3,1.9,0.9,2.6c0.6,0.6,1.4,0.9,2.3,0.9 c1.1,0,2.1-0.2,3.1-0.6v1.3c-0.5,0.2-1,0.4-1.5,0.5C135.9,193.8,135.3,193.8,134.8,193.8z M134.4,185.1c-0.7,0-1.4,0.2-1.9,0.8 s-0.8,1.3-0.8,2.1h5c0.1-0.8-0.2-1.5-0.6-2.1C135.7,185.3,135,185.1,134.4,185.1L134.4,185.1z"/> <path class="st0" d="M147,191.1c0,0.8-0.3,1.6-1,2.1c-0.8,0.5-1.8,0.8-2.8,0.7c-1,0.1-2.1-0.2-3-0.6v-1.4c0.5,0.2,1,0.4,1.5,0.6 c0.5,0.1,1,0.2,1.5,0.2c0.6,0,1.2-0.1,1.8-0.4c0.4-0.2,0.6-0.7,0.6-1.1s-0.2-0.8-0.5-1c-0.6-0.4-1.2-0.7-1.9-0.9s-1.3-0.5-1.9-0.9 c-0.3-0.2-0.6-0.5-0.8-0.9c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.8,0.4-1.5,1-1.9c0.8-0.5,1.7-0.7,2.6-0.7c1,0,2.1,0.2,3,0.6l-0.5,1.2 c-0.8-0.4-1.7-0.6-2.6-0.6c-0.5,0-1.1,0.1-1.6,0.3c-0.3,0.2-0.5,0.5-0.5,0.9c0,0.2,0.1,0.5,0.2,0.7c0.2,0.2,0.4,0.4,0.6,0.5 c0.5,0.3,1.1,0.5,1.7,0.7c0.9,0.3,1.6,0.7,2.3,1.3C146.8,189.9,147,190.4,147,191.1z"/> <path class="st0" d="M24.4,143.8H23v-9.2c0-0.8,0-1.5,0.1-2.2l-0.4,0.4c-0.1,0.1-0.9,0.7-2.1,1.7l-0.8-1l3.4-2.6h1.2L24.4,143.8z" /> <path class="st0" d="M37.8,137.3c0.1,1.7-0.2,3.5-1,5c-0.7,1.1-1.9,1.7-3.2,1.6c-1.3,0.1-2.5-0.6-3.2-1.7c-0.8-1.5-1.2-3.2-1.1-4.9 c-0.1-1.7,0.2-3.5,1-5c0.7-1.1,1.9-1.7,3.2-1.6c1.3-0.1,2.5,0.6,3.2,1.7C37.6,133.9,37.9,135.6,37.8,137.3z M30.8,137.3 c-0.1,1.4,0.1,2.8,0.7,4.1c0.6,1.2,2,1.6,3.2,1c0.4-0.2,0.8-0.6,1-1c0.9-2.6,0.9-5.5,0-8.1c-0.6-1.2-2-1.6-3.2-1 c-0.4,0.2-0.8,0.6-1,1C31,134.6,30.7,135.9,30.8,137.3L30.8,137.3z"/> <path class="st0" d="M48.1,137.3c0.1,1.7-0.2,3.5-1,5c-1.2,1.8-3.7,2.2-5.4,1c-0.4-0.3-0.7-0.6-1-1c-0.8-1.5-1.2-3.2-1.1-4.9 c-0.1-1.7,0.2-3.5,1-5c1.3-1.7,3.7-2.1,5.4-0.9c0.4,0.3,0.7,0.6,0.9,1C47.8,133.9,48.2,135.6,48.1,137.3z M41.1,137.3 c-0.1,1.4,0.1,2.8,0.7,4.1c0.6,1.2,2,1.6,3.2,1c0.4-0.2,0.8-0.6,1-1c0.9-2.6,0.9-5.5,0-8.1c-0.6-1.2-2-1.6-3.2-1 c-0.4,0.2-0.8,0.6-1,1C41.3,134.6,41,135.9,41.1,137.3L41.1,137.3z"/> <path class="st0" d="M61,132.1c-1.3-0.1-2.5,0.5-3.3,1.4c-0.9,1.1-1.3,2.5-1.2,3.9c-0.1,1.4,0.3,2.8,1.2,3.9c0.9,1,2.1,1.5,3.4,1.4 c1,0,2.1-0.2,3.1-0.5v1.3c-1.1,0.4-2.2,0.5-3.3,0.5c-1.7,0.1-3.3-0.5-4.4-1.7c-1.1-1.4-1.7-3.1-1.5-4.9c0-1.2,0.2-2.4,0.8-3.5 c0.5-1,1.2-1.8,2.1-2.3c1-0.6,2.1-0.8,3.3-0.8s2.4,0.2,3.5,0.7l-0.6,1.3C63,132.3,62,132.1,61,132.1z"/> <path class="st0" d="M75,134.6c0.1,1.2-0.4,2.3-1.3,3c-1.1,0.8-2.5,1.1-3.8,1.1h-1.5v5.1h-1.5V131h3.3 C73.4,130.9,75,132.2,75,134.6z M68.3,137.4h1.3c1,0.1,2-0.1,2.9-0.6c0.6-0.5,1-1.3,0.9-2.1c0.1-0.7-0.3-1.4-0.8-1.9 c-0.8-0.5-1.7-0.7-2.6-0.6h-1.7L68.3,137.4z"/> <path class="st0" d="M87.4,130.9v8.3c0.1,1.3-0.4,2.6-1.4,3.5s-2.3,1.3-3.7,1.2c-1.3,0.1-2.6-0.4-3.6-1.3c-0.9-0.9-1.3-2.2-1.2-3.5 v-8.3H79v8.4c-0.1,0.9,0.3,1.8,0.9,2.5c0.7,0.6,1.6,0.9,2.6,0.9c0.9,0.1,1.8-0.2,2.5-0.9c0.6-0.7,0.9-1.6,0.9-2.5v-8.4L87.4,130.9z "/> <path class="st0" d="M105.5,143.8h-1.7l-7-10.8h-0.1c0.1,1.3,0.1,2.4,0.1,3.5v7.3h-1.4V131h1.7l7,10.7h0.1c0-0.2,0-0.7-0.1-1.5 s-0.1-1.5,0-1.8V131h1.4V143.8z"/> <path class="st0" d="M117.1,138.9c0.1,1.3-0.3,2.6-1.2,3.7c-0.8,0.9-2,1.4-3.3,1.3c-0.8,0-1.6-0.2-2.3-0.6c-0.7-0.4-1.2-1-1.6-1.7 c-0.4-0.8-0.6-1.7-0.5-2.7c-0.1-1.3,0.3-2.6,1.2-3.7c0.8-0.9,2-1.4,3.3-1.3c1.2-0.1,2.4,0.4,3.2,1.3 C116.8,136.3,117.2,137.6,117.1,138.9z M109.8,138.9c-0.1,1,0.2,2,0.7,2.8c0.5,0.7,1.3,1,2.2,1c0.8,0,1.7-0.3,2.2-1 c0.6-0.8,0.8-1.8,0.8-2.8c0.1-1-0.2-2-0.8-2.8c-0.5-0.7-1.3-1-2.2-0.9c-0.8-0.1-1.6,0.3-2.2,0.9C110,137,109.7,137.9,109.8,138.9z" /> <path class="st0" d="M126.2,142.5L126.2,142.5c-0.8,1-1.9,1.5-3.1,1.5c-1.1,0.1-2.2-0.4-2.9-1.3c-0.8-1.1-1.1-2.4-1.1-3.7 c-0.1-1.3,0.3-2.6,1.1-3.7c1.4-1.6,3.9-1.8,5.5-0.3c0.2,0.1,0.3,0.3,0.4,0.4h0.1l-0.1-0.7V134v-3.9h1.5v13.7h-1.2L126.2,142.5z M123.3,142.7c0.8,0.1,1.6-0.2,2.2-0.8c0.5-0.8,0.7-1.7,0.7-2.6V139c0.1-1-0.1-2.1-0.7-2.9c-0.5-0.6-1.3-0.9-2.2-0.9 c-0.8,0-1.6,0.3-2,1c-0.5,0.9-0.7,1.8-0.7,2.8c-0.1,1,0.2,1.9,0.7,2.8C121.8,142.4,122.5,142.8,123.3,142.7L123.3,142.7z"/> <path class="st0" d="M134.8,143.9c-1.3,0.1-2.5-0.4-3.4-1.3c-0.9-1-1.3-2.3-1.2-3.6c-0.1-1.3,0.3-2.6,1.1-3.7 c0.8-0.9,1.9-1.4,3.1-1.4c1.1-0.1,2.1,0.4,2.9,1.2c0.7,0.9,1.1,2,1.1,3.1v0.9h-6.6c0,0.9,0.3,1.9,0.9,2.6c0.6,0.6,1.4,0.9,2.3,0.9 c1.1,0,2.1-0.2,3.1-0.6v1.3c-0.5,0.2-1,0.4-1.5,0.5C135.9,143.9,135.3,143.9,134.8,143.9z M134.4,135.2c-0.7,0-1.4,0.2-1.9,0.8 s-0.8,1.3-0.8,2.1h5c0.1-0.8-0.2-1.5-0.6-2.1C135.7,135.4,135,135.2,134.4,135.2L134.4,135.2z"/> <path class="st0" d="M147,141.1c0,0.8-0.3,1.6-1,2.1c-0.8,0.5-1.8,0.8-2.8,0.7c-1,0.1-2.1-0.2-3-0.6v-1.4c0.5,0.2,1,0.4,1.5,0.6 c0.5,0.1,1,0.2,1.5,0.2c0.6,0,1.2-0.1,1.8-0.4c0.6-0.4,0.8-1.1,0.4-1.7c-0.1-0.1-0.2-0.2-0.3-0.3c-0.6-0.4-1.2-0.7-1.9-0.9 s-1.3-0.5-1.9-0.9c-0.3-0.2-0.6-0.5-0.8-0.9c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.8,0.4-1.5,1-1.9c0.8-0.5,1.7-0.7,2.6-0.7 c1,0,2.1,0.2,3,0.6l-0.5,1.2c-0.8-0.4-1.7-0.6-2.6-0.6c-0.5,0-1.1,0.1-1.6,0.3c-0.3,0.2-0.5,0.5-0.5,0.9c0,0.2,0.1,0.5,0.2,0.7 c0.2,0.2,0.4,0.4,0.6,0.5c0.5,0.3,1.1,0.5,1.7,0.7c0.9,0.3,1.6,0.7,2.3,1.3C146.8,140,147,140.5,147,141.1z"/> <path class="st0" d="M107.2,87.3c0.1,1.8-0.5,3.5-1.7,4.9c-1.4,1.2-3.2,1.8-5,1.7H97V81h3.9c3.2-0.3,6,2,6.3,5.2 C107.2,86.5,107.2,86.9,107.2,87.3z M105.6,87.3c0.1-1.4-0.4-2.7-1.3-3.8c-1-0.9-2.4-1.4-3.8-1.3h-2.2v10.3h1.8 c1.5,0.1,2.9-0.4,4-1.3C105.2,90.1,105.7,88.8,105.6,87.3L105.6,87.3z"/> <path class="st0" d="M115.7,87.1h4.3v6.2c-0.7,0.2-1.4,0.4-2.1,0.5c-0.8,0.1-1.6,0.2-2.4,0.2c-1.7,0.1-3.3-0.5-4.6-1.7 c-1.1-1.4-1.7-3.1-1.6-4.9c0-1.2,0.2-2.4,0.8-3.5c0.5-1,1.3-1.8,2.3-2.3c1.1-0.6,2.3-0.8,3.5-0.8c1.3,0,2.6,0.2,3.8,0.8l-0.6,1.3 c-1.1-0.5-2.2-0.7-3.3-0.7c-1.4-0.1-2.7,0.4-3.7,1.4c-0.9,1.1-1.4,2.5-1.3,3.9c-0.1,1.4,0.4,2.8,1.3,3.9c1,0.9,2.4,1.4,3.7,1.3 c0.9,0,1.8-0.1,2.6-0.3v-4h-2.9L115.7,87.1z"/> <path class="st0" d="M131.7,93.8H130l-3.5-5.6l-3.5,5.6h-1.6l4.3-6.7l-4-6.1h1.7l3.2,5.1l3.2-5.1h1.6l-4,6.1L131.7,93.8z"/> <path class="st0" d="M132.5,89.7v-1.3h4.3v1.3H132.5z"/> <path class="st0" d="M146.9,93.8h-8.4v-1.3l3.4-3.4c0.7-0.7,1.4-1.4,2-2.2c0.3-0.4,0.5-0.8,0.7-1.3c0.2-0.4,0.3-0.9,0.2-1.4 c0-0.6-0.2-1.2-0.6-1.6c-0.5-0.4-1.1-0.6-1.7-0.6c-0.5,0-1,0.1-1.5,0.3c-0.6,0.3-1.1,0.6-1.6,1l-0.8-1c1.1-0.9,2.4-1.5,3.9-1.5 c1-0.1,2,0.3,2.8,0.9c0.7,0.6,1.1,1.6,1,2.5c0,0.9-0.2,1.7-0.7,2.4c-0.7,1.1-1.6,2.1-2.6,3l-2.8,2.8v0.1h6.6L146.9,93.8z"/> <path class="st0" d="M74.7,36.1c1.1-0.1,2.3,0.3,3.2,1c0.8,0.7,1.2,1.7,1.1,2.8c0.1,1.2-0.4,2.3-1.3,3.1c-1,0.8-2.2,1.2-3.5,1.1 c-1.1,0.1-2.2-0.2-3.2-0.7V42c0.5,0.3,1,0.5,1.5,0.6c0.6,0.1,1.2,0.2,1.8,0.2c0.9,0.1,1.7-0.2,2.4-0.7c0.6-0.5,0.9-1.3,0.9-2.1 c0-1.8-1.1-2.7-3.3-2.7c-0.7,0-1.5,0.1-2.2,0.2L71.3,37l0.5-6h6.4v1.3H73l-0.3,3.9C73.3,36.1,74,36.1,74.7,36.1z"/> <path class="st0" d="M90.4,43.9h-1.7l-3.4-5.7l-3.5,5.7h-1.6l4.3-6.7l-4-6.1h1.7l3.2,5.1l3.2-5.1h1.6l-4,6.1L90.4,43.9z"/> <path class="st0" d="M107.2,37.4c0.1,1.8-0.5,3.5-1.7,4.9c-1.4,1.2-3.2,1.8-5,1.7H97V31.1h3.9c3.2-0.3,6,2,6.3,5.2 C107.2,36.6,107.2,37,107.2,37.4z M105.6,37.4c0.1-1.4-0.4-2.7-1.3-3.8c-1-0.9-2.4-1.4-3.8-1.3h-2.2v10.3h1.8 c1.5,0.1,2.9-0.4,4-1.3C105.2,40.2,105.7,38.8,105.6,37.4L105.6,37.4z"/> <path class="st0" d="M115.7,37.2h4.3v6.2c-0.7,0.2-1.4,0.4-2.1,0.5c-0.8,0.1-1.6,0.2-2.4,0.2c-1.7,0.1-3.4-0.5-4.6-1.7 c-1.1-1.4-1.7-3.1-1.6-4.9c0-1.2,0.2-2.4,0.8-3.5c0.5-1,1.3-1.8,2.3-2.3c1.1-0.6,2.3-0.8,3.5-0.8c1.3,0,2.6,0.3,3.8,0.8l-0.6,1.3 c-1.1-0.5-2.2-0.7-3.3-0.7c-1.4-0.1-2.7,0.4-3.7,1.4c-0.9,1.1-1.4,2.5-1.3,3.9c-0.1,1.4,0.4,2.8,1.3,3.9c1,1,2.4,1.4,3.7,1.3 c0.9,0,1.8-0.1,2.6-0.3v-4h-2.9L115.7,37.2z"/> <path class="st0" d="M131.7,43.9H130l-3.4-5.7l-3.6,5.7h-1.6l4.3-6.7l-4-6.1h1.7l3.2,5.1l3.2-5.1h1.6l-4,6.1L131.7,43.9z"/> <path class="st0" d="M132.5,39.8v-1.3h4.3v1.3H132.5z"/> <path class="st0" d="M143.8,43.9h-1.4v-9.2c0-0.8,0-1.5,0.1-2.2l-0.4,0.4c-0.1,0.1-0.9,0.7-2.1,1.7l-0.8-1l3.4-2.6h1.2V43.9z"/> <path class="st0" d="M157.6,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-1,1.5-3,1.8-4.5,0.8c-0.3-0.2-0.6-0.5-0.8-0.8c-0.7-1.3-1-2.7-0.9-4.1 c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8C157.4,334,157.7,335.4,157.6,336.8z M151.7,336.8 c-0.1,1.2,0.1,2.3,0.6,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4 c-0.5-1-1.7-1.3-2.7-0.8c-0.3,0.2-0.6,0.5-0.8,0.8C151.9,334.5,151.7,335.6,151.7,336.8z"/> <path class="st0" d="M273.3,342.2h-7v-1l2.8-2.8c0.6-0.6,1.2-1.2,1.7-1.9c0.2-0.3,0.5-0.7,0.6-1.1s0.2-0.7,0.2-1.1 c0-0.5-0.2-1-0.5-1.4c-0.4-0.4-0.9-0.5-1.5-0.5c-0.4,0-0.9,0.1-1.3,0.2c-0.5,0.2-0.9,0.5-1.3,0.8l-0.6-0.8c0.9-0.8,2-1.2,3.2-1.2 c0.9-0.1,1.7,0.2,2.4,0.8c0.6,0.5,0.9,1.3,0.9,2.1c0,0.7-0.2,1.4-0.6,2c-0.6,0.9-1.3,1.8-2.1,2.5l-2.3,2.3v0.1h5.5L273.3,342.2z"/> <path class="st0" d="M276.5,340.4l0.1,0.2c-0.1,0.5-0.3,1.1-0.5,1.7s-0.5,1.2-0.8,1.8h-0.9c0.1-0.5,0.3-1.1,0.4-1.9 s0.3-1.4,0.3-1.8L276.5,340.4z"/> <path class="st0" d="M285.3,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-0.6,0.9-1.6,1.4-2.7,1.4s-2.1-0.5-2.6-1.4c-0.7-1.3-1-2.7-0.9-4.1 c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8C285.1,333.9,285.4,335.4,285.3,336.8z M279.4,336.8 c-0.1,1.2,0.1,2.3,0.6,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4 c-0.3-0.7-1-1.1-1.8-1.1c-0.7,0-1.4,0.4-1.8,1.1C279.6,334.5,279.4,335.6,279.4,336.8z"/> <path class="st0" d="M294,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-1,1.5-3,1.8-4.5,0.8c-0.3-0.2-0.6-0.5-0.8-0.8c-0.7-1.3-1-2.7-0.9-4.1 c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8C293.8,334,294.1,335.4,294,336.8z M288.1,336.8 c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4 c-0.3-0.7-1-1.1-1.8-1.1c-0.7,0-1.4,0.4-1.8,1.1C288.3,334.5,288.1,335.6,288.1,336.8L288.1,336.8z"/> <path class="st0" d="M302.8,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-1,1.5-3,1.8-4.5,0.8c-0.3-0.2-0.6-0.5-0.8-0.8c-0.7-1.3-1-2.7-0.9-4.1 c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8C302.6,334,302.9,335.4,302.8,336.8z M296.9,336.8 c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4 c-0.3-0.7-1-1.1-1.8-1.1c-0.7,0-1.4,0.4-1.8,1.1C297.1,334.5,296.9,335.6,296.9,336.8L296.9,336.8z"/> <path class="st0" d="M403.4,339.7h-1.6v2.5h-1.2v-2.5h-5.2v-1.1l5.1-7.2h1.3v7.2h1.6L403.4,339.7z M400.6,338.6V335 c0-0.7,0-1.5,0.1-2.4h-0.1c-0.2,0.4-0.4,0.8-0.6,1.2l-3.4,4.8H400.6z"/> <path class="st0" d="M406.3,340.4l0.1,0.2c-0.1,0.5-0.3,1.1-0.5,1.7s-0.5,1.2-0.8,1.8h-0.9c0.1-0.5,0.3-1.1,0.4-1.9 s0.3-1.4,0.3-1.8L406.3,340.4z"/> <path class="st0" d="M415.1,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-1,1.5-3,1.8-4.5,0.8c-0.3-0.2-0.6-0.5-0.8-0.8c-0.7-1.3-1-2.7-0.9-4.1 c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8C414.8,334,415.1,335.4,415.1,336.8z M409.2,336.8 c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4 c-0.3-0.7-1-1.1-1.8-1.1c-0.7,0-1.4,0.4-1.8,1.1C409.3,334.5,409.2,335.6,409.2,336.8z"/> <path class="st0" d="M423.8,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-1,1.5-3,1.8-4.5,0.8c-0.3-0.2-0.6-0.5-0.8-0.8c-0.7-1.3-1-2.7-0.9-4.1 c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8C423.6,334,423.9,335.4,423.8,336.8z M418,336.8 c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4 c-0.3-0.7-1-1.1-1.8-1.1c-0.7,0-1.4,0.4-1.8,1.1C418.1,334.5,417.9,335.6,418,336.8L418,336.8z"/> <path class="st0" d="M432.6,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-1,1.5-3,1.8-4.5,0.8c-0.3-0.2-0.6-0.5-0.8-0.8c-0.7-1.3-1-2.7-0.9-4.1 c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8C432.3,334,432.7,335.4,432.6,336.8z M426.7,336.8 c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4 c-0.5-1-1.7-1.3-2.7-0.8c-0.3,0.2-0.6,0.5-0.8,0.8C426.8,334.5,426.7,335.6,426.7,336.8z"/> <path class="st0" d="M525.7,337.6c-0.1-1.7,0.3-3.3,1.2-4.7c0.9-1.1,2.2-1.7,3.6-1.6c0.4,0,0.9,0,1.3,0.1v1 c-0.4-0.1-0.8-0.2-1.3-0.2c-1-0.1-2,0.3-2.6,1.1c-0.7,1-1,2.2-1,3.4h0.1c0.6-0.8,1.5-1.3,2.5-1.2c0.8,0,1.7,0.3,2.3,0.9 s0.9,1.5,0.8,2.4c0.1,1-0.3,1.9-0.9,2.6c-0.6,0.7-1.5,1-2.5,1s-2-0.4-2.6-1.2C526,340,525.6,338.8,525.7,337.6z M529.3,341.3 c0.6,0,1.2-0.2,1.6-0.6c0.4-0.5,0.6-1.2,0.6-1.9c0-0.6-0.2-1.2-0.5-1.7c-0.4-0.4-1-0.7-1.6-0.6c-0.4,0-0.8,0.1-1.2,0.3 c-0.4,0.2-0.7,0.4-0.9,0.7c-0.2,0.3-0.3,0.6-0.3,1c0,0.5,0.1,1,0.3,1.4s0.5,0.7,0.8,1C528.4,341.1,528.9,341.3,529.3,341.3 L529.3,341.3z"/> <path class="st0" d="M536,340.4l0.1,0.2c-0.1,0.5-0.3,1.1-0.5,1.7s-0.5,1.2-0.8,1.8h-0.9c0.1-0.5,0.3-1.1,0.4-1.9s0.3-1.4,0.3-1.8 L536,340.4z"/> <path class="st0" d="M544.8,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-1,1.5-3,1.8-4.5,0.8c-0.3-0.2-0.6-0.5-0.8-0.8c-0.7-1.3-1-2.7-0.9-4.1 c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8C544.5,334,544.8,335.4,544.8,336.8z M538.9,336.8 c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4 c-0.5-1-1.7-1.3-2.7-0.8c-0.3,0.2-0.6,0.5-0.8,0.8C539,334.5,538.8,335.6,538.9,336.8z"/> <path class="st0" d="M553.5,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-1,1.5-3,1.8-4.5,0.8c-0.3-0.2-0.6-0.5-0.8-0.8c-1.2-2.6-1.2-5.6,0-8.3 c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8C553.3,334,553.6,335.4,553.5,336.8z M547.6,336.8c-0.1,1.2,0.1,2.3,0.5,3.4 c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4c-0.5-1-1.7-1.3-2.7-0.8 c-0.3,0.2-0.6,0.5-0.8,0.8C547.8,334.5,547.6,335.6,547.6,336.8z"/> <path class="st0" d="M562.2,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-1,1.5-3,1.8-4.5,0.8c-0.3-0.2-0.6-0.5-0.8-0.8c-0.7-1.3-1-2.7-0.9-4.1 c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8C562,334,562.3,335.4,562.2,336.8z M556.4,336.8 c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4 c-0.5-1-1.7-1.3-2.7-0.8c-0.3,0.2-0.6,0.5-0.8,0.8C556.5,334.5,556.3,335.6,556.4,336.8z"/> <path class="st0" d="M658.8,331.3c0.8,0,1.6,0.2,2.3,0.7c0.6,0.4,0.9,1.2,0.9,1.9c0,0.5-0.2,1-0.5,1.4c-0.4,0.5-1,0.9-1.6,1.2 c0.7,0.3,1.3,0.7,1.9,1.3c0.4,0.4,0.6,1,0.5,1.6c0,0.8-0.3,1.6-0.9,2.1c-0.7,0.6-1.6,0.8-2.5,0.8c-0.9,0.1-1.9-0.2-2.6-0.8 c-0.6-0.5-1-1.3-0.9-2.1c0-1.2,0.7-2.2,2.2-2.9c-0.6-0.3-1.1-0.7-1.5-1.2c-0.3-0.4-0.4-1-0.4-1.5c0-0.7,0.3-1.4,0.9-1.9 C657.2,331.5,658,331.3,658.8,331.3z M656.5,339.4c0,0.5,0.2,1,0.6,1.4c0.5,0.4,1.1,0.5,1.7,0.5c0.6,0,1.2-0.2,1.7-0.5 c0.4-0.3,0.6-0.9,0.6-1.4s-0.2-0.9-0.6-1.3c-0.6-0.5-1.3-0.8-2-1.1c-0.6,0.2-1.1,0.6-1.6,1C656.7,338.4,656.5,338.9,656.5,339.4z M658.8,332.3c-0.5,0-1,0.1-1.4,0.4c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.4,0.1,0.8,0.4,1.1c0.5,0.4,1,0.8,1.6,1c0.6-0.2,1.1-0.5,1.5-0.9 c0.3-0.3,0.4-0.7,0.4-1.2s-0.2-0.9-0.5-1.2C659.9,332.4,659.4,332.3,658.8,332.3z"/> <path class="st0" d="M665.7,340.4l0.1,0.2c-0.1,0.5-0.3,1.1-0.5,1.7s-0.5,1.2-0.8,1.8h-0.9c0.1-0.5,0.3-1.1,0.4-1.9 s0.3-1.4,0.3-1.8L665.7,340.4z"/> <path class="st0" d="M674.5,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-0.6,0.9-1.6,1.4-2.7,1.4c-1.1,0-2.1-0.5-2.6-1.4 c-0.7-1.3-1-2.7-0.9-4.1c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8 C674.2,333.9,674.6,335.4,674.5,336.8z M668.6,336.8c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8 c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4c-0.5-1-1.7-1.3-2.7-0.8c-0.3,0.2-0.6,0.5-0.8,0.8 C668.7,334.5,668.6,335.6,668.6,336.8z"/> <path class="st0" d="M683.2,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-0.6,0.9-1.6,1.4-2.7,1.4c-1.1,0-2.1-0.5-2.6-1.4 c-0.7-1.3-1-2.7-0.9-4.1c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8 C683,333.9,683.3,335.4,683.2,336.8z M677.4,336.8c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8 c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4c-0.3-0.7-1-1.1-1.8-1.1c-0.7,0-1.4,0.4-1.8,1.1 C677.5,334.5,677.3,335.6,677.4,336.8z"/> <path class="st0" d="M692,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-0.6,0.9-1.6,1.4-2.7,1.4c-1.1,0-2.1-0.5-2.6-1.4c-0.7-1.3-1-2.7-0.9-4.1 c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8C691.8,333.9,692.1,335.4,692,336.8z M686.2,336.8 c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4 c-0.3-0.7-1-1.1-1.8-1.1c-0.7,0-1.4,0.4-1.8,1.1C686.3,334.5,686.1,335.6,686.2,336.8L686.2,336.8z"/> <path class="st0" d="M785.8,342.2h-1.2v-7.6c0-0.6,0-1.2,0.1-1.8l-0.3,0.3l-1.7,1.4l-0.7-0.8l2.8-2.2h1L785.8,342.2z"/> <path class="st0" d="M796,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-1,1.5-3,1.8-4.5,0.8c-0.3-0.2-0.6-0.5-0.8-0.8c-0.7-1.3-1-2.7-0.9-4.1 c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8C795.8,334,796.1,335.4,796,336.8z M790.1,336.8 c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4 c-0.5-1-1.7-1.3-2.7-0.8c-0.3,0.2-0.6,0.5-0.8,0.8C790.3,334.5,790.1,335.6,790.1,336.8z"/> <path class="st0" d="M799.2,340.4l0.1,0.2c-0.1,0.5-0.3,1.1-0.5,1.7s-0.5,1.2-0.8,1.8h-1c0.1-0.5,0.3-1.1,0.4-1.9s0.3-1.4,0.3-1.8 L799.2,340.4z"/> <path class="st0" d="M807.9,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-0.6,0.9-1.6,1.4-2.7,1.4c-1.1,0-2.1-0.5-2.6-1.4 c-0.7-1.3-1-2.7-0.9-4.1c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8 C807.7,333.9,808,335.4,807.9,336.8z M802.1,336.8c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8 c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4c-0.5-1-1.7-1.3-2.7-0.8c-0.3,0.2-0.6,0.5-0.8,0.8 C802.2,334.5,802,335.6,802.1,336.8L802.1,336.8z"/> <path class="st0" d="M816.7,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-0.6,0.9-1.6,1.4-2.7,1.4c-1.1,0-2.1-0.5-2.6-1.4 c-0.7-1.3-1-2.7-0.9-4.1c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8 C816.4,333.9,816.7,335.4,816.7,336.8z M810.8,336.8c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8 c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4c-0.5-1-1.7-1.3-2.7-0.8c-0.3,0.2-0.6,0.5-0.8,0.8 C810.9,334.5,810.7,335.6,810.8,336.8L810.8,336.8z"/> <path class="st0" d="M825.4,336.8c0.1,1.4-0.2,2.9-0.9,4.1c-0.6,0.9-1.6,1.4-2.7,1.4c-1.1,0-2.1-0.5-2.6-1.4 c-0.7-1.3-1-2.7-0.9-4.1c-0.1-1.4,0.2-2.9,0.9-4.1c1-1.5,3.1-1.8,4.5-0.8c0.3,0.2,0.6,0.5,0.8,0.8 C825.2,333.9,825.5,335.4,825.4,336.8z M819.6,336.8c-0.1,1.2,0.1,2.3,0.5,3.4c0.5,1,1.7,1.3,2.7,0.8c0.3-0.2,0.6-0.5,0.8-0.8 c0.4-1.1,0.6-2.2,0.5-3.4c0.1-1.2-0.1-2.3-0.5-3.4c-0.3-0.7-1-1.1-1.8-1.1c-0.7,0-1.4,0.4-1.8,1.1 C819.7,334.5,819.5,335.6,819.6,336.8L819.6,336.8z"/> <path class="st0" d="M367.1,373.3h-1.2v-9.6h-3.4v-1.1h8v1.1h-3.4V373.3z"/> <path class="st0" d="M372,363.1c0-0.2,0.1-0.4,0.2-0.6c0.3-0.3,0.7-0.3,1,0c0.3,0.4,0.3,0.9,0,1.2c-0.3,0.3-0.7,0.3-1,0 C372.1,363.6,372,363.4,372,363.1z M373.3,373.3h-1.2v-8h1.2V373.3z"/> <path class="st0" d="M386,373.3v-5.2c0-0.5-0.1-1-0.4-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.6-0.1-1.2,0.2-1.7,0.6 c-0.4,0.6-0.6,1.3-0.5,2v4.5h-1.2v-5.2c0-0.5-0.1-1-0.4-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.6,0-1.3,0.2-1.7,0.7 c-0.4,0.7-0.6,1.5-0.5,2.2v4.2h-1.2v-8h1l0.2,1.1l0,0c0.2-0.4,0.6-0.7,1-0.9c0.4-0.2,0.9-0.3,1.4-0.3c1-0.1,2,0.4,2.5,1.4h0.1 c0.2-0.4,0.6-0.8,1-1c0.5-0.3,1-0.4,1.5-0.4c0.7,0,1.5,0.2,2,0.7c0.5,0.6,0.8,1.4,0.7,2.2v5.2L386,373.3z"/> <path class="st0" d="M393.1,373.5c-1,0.1-2.1-0.3-2.8-1.1c-0.7-0.8-1.1-1.9-1-3c-0.1-1.1,0.3-2.2,1-3.1c0.6-0.8,1.6-1.2,2.6-1.1 c0.9,0,1.8,0.3,2.4,1s0.9,1.7,0.9,2.6v0.8h-5.6c0,0.8,0.2,1.5,0.7,2.1c0.5,0.5,1.2,0.8,1.9,0.7c0.9,0,1.8-0.2,2.6-0.5v1.1 c-0.4,0.2-0.8,0.3-1.2,0.4C394,373.5,393.5,373.5,393.1,373.5z M392.8,366.2c-0.6,0-1.1,0.2-1.5,0.6c-0.4,0.5-0.7,1.1-0.7,1.7h4.2 c0-0.6-0.1-1.3-0.5-1.8C393.8,366.4,393.3,366.2,392.8,366.2L392.8,366.2z"/> <path class="st0" d="M401.3,369.2c0-1.2,0.2-2.5,0.6-3.6c0.3-1.1,0.9-2.1,1.6-3h1.2c-0.7,0.9-1.2,2-1.6,3.1s-0.5,2.3-0.5,3.5 s0.2,2.3,0.5,3.4c0.4,1.1,0.9,2.1,1.6,3.1h-1.2c-0.7-0.9-1.3-1.8-1.6-2.9C401.5,371.6,401.3,370.4,401.3,369.2z"/> <path class="st0" d="M411.2,371.1c0,0.7-0.3,1.3-0.8,1.7c-0.7,0.4-1.5,0.7-2.4,0.6c-0.9,0-1.7-0.1-2.5-0.5v-1.1 c0.4,0.2,0.8,0.4,1.2,0.5c0.4,0.1,0.8,0.2,1.3,0.2s1-0.1,1.5-0.3c0.4-0.2,0.6-0.6,0.5-1c0-0.3-0.2-0.6-0.4-0.8 c-0.5-0.3-1-0.6-1.6-0.8c-0.6-0.2-1.1-0.4-1.6-0.7c-0.3-0.2-0.5-0.4-0.7-0.7c-0.2-0.3-0.2-0.6-0.2-0.9c0-0.6,0.3-1.2,0.8-1.5 c0.7-0.4,1.4-0.6,2.2-0.6c0.9,0,1.7,0.2,2.5,0.5l-0.4,1c-0.7-0.3-1.4-0.5-2.2-0.5c-0.4,0-0.9,0.1-1.3,0.3c-0.3,0.1-0.4,0.4-0.4,0.8 c0,0.2,0,0.4,0.2,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.5,0.2,0.9,0.4,1.4,0.6c0.7,0.2,1.4,0.6,1.9,1C411,370.2,411.2,370.6,411.2,371.1z" /> <path class="st0" d="M416.5,373.5c-1,0.1-2.1-0.3-2.8-1.1c-0.7-0.8-1.1-1.9-1-3c0-1.1,0.3-2.2,1-3.1c0.6-0.8,1.6-1.2,2.6-1.1 c0.9,0,1.8,0.3,2.4,1s0.9,1.7,0.9,2.6v0.8H414c0,0.8,0.2,1.5,0.7,2.1c0.5,0.5,1.2,0.8,1.9,0.7c0.9,0,1.8-0.2,2.6-0.5v1.1 c-0.4,0.2-0.8,0.3-1.2,0.4C417.5,373.5,417,373.5,416.5,373.5z M416.2,366.2c-0.6,0-1.1,0.2-1.5,0.6c-0.4,0.5-0.7,1.1-0.7,1.7h4.2 c0-0.6-0.1-1.3-0.5-1.8C417.3,366.4,416.8,366.2,416.2,366.2L416.2,366.2z"/> <path class="st0" d="M424.8,373.5c-1,0.1-2-0.3-2.7-1.1c-0.7-0.9-1-1.9-1-3c-0.1-1.1,0.3-2.2,1-3.1c0.7-0.8,1.7-1.2,2.8-1.1 c0.4,0,0.8,0,1.2,0.1c0.3,0.1,0.6,0.2,0.9,0.3l-0.4,1c-0.3-0.1-0.6-0.2-0.9-0.3c-0.3-0.1-0.6-0.1-0.9-0.1c-1.6,0-2.4,1-2.4,3.1 c0,0.8,0.2,1.6,0.6,2.3c0.4,0.5,1.1,0.8,1.8,0.8c0.7,0,1.4-0.2,2.1-0.4v1.1C426.2,373.4,425.5,373.5,424.8,373.5z"/> <path class="st0" d="M435.4,369.3c0.1,1.1-0.3,2.2-1,3.1c-0.7,0.8-1.7,1.2-2.7,1.1c-0.7,0-1.3-0.2-1.9-0.5s-1-0.8-1.3-1.5 s-0.5-1.4-0.5-2.2c-0.1-1.1,0.3-2.2,1-3.1c0.7-0.7,1.7-1.1,2.7-1.1s2,0.4,2.7,1.1C435.1,367.1,435.5,368.2,435.4,369.3z M429.3,369.3c-0.1,0.8,0.2,1.7,0.6,2.4c0.9,1,2.5,1.1,3.5,0.2c0.1-0.1,0.1-0.1,0.2-0.2c0.5-0.7,0.7-1.5,0.6-2.4 c0.1-0.8-0.2-1.6-0.6-2.3c-0.4-0.5-1.1-0.8-1.8-0.8c-0.7,0-1.4,0.2-1.8,0.8C429.5,367.7,429.3,368.5,429.3,369.3z"/> <path class="st0" d="M443,373.3v-5.2c0-0.5-0.1-1.1-0.5-1.5c-0.4-0.3-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.8,0.7 c-0.4,0.7-0.7,1.5-0.6,2.2v4.2h-1.2v-8h1l0.2,1.1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.3,1.5-0.3c0.8-0.1,1.6,0.2,2.2,0.7 c0.5,0.6,0.8,1.4,0.7,2.2v5.2L443,373.3z"/> <path class="st0" d="M452.1,372.3L452.1,372.3c-0.6,0.8-1.6,1.3-2.6,1.2c-0.9,0-1.8-0.4-2.5-1.1c-0.6-0.9-1-2-0.9-3.1 c-0.1-1.1,0.2-2.2,0.9-3.1c0.6-0.7,1.5-1.1,2.5-1.1c1-0.1,1.9,0.4,2.5,1.2h0.1v-0.6v-0.5v-3.3h1.2v11.4h-1L452.1,372.3z M449.7,372.5c0.7,0.1,1.3-0.2,1.8-0.7c0.4-0.6,0.6-1.4,0.6-2.2v-0.3c0.1-0.9-0.1-1.7-0.6-2.4c-0.5-0.5-1.1-0.8-1.8-0.7 c-0.7,0-1.3,0.3-1.6,0.8c-0.4,0.7-0.6,1.5-0.6,2.4c-0.1,0.8,0.1,1.6,0.6,2.3C448.4,372.2,449,372.5,449.7,372.5z"/> <path class="st0" d="M460.9,371.1c0,0.7-0.3,1.3-0.8,1.7c-0.7,0.4-1.5,0.7-2.4,0.6c-0.9,0-1.7-0.1-2.5-0.5v-1.1 c0.4,0.2,0.8,0.4,1.2,0.5c0.4,0.1,0.8,0.2,1.3,0.2s1-0.1,1.5-0.3c0.3-0.2,0.5-0.5,0.5-0.9c0-0.3-0.2-0.6-0.4-0.8 c-0.5-0.3-1-0.6-1.6-0.8c-0.6-0.2-1.1-0.4-1.6-0.7c-0.3-0.2-0.5-0.4-0.7-0.7c-0.2-0.3-0.2-0.6-0.2-0.9c0-0.6,0.3-1.2,0.8-1.5 c0.7-0.4,1.4-0.6,2.2-0.6c0.9,0,1.7,0.2,2.5,0.5l-0.4,1c-0.7-0.3-1.4-0.5-2.2-0.5c-0.4,0-0.9,0.1-1.3,0.3c-0.3,0.1-0.4,0.4-0.4,0.8 c0,0.2,0,0.4,0.2,0.5c0.1,0.2,0.3,0.3,0.5,0.4c0.5,0.2,0.9,0.4,1.4,0.6c0.7,0.2,1.4,0.6,1.9,1C460.8,370.2,460.9,370.7,460.9,371.1 z"/> <path class="st0" d="M464.9,369.2c0,1.2-0.2,2.4-0.6,3.6c-0.3,1.1-0.9,2.1-1.6,2.9h-1.2c0.7-0.9,1.2-2,1.6-3.1s0.6-2.3,0.5-3.4 c0-1.2-0.2-2.4-0.5-3.5c-0.4-1.1-0.9-2.2-1.6-3.1h1.2c0.7,0.9,1.3,1.9,1.6,3C464.8,366.8,464.9,368,464.9,369.2z"/> <path class="st0" d="M470,369.9v-1.1h6.3v1.1H470z"/> <path class="st0" d="M488.4,370.5c0,0.9-0.3,1.7-1,2.2c-0.8,0.6-1.8,0.8-2.8,0.8c-1,0.1-2-0.1-2.9-0.5v-1.2 c0.5,0.2,0.9,0.3,1.4,0.4s1,0.2,1.5,0.2c0.7,0,1.3-0.1,1.9-0.5c0.4-0.3,0.7-0.8,0.6-1.3c0-0.3-0.1-0.6-0.2-0.9 c-0.2-0.3-0.4-0.5-0.8-0.7c-0.5-0.3-1-0.5-1.6-0.7c-0.8-0.2-1.5-0.7-2.1-1.3c-0.4-0.5-0.7-1.2-0.6-1.9c0-0.8,0.3-1.5,0.9-2 c0.7-0.5,1.6-0.8,2.5-0.7c1,0,2,0.2,2.9,0.6l-0.4,1.1c-0.8-0.4-1.7-0.5-2.6-0.6c-0.5,0-1.1,0.1-1.5,0.4s-0.6,0.7-0.6,1.2 c0,0.3,0.1,0.6,0.2,0.9c0.2,0.3,0.4,0.5,0.7,0.6c0.5,0.3,1,0.5,1.5,0.7c0.9,0.3,1.7,0.7,2.3,1.3 C488.1,369.2,488.4,369.8,488.4,370.5z"/> <path class="st0" d="M495.8,373.3v-5.2c0-0.5-0.1-1.1-0.5-1.5c-0.4-0.3-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.9,0.7 c-0.4,0.7-0.6,1.5-0.6,2.3v4.2h-1.2v-11.4h1.2v3.5c0,0.3,0,0.7-0.1,1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.3,1.5-0.3 c0.8-0.1,1.6,0.2,2.2,0.7c0.5,0.6,0.8,1.4,0.7,2.2v5.2L495.8,373.3z"/> <path class="st0" d="M506.3,369.3c0.1,1.1-0.3,2.2-1,3.1c-0.7,0.8-1.7,1.2-2.7,1.1c-0.7,0-1.3-0.2-1.9-0.5s-1-0.9-1.3-1.5 c-0.3-0.7-0.5-1.4-0.5-2.2c-0.1-1.1,0.3-2.2,1-3.1c0.7-0.8,1.7-1.2,2.7-1.1c1,0,2,0.4,2.7,1.1C506,367.1,506.4,368.2,506.3,369.3z M500.2,369.3c-0.1,0.8,0.2,1.7,0.6,2.4c0.9,1,2.5,1.1,3.5,0.2c0.1,0,0.1-0.1,0.2-0.2c0.5-0.7,0.7-1.5,0.6-2.4 c0.1-0.8-0.2-1.6-0.6-2.3c-0.4-0.5-1.1-0.8-1.8-0.8c-0.7,0-1.4,0.2-1.8,0.8C500.4,367.7,500.2,368.5,500.2,369.3z"/> <path class="st0" d="M512,365.2c0.3,0,0.7,0,1,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.9-0.1c-0.6,0-1.3,0.3-1.7,0.8 c-0.5,0.6-0.7,1.3-0.7,2v4.3h-1.2v-8h1l0.1,1.5l0,0c0.3-0.5,0.6-0.9,1.1-1.2C511.1,365.4,511.6,365.2,512,365.2z"/> <path class="st0" d="M517.7,372.5c0.2,0,0.4,0,0.6,0c0.2,0,0.3-0.1,0.5-0.1v0.9c-0.2,0.1-0.4,0.1-0.6,0.2c-0.2,0-0.5,0.1-0.7,0.1 c-1.5,0-2.3-0.8-2.3-2.5v-4.8H514v-0.6l1.2-0.5l0.5-1.7h0.7v1.9h2.3v0.9h-2.3v4.7c0,0.4,0.1,0.8,0.3,1.1 C517,372.4,517.4,372.5,517.7,372.5z"/> <path class="st0" d="M523.7,373.5c-1,0.1-2.1-0.3-2.8-1.1c-0.7-0.8-1.1-1.9-1-3c-0.1-1.1,0.3-2.2,1-3.1c0.6-0.8,1.6-1.2,2.6-1.1 c0.9,0,1.8,0.3,2.4,1c0.6,0.7,0.9,1.7,0.9,2.6v0.8h-5.5c0,0.8,0.2,1.5,0.7,2.1c0.5,0.5,1.2,0.8,1.9,0.7c0.9,0,1.8-0.2,2.6-0.5v1.1 c-0.4,0.2-0.8,0.3-1.2,0.4C524.6,373.5,524.1,373.5,523.7,373.5z M523.3,366.2c-0.6,0-1.2,0.2-1.5,0.6c-0.4,0.5-0.6,1.1-0.7,1.7 h4.2c0-0.6-0.1-1.3-0.5-1.8C524.4,366.4,523.9,366.2,523.3,366.2L523.3,366.2z"/> <path class="st0" d="M532.3,365.2c0.3,0,0.7,0,1,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.9-0.1c-0.6,0-1.3,0.3-1.7,0.8 c-0.5,0.6-0.7,1.3-0.7,2v4.3h-1.2v-8h1l0.1,1.5l0,0c0.3-0.5,0.6-0.9,1.1-1.2C531.3,365.4,531.8,365.2,532.3,365.2z"/> <path class="st0" d="M538.5,363.1c0-0.2,0.1-0.4,0.2-0.6c0.1-0.1,0.3-0.2,0.5-0.2s0.4,0.1,0.5,0.2c0.3,0.4,0.3,0.9,0,1.2 c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4-0.1-0.5-0.2C538.6,363.6,538.5,363.4,538.5,363.1z M539.9,373.3h-1.2v-8h1.2V373.3z"/> <path class="st0" d="M547.5,371.1c0,0.7-0.3,1.3-0.8,1.7c-0.7,0.4-1.5,0.7-2.3,0.6c-0.9,0-1.7-0.1-2.5-0.5v-1.1 c0.4,0.2,0.8,0.4,1.2,0.5s0.8,0.2,1.3,0.2s1-0.1,1.5-0.3c0.3-0.2,0.5-0.5,0.5-0.9c0-0.3-0.2-0.6-0.4-0.8c-0.5-0.3-1-0.6-1.6-0.8 c-0.6-0.2-1.1-0.4-1.6-0.7c-0.3-0.2-0.5-0.4-0.7-0.7c-0.2-0.3-0.2-0.6-0.2-0.9c0-0.6,0.3-1.2,0.8-1.5c0.7-0.4,1.4-0.6,2.2-0.6 c0.9,0,1.7,0.2,2.5,0.5l-0.4,1c-0.7-0.3-1.4-0.5-2.2-0.5c-0.4,0-0.9,0.1-1.3,0.3c-0.3,0.1-0.4,0.4-0.4,0.8c0,0.2,0,0.4,0.2,0.5 c0.1,0.2,0.3,0.3,0.5,0.4c0.5,0.2,0.9,0.4,1.4,0.6c0.7,0.2,1.4,0.6,1.9,1C547.3,370.2,547.5,370.7,547.5,371.1z"/> <path class="st0" d="M553.5,362.6h3c1.1-0.1,2.1,0.1,3.1,0.6c0.7,0.4,1,1.2,1,2c0,0.6-0.2,1.1-0.5,1.6c-0.4,0.4-1,0.7-1.5,0.8v0.1 c1.6,0.3,2.4,1.1,2.4,2.6c0,0.9-0.3,1.7-1,2.2c-0.8,0.6-1.7,0.9-2.7,0.8h-3.7L553.5,362.6z M554.8,367.2h2c0.7,0.1,1.3-0.1,1.9-0.4 c0.4-0.3,0.6-0.9,0.6-1.4s-0.2-1-0.7-1.3c-0.6-0.3-1.3-0.4-2-0.4h-1.8V367.2z M554.8,368.3v4h2.2c0.7,0.1,1.4-0.1,2-0.5 c0.5-0.4,0.7-1,0.7-1.6s-0.2-1.1-0.7-1.5c-0.6-0.3-1.3-0.5-2-0.5L554.8,368.3z"/> <path class="st0" d="M566.5,373.5c-1,0.1-2.1-0.3-2.8-1.1c-0.7-0.8-1.1-1.9-1-3c0-1.1,0.3-2.2,1-3.1c0.6-0.8,1.6-1.2,2.6-1.1 c0.9,0,1.8,0.3,2.4,1c0.6,0.7,0.9,1.7,0.9,2.6v0.8H564c0,0.8,0.2,1.5,0.7,2.1c0.5,0.5,1.2,0.8,1.9,0.7c0.9,0,1.8-0.2,2.6-0.5v1.1 c-0.4,0.2-0.8,0.3-1.2,0.4C567.4,373.5,567,373.5,566.5,373.5z M566.1,366.2c-0.6,0-1.1,0.2-1.5,0.6c-0.4,0.5-0.6,1.1-0.7,1.7h4.2 c0-0.6-0.1-1.3-0.5-1.8C567.2,366.4,566.7,366.2,566.1,366.2L566.1,366.2z"/> <path class="st0" d="M574.1,372.5c0.2,0,0.4,0,0.6,0c0.2,0,0.3-0.1,0.5-0.1v0.9c-0.2,0.1-0.4,0.1-0.6,0.2c-0.2,0-0.5,0.1-0.7,0.1 c-1.5,0-2.3-0.8-2.3-2.5v-4.8h-1.2v-0.6l1.2-0.5l0.5-1.7h0.7v1.9h2.3v0.9h-2.3v4.7c0,0.4,0.1,0.8,0.3,1.1 C573.4,372.4,573.7,372.5,574.1,372.5z"/> <path class="st0" d="M579.9,372.5c0.2,0,0.4,0,0.6,0c0.2,0,0.3-0.1,0.5-0.1v0.9c-0.2,0.1-0.4,0.1-0.6,0.2c-0.2,0-0.5,0.1-0.7,0.1 c-1.5,0-2.3-0.8-2.3-2.5v-4.8h-1.2v-0.6l1.2-0.5l0.5-1.7h0.7v1.9h2.4v0.9h-2.3v4.7c0,0.4,0.1,0.8,0.3,1.1 C579.3,372.4,579.6,372.5,579.9,372.5z"/> <path class="st0" d="M585.9,373.5c-1,0.1-2.1-0.3-2.8-1.1c-0.7-0.8-1.1-1.9-1-3c0-1.1,0.3-2.2,1-3.1c0.6-0.8,1.6-1.2,2.6-1.1 c0.9,0,1.8,0.3,2.4,1c0.6,0.7,0.9,1.7,0.9,2.6v0.8h-5.5c0,0.8,0.2,1.5,0.7,2.1c0.5,0.5,1.2,0.8,1.9,0.7c0.9,0,1.8-0.2,2.6-0.5v1.1 c-0.4,0.2-0.8,0.3-1.2,0.4C586.8,373.5,586.3,373.5,585.9,373.5z M585.5,366.2c-0.6,0-1.1,0.2-1.5,0.6c-0.4,0.5-0.6,1.1-0.7,1.7 h4.2c0-0.6-0.1-1.3-0.5-1.8C586.6,366.4,586.1,366.2,585.5,366.2L585.5,366.2z"/> <path class="st0" d="M594.5,365.2c0.3,0,0.7,0,1,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.9-0.1c-0.6,0-1.3,0.3-1.7,0.8 c-0.5,0.6-0.7,1.3-0.7,2v4.3h-1.2v-8h1l0.1,1.5l0,0c0.3-0.5,0.6-0.9,1.1-1.2C593.5,365.4,594,365.2,594.5,365.2z"/> <rect x="154" y="19.9" class="st1" width="2.9" height="40"/> <rect x="156.9" y="19.9" class="st2" width="2.9" height="40"/> <rect x="159.8" y="19.9" class="st3" width="10.1" height="40"/> <rect x="165.6" y="69.9" class="st3" width="11.6" height="40"/> <rect x="236.3" y="119.9" class="st3" width="127.1" height="40"/> <rect x="278.2" y="169.9" class="st3" width="130" height="40"/> <rect x="425.6" y="219.9" class="st3" width="127.1" height="40"/> <rect x="574.3" y="269.9" class="st3" width="148.8" height="40"/> <polyline class="st1" points="158.3,69.9 154,69.9 154,109.9 158.3,109.9 158.3,69.9 "/> <polyline class="st2" points="165.6,69.9 158.3,69.9 158.3,109.9 165.6,109.9 165.6,69.9 "/> <polyline class="st1" points="178.6,119.9 154,119.9 154,159.9 178.6,159.9 178.6,119.9 "/> <polyline class="st2" points="236.3,119.9 178.6,119.9 178.6,159.9 236.3,159.9 236.3,119.9 "/> <polyline class="st2" points="278.2,169.9 200.2,169.9 200.2,209.9 278.2,209.9 278.2,169.9 "/> <polyline class="st2" points="425.7,219.9 262.3,219.9 262.3,259.9 425.7,259.9 425.7,219.9 "/> <polyline class="st2" points="574.3,269.9 331.7,269.9 331.7,309.9 574.3,309.9 574.3,269.9 "/> <polyline class="st1" points="200.2,169.9 154,169.9 154,209.9 200.2,209.9 200.2,169.9 "/> <line class="st4" x1="154.5" y1="320.4" x2="803.5" y2="320.4"/> <path class="st0" d="M37.8,293.5h-8.5v-1.3l3.4-3.4c0.7-0.7,1.4-1.4,2-2.2c0.3-0.4,0.5-0.8,0.7-1.3c0.2-0.4,0.3-0.9,0.2-1.4 c0-0.6-0.2-1.2-0.6-1.6c-0.5-0.4-1.1-0.6-1.7-0.6c-0.5,0-1,0.1-1.5,0.3c-0.6,0.2-1.1,0.6-1.6,1l-0.8-1c1.1-0.9,2.4-1.5,3.9-1.5 c1-0.1,2,0.3,2.8,0.9c0.7,0.6,1,1.6,1,2.5s-0.2,1.7-0.7,2.4c-0.7,1.1-1.6,2.1-2.6,3l-2.8,2.8v0.1h6.6L37.8,293.5z"/> <path class="st0" d="M48.1,287.1c0.1,1.7-0.2,3.5-1,5c-1.2,1.8-3.7,2.2-5.4,1c-0.4-0.3-0.7-0.6-1-1c-0.8-1.5-1.2-3.2-1.1-4.9 c-0.1-1.7,0.2-3.5,1-5c1.3-1.7,3.7-2.1,5.4-0.9c0.4,0.3,0.7,0.6,0.9,1C47.8,283.7,48.2,285.4,48.1,287.1z M41.1,287.1 c-0.1,1.4,0.1,2.8,0.7,4.1c0.6,1.2,2,1.6,3.2,1c0.4-0.2,0.8-0.6,1-1c0.9-2.6,0.9-5.5,0-8.1c-0.6-1.2-2-1.6-3.2-1 c-0.4,0.2-0.8,0.6-1,1C41.3,284.3,41,285.7,41.1,287.1L41.1,287.1z"/> <path class="st0" d="M61,281.8c-1.3-0.1-2.5,0.4-3.4,1.4c-0.9,1.1-1.3,2.5-1.2,3.9c-0.1,1.4,0.3,2.8,1.2,3.9c0.9,1,2.1,1.5,3.4,1.4 c1,0,2.1-0.2,3.1-0.5v1.3c-1.1,0.4-2.2,0.5-3.3,0.5c-1.6,0.1-3.2-0.5-4.4-1.7c-1.1-1.4-1.7-3.1-1.5-4.9c0-1.2,0.2-2.4,0.8-3.5 c0.5-1,1.2-1.8,2.1-2.3c1-0.6,2.1-0.8,3.3-0.8s2.4,0.2,3.5,0.7l-0.6,1.3C63,282.1,62,281.8,61,281.8z"/> <path class="st0" d="M75,284.4c0.1,1.2-0.4,2.3-1.3,3c-1.1,0.8-2.5,1.1-3.8,1h-1.5v5.1h-1.5v-12.8h3.3 C73.4,280.7,75,281.9,75,284.4z M68.3,287.2h1.3c1,0.1,2-0.1,2.9-0.6c0.6-0.5,1-1.3,0.9-2.1c0.1-0.7-0.3-1.4-0.8-1.9 c-0.8-0.5-1.7-0.7-2.6-0.6h-1.7C68.3,282,68.3,287.2,68.3,287.2z"/> <path class="st0" d="M87.4,280.7v8.3c0.1,1.3-0.4,2.6-1.4,3.5s-2.3,1.3-3.7,1.2c-1.3,0.1-2.6-0.4-3.6-1.3c-0.9-0.9-1.3-2.2-1.3-3.5 v-8.3H79v8.4c-0.1,0.9,0.3,1.8,0.9,2.5c0.7,0.6,1.6,0.9,2.6,0.9c0.9,0.1,1.8-0.2,2.5-0.9c0.6-0.7,0.9-1.6,0.9-2.5v-8.4L87.4,280.7z "/> <path class="st0" d="M105.5,293.5h-1.7l-7-10.8h-0.1c0.1,1.3,0.1,2.4,0.1,3.5v7.3h-1.4v-12.9h1.7l7,10.7h0.1c0-0.2,0-0.7-0.1-1.5 s-0.1-1.5,0-1.8v-7.4h1.4V293.5z"/> <path class="st0" d="M117.1,288.7c0.1,1.3-0.3,2.6-1.2,3.7c-0.8,0.9-2,1.4-3.3,1.3c-0.8,0-1.6-0.2-2.3-0.6c-0.7-0.4-1.2-1-1.6-1.7 c-0.4-0.8-0.6-1.7-0.5-2.7c-0.1-1.3,0.3-2.6,1.2-3.7c0.8-0.9,2-1.4,3.3-1.3c1.2-0.1,2.4,0.4,3.2,1.3 C116.8,286.1,117.2,287.4,117.1,288.7z M109.8,288.7c-0.1,1,0.2,2,0.7,2.8c1.1,1.2,2.9,1.3,4.1,0.2c0.1-0.1,0.1-0.1,0.2-0.2 c0.6-0.8,0.8-1.8,0.8-2.8c0.1-1-0.2-2-0.8-2.8c-0.5-0.7-1.3-1-2.2-1c-0.8-0.1-1.6,0.3-2.2,0.9C110,286.7,109.7,287.7,109.8,288.7z" /> <path class="st0" d="M126.2,292.2L126.2,292.2c-0.8,1-1.9,1.5-3.1,1.5c-1.1,0.1-2.2-0.4-2.9-1.3c-0.8-1.1-1.1-2.4-1.1-3.7 c-0.1-1.3,0.3-2.6,1.1-3.7c1.4-1.6,3.9-1.8,5.5-0.3c0.2,0.1,0.3,0.3,0.4,0.4h0.1l-0.1-0.7v-0.7v-3.9h1.5v13.7h-1.2L126.2,292.2z M123.3,292.4c0.8,0.1,1.6-0.2,2.2-0.8c0.5-0.8,0.7-1.7,0.7-2.6v-0.3c0.1-1-0.1-2-0.7-2.9c-0.5-0.6-1.3-1-2.2-0.9 c-0.8,0-1.6,0.3-2,1c-0.5,0.9-0.7,1.8-0.7,2.8c-0.1,1,0.2,1.9,0.7,2.8C121.7,292.2,122.5,292.5,123.3,292.4L123.3,292.4z"/> <path class="st0" d="M134.8,293.7c-1.3,0.1-2.5-0.4-3.4-1.3c-0.9-1-1.3-2.3-1.2-3.6c-0.1-1.3,0.3-2.6,1.1-3.7 c0.8-0.9,1.9-1.4,3.1-1.4c1.1-0.1,2.1,0.4,2.9,1.2c0.7,0.9,1.1,2,1.1,3.1v0.9h-6.6c0,0.9,0.3,1.8,0.9,2.6c0.6,0.6,1.4,0.9,2.3,0.9 c1.1,0,2.1-0.2,3.1-0.6v1.3C136.9,293.5,135.8,293.7,134.8,293.7L134.8,293.7z M134.4,284.9c-0.7,0-1.4,0.2-1.9,0.8 c-0.5,0.6-0.8,1.3-0.8,2.1h5c0.1-0.8-0.2-1.5-0.6-2.1C135.7,285.2,135,284.9,134.4,284.9L134.4,284.9z"/> <path class="st0" d="M147,290.9c0,0.8-0.3,1.6-1,2.1c-0.8,0.5-1.8,0.8-2.8,0.7c-1,0.1-2.1-0.2-3-0.6v-1.4c0.5,0.2,1,0.4,1.5,0.6 c0.5,0.1,1,0.2,1.5,0.2c0.6,0,1.2-0.1,1.8-0.4c0.6-0.4,0.8-1.1,0.4-1.7c-0.1-0.1-0.2-0.2-0.3-0.3c-0.6-0.4-1.2-0.7-1.9-0.9 c-0.7-0.2-1.3-0.5-1.9-0.9c-0.3-0.2-0.6-0.5-0.8-0.9c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.8,0.4-1.5,1-1.9c0.8-0.5,1.7-0.7,2.6-0.7 c1,0,2.1,0.2,3,0.6l-0.5,1.2c-0.8-0.4-1.7-0.6-2.6-0.6c-0.5,0-1.1,0.1-1.6,0.3c-0.3,0.2-0.5,0.5-0.5,0.9c0,0.2,0.1,0.5,0.2,0.7 c0.2,0.2,0.4,0.4,0.6,0.5c0.5,0.3,1.1,0.5,1.7,0.7c0.9,0.3,1.6,0.7,2.3,1.3C146.8,289.7,147,290.3,147,290.9z"/> <path class="st0" d="M37.3,233.8c0,0.7-0.2,1.4-0.7,2s-1.2,0.9-2,1v0.1c0.9,0.1,1.7,0.4,2.3,1c0.5,0.6,0.8,1.3,0.7,2.1 c0.1,1.1-0.4,2.1-1.3,2.8c-1.1,0.7-2.3,1.1-3.6,1c-0.6,0-1.3,0-1.9-0.1s-1.1-0.3-1.6-0.5v-1.4c0.6,0.3,1.2,0.5,1.8,0.6 c0.6,0.1,1.2,0.2,1.8,0.2c2.2,0,3.3-0.9,3.3-2.6c0-1.5-1.2-2.3-3.7-2.3h-1.2v-1.3h1.3c0.8,0,1.7-0.2,2.4-0.7 c0.6-0.4,0.9-1.1,0.9-1.9c0-0.6-0.2-1.1-0.7-1.5s-1.1-0.6-1.8-0.5c-0.5,0-1.1,0.1-1.6,0.2c-0.6,0.2-1.2,0.5-1.7,0.8l-0.7-1 c0.5-0.4,1.2-0.8,1.8-1c0.7-0.2,1.4-0.4,2.2-0.4c1-0.1,2.1,0.2,2.9,0.9C36.9,232,37.3,232.9,37.3,233.8z"/> <path class="st0" d="M48.1,237.2c0.1,1.7-0.2,3.5-1,5c-1.2,1.8-3.7,2.2-5.4,1c-0.4-0.3-0.7-0.6-1-1c-0.8-1.5-1.2-3.3-1.1-5 c-0.1-1.7,0.2-3.5,1-5c1.3-1.7,3.7-2.1,5.4-0.9c0.4,0.3,0.7,0.6,0.9,1C47.8,233.8,48.2,235.5,48.1,237.2z M41.1,237.2 c-0.1,1.4,0.1,2.8,0.7,4.1c0.6,1.2,2,1.6,3.2,1c0.4-0.2,0.8-0.6,1-1.1c0.9-2.6,0.9-5.5,0-8.1c-0.6-1.2-2-1.6-3.2-1 c-0.4,0.2-0.8,0.6-1,1C41.3,234.4,41,235.8,41.1,237.2L41.1,237.2z"/> <path class="st0" d="M61,231.9c-1.3-0.1-2.5,0.5-3.3,1.4c-0.9,1.1-1.3,2.5-1.3,3.9c-0.1,1.4,0.3,2.8,1.2,3.9 c0.9,0.9,2.1,1.4,3.4,1.4c1,0,2.1-0.2,3.1-0.5v1.3c-1.1,0.4-2.2,0.5-3.3,0.5c-1.6,0.1-3.2-0.5-4.4-1.7c-1.1-1.4-1.7-3.1-1.6-4.9 c0-1.2,0.2-2.4,0.8-3.5c0.5-1,1.2-1.8,2.1-2.3c1-0.6,2.1-0.8,3.3-0.8s2.4,0.2,3.5,0.7l-0.6,1.3C63,232.2,62,231.9,61,231.9z"/> <path class="st0" d="M75,234.5c0.1,1.2-0.4,2.3-1.3,3c-1.1,0.8-2.5,1.1-3.8,1h-1.5v5.1h-1.5v-12.8h3.3C73.4,230.7,75,232,75,234.5z M68.3,237.3h1.3c1,0.1,2-0.1,2.9-0.6c0.6-0.5,1-1.3,0.9-2.1c0.1-0.7-0.3-1.4-0.8-1.9c-0.8-0.5-1.7-0.7-2.6-0.6h-1.7L68.3,237.3z" /> <path class="st0" d="M87.4,230.7v8.3c0.1,1.3-0.4,2.6-1.4,3.5s-2.3,1.3-3.7,1.2c-1.3,0.1-2.6-0.4-3.6-1.3c-0.9-0.9-1.3-2.2-1.3-3.5 v-8.3H79v8.4c-0.1,0.9,0.3,1.8,0.9,2.5c0.7,0.6,1.6,0.9,2.6,0.9c0.9,0.1,1.8-0.2,2.5-0.9c0.6-0.7,0.9-1.6,0.9-2.5v-8.4L87.4,230.7 L87.4,230.7z"/> <path class="st0" d="M105.5,243.6h-1.7l-7-10.8h-0.1c0.1,1.3,0.1,2.4,0.1,3.5v7.3h-1.4v-12.9h1.7l7,10.7h0.1c0-0.2,0-0.7-0.1-1.5 s-0.1-1.5,0-1.8v-7.4h1.4V243.6z"/> <path class="st0" d="M117.1,238.8c0.1,1.3-0.3,2.6-1.2,3.7c-0.8,0.9-2,1.4-3.3,1.3c-0.8,0-1.6-0.2-2.3-0.6c-0.7-0.4-1.2-1-1.6-1.7 c-0.4-0.8-0.6-1.7-0.5-2.7c-0.1-1.3,0.3-2.6,1.2-3.7c0.8-0.9,2-1.4,3.3-1.3c1.2-0.1,2.4,0.4,3.2,1.3 C116.8,236.2,117.2,237.5,117.1,238.8z M109.8,238.8c-0.1,1,0.2,2,0.7,2.8c0.5,0.7,1.3,1,2.2,1c0.8,0,1.7-0.3,2.2-1 c0.6-0.8,0.8-1.8,0.8-2.8c0.1-1-0.2-2-0.8-2.8c-0.5-0.7-1.3-1-2.2-1c-0.8-0.1-1.6,0.3-2.2,0.9C110,236.8,109.7,237.8,109.8,238.8z" /> <path class="st0" d="M126.2,242.3L126.2,242.3c-0.8,1-1.9,1.5-3.1,1.5c-1.1,0.1-2.2-0.4-2.9-1.3c-0.8-1.1-1.1-2.4-1.1-3.7 c-0.1-1.3,0.3-2.6,1.1-3.7c1.4-1.6,3.9-1.8,5.5-0.3c0.2,0.1,0.3,0.3,0.4,0.4h0.1l-0.1-0.7v-0.7v-3.9h1.5v13.7h-1.2L126.2,242.3z M123.3,242.5c0.8,0.1,1.6-0.2,2.2-0.8c0.5-0.8,0.7-1.7,0.7-2.6v-0.3c0.1-1-0.1-2.1-0.7-2.9c-0.5-0.6-1.3-0.9-2.2-0.9 c-0.8,0-1.6,0.3-2,1c-0.5,0.8-0.7,1.8-0.7,2.8c-0.1,1,0.2,2,0.7,2.8C121.8,242.3,122.5,242.6,123.3,242.5L123.3,242.5z"/> <path class="st0" d="M134.8,243.8c-1.3,0.1-2.5-0.4-3.4-1.3c-0.9-1-1.3-2.3-1.2-3.6c-0.1-1.3,0.3-2.6,1.1-3.7 c0.8-0.9,1.9-1.4,3.1-1.4c1.1-0.1,2.1,0.4,2.9,1.2c0.7,0.9,1.1,2,1.1,3.1v0.9h-6.6c0,0.9,0.3,1.9,0.9,2.6c0.6,0.6,1.4,0.9,2.3,0.9 c1.1,0,2.1-0.2,3.1-0.6v1.3c-0.5,0.2-1,0.4-1.5,0.5C135.9,243.8,135.3,243.8,134.8,243.8z M134.4,235c-0.7,0-1.4,0.2-1.9,0.8 s-0.8,1.3-0.8,2.1h5c0.1-0.8-0.2-1.5-0.6-2.1C135.7,235.3,135,235,134.4,235L134.4,235z"/> <path class="st0" d="M147,241c0,0.8-0.3,1.6-1,2.1c-0.8,0.5-1.8,0.8-2.8,0.7c-1,0.1-2.1-0.2-3-0.6v-1.4c0.5,0.2,1,0.4,1.5,0.6 c0.5,0.1,1,0.2,1.5,0.2c0.6,0,1.2-0.1,1.8-0.4c0.4-0.2,0.6-0.7,0.6-1.1s-0.2-0.8-0.5-1c-0.6-0.4-1.2-0.7-1.9-0.9s-1.3-0.5-1.9-0.9 c-0.3-0.2-0.6-0.5-0.8-0.9c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.8,0.4-1.5,1-1.9c0.8-0.5,1.7-0.7,2.6-0.7c1,0,2.1,0.2,3,0.6l-0.5,1.2 c-0.8-0.4-1.7-0.6-2.6-0.6c-0.5,0-1.1,0.1-1.6,0.3c-0.3,0.2-0.5,0.5-0.5,0.9c0,0.2,0.1,0.5,0.2,0.7c0.2,0.2,0.4,0.4,0.6,0.5 c0.5,0.3,1.1,0.5,1.7,0.7c0.9,0.3,1.6,0.7,2.3,1.3C146.8,239.8,147,240.4,147,241z"/> <polyline class="st1" points="262.3,219.9 154,219.9 154,259.9 262.3,259.9 262.3,219.9 "/> <polyline class="st1" points="331.7,269.9 154,269.9 154,309.9 331.7,309.9 331.7,269.9 "/> <path class="st0" d="M190.9,421.8c0.1,1.5-0.4,3-1.4,4.1c-1.1,1-2.6,1.5-4.1,1.4h-3v-10.7h3.3c1.4-0.1,2.8,0.4,3.9,1.4 C190.4,419,190.9,420.4,190.9,421.8z M189.5,421.8c0.1-1.2-0.3-2.3-1.1-3.2c-0.9-0.8-2-1.1-3.1-1.1h-1.8v8.6h1.5 c1.2,0.1,2.4-0.3,3.4-1.1C189.2,424.2,189.6,423,189.5,421.8L189.5,421.8z"/> <path class="st0" d="M197.9,427.3l-0.2-1.1h-0.1c-0.3,0.4-0.7,0.8-1.2,1s-1,0.3-1.5,0.3c-0.7,0-1.3-0.2-1.9-0.6 c-0.5-0.5-0.7-1.1-0.7-1.8c0-1.6,1.3-2.5,3.9-2.5h1.4v-0.5c0-0.5-0.1-1-0.4-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.8,0-1.6,0.2-2.3,0.6 l-0.4-0.9c0.4-0.2,0.8-0.4,1.3-0.5s0.9-0.2,1.4-0.2c0.8-0.1,1.5,0.2,2.1,0.6c0.5,0.5,0.7,1.3,0.7,2v5.5H197.9z M195.1,426.4 c0.7,0,1.3-0.2,1.8-0.6c0.4-0.5,0.7-1.1,0.6-1.7v-0.7l-1.2,0.1c-0.7,0-1.4,0.1-2.1,0.5c-0.4,0.3-0.7,0.7-0.6,1.2 c0,0.4,0.1,0.7,0.4,1C194.3,426.3,194.7,426.4,195.1,426.4z"/> <path class="st0" d="M203.9,426.4c0.2,0,0.4,0,0.6,0l0.5-0.1v0.9c-0.2,0.1-0.4,0.1-0.6,0.2c-0.2,0-0.5,0.1-0.7,0.1 c-1.6,0-2.3-0.8-2.3-2.5v-4.8h-1.1v-0.6l1.1-0.5l0.5-1.7h0.7v1.8h2.3v1h-2.3v4.7c0,0.4,0.1,0.8,0.4,1.1 C203.2,426.3,203.5,426.4,203.9,426.4z"/> <path class="st0" d="M211.7,427.3l-0.2-1.1h-0.1c-0.3,0.4-0.7,0.8-1.2,1s-1,0.3-1.5,0.3c-0.7,0-1.3-0.2-1.9-0.6 c-0.5-0.5-0.7-1.1-0.7-1.8c0-1.6,1.3-2.5,3.9-2.5h1.4v-0.5c0-0.5-0.1-1-0.4-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.8,0-1.6,0.2-2.3,0.6 l-0.4-0.9c0.4-0.2,0.8-0.4,1.3-0.5s0.9-0.2,1.4-0.2c0.8-0.1,1.5,0.2,2.1,0.6c0.5,0.5,0.8,1.3,0.7,2v5.5H211.7z M209,426.4 c0.7,0,1.3-0.2,1.8-0.6c0.5-0.5,0.7-1.1,0.6-1.7v-0.7l-1.2,0.1c-0.7,0-1.4,0.1-2.1,0.5c-0.4,0.3-0.7,0.7-0.6,1.2 c0,0.4,0.1,0.7,0.4,1C208.2,426.3,208.6,426.4,209,426.4z"/> <path class="st0" d="M219.2,427.3v-10.7h1.2v9.6h4.7v1.1H219.2z"/> <path class="st0" d="M233.7,423.2c0.1,1.1-0.3,2.2-1,3.1c-0.7,0.8-1.7,1.2-2.7,1.1c-0.7,0-1.3-0.2-1.9-0.5c-0.6-0.3-1-0.8-1.3-1.5 s-0.5-1.4-0.4-2.2c-0.1-1.1,0.3-2.2,1-3.1c0.7-0.7,1.7-1.1,2.7-1.1s2,0.4,2.7,1.1C233.4,421,233.7,422.1,233.7,423.2z M227.6,423.2 c-0.1,0.8,0.2,1.6,0.6,2.3c0.9,1,2.4,1.1,3.4,0.2c0.1-0.1,0.1-0.1,0.2-0.2c0.5-0.7,0.7-1.5,0.6-2.4c0.1-0.8-0.2-1.6-0.6-2.3 c-0.4-0.5-1.1-0.8-1.8-0.8s-1.4,0.2-1.8,0.8C227.7,421.5,227.5,422.4,227.6,423.2z"/> <path class="st0" d="M240.7,427.3l-0.2-1.1h-0.1c-0.3,0.4-0.7,0.8-1.2,1s-1,0.3-1.5,0.3c-0.7,0-1.3-0.2-1.9-0.6 c-0.5-0.5-0.7-1.1-0.7-1.8c0-1.6,1.3-2.5,3.9-2.5h1.4v-0.5c0-0.5-0.1-1-0.4-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.8,0-1.6,0.2-2.3,0.6 l-0.4-0.9c0.4-0.2,0.8-0.4,1.3-0.5s0.9-0.2,1.4-0.2c0.8-0.1,1.5,0.2,2.1,0.6c0.5,0.5,0.7,1.3,0.7,2v5.5H240.7z M238,426.4 c0.7,0,1.3-0.2,1.8-0.6c0.4-0.5,0.7-1.1,0.6-1.7v-0.7l-1.2,0.1c-0.7,0-1.4,0.1-2.1,0.5c-0.4,0.3-0.7,0.7-0.6,1.2 c0,0.4,0.1,0.7,0.4,1C237.2,426.3,237.6,426.4,238,426.4z"/> <path class="st0" d="M249.6,426.2L249.6,426.2c-0.6,0.8-1.6,1.3-2.6,1.2c-0.9,0-1.8-0.4-2.4-1.1c-0.6-0.9-1-2-0.9-3.1 c-0.1-1.1,0.2-2.2,0.9-3.1c0.6-0.7,1.5-1.1,2.4-1.1c1-0.1,1.9,0.4,2.5,1.2h0.1l-0.1-0.6V419v-3.3h1.2v11.4h-1L249.6,426.2z M247.1,426.4c0.7,0.1,1.3-0.2,1.8-0.7c0.4-0.6,0.6-1.4,0.6-2.2v-0.3c0.1-0.9-0.1-1.7-0.6-2.4c-0.5-0.5-1.1-0.8-1.8-0.7 c-0.7,0-1.3,0.3-1.6,0.8c-0.4,0.7-0.6,1.5-0.6,2.3c-0.1,0.8,0.1,1.6,0.6,2.3C245.9,426.1,246.5,426.4,247.1,426.4L247.1,426.4z"/> <path class="st0" d="M260.7,421.5h3v1h-3v3.1h-1v-3.1h-3v-1h3v-3.1h1V421.5z"/> <path class="st0" d="M271.1,427.3h-1.2v-10.7h6v1.1h-4.8v3.9h4.4v1.1h-4.4V427.3z"/> <path class="st0" d="M281,427.4c-1,0.1-2.1-0.3-2.8-1.1c-0.7-0.8-1.1-1.9-1-3c0-1.1,0.3-2.2,1-3.1c0.6-0.8,1.6-1.2,2.6-1.1 c0.9,0,1.8,0.3,2.4,1s0.9,1.7,0.9,2.6v0.8h-5.5c0,0.8,0.2,1.5,0.7,2.1c0.5,0.5,1.2,0.8,1.9,0.7c0.9,0,1.8-0.2,2.6-0.5v1.1 C282.9,427.3,282,427.5,281,427.4L281,427.4z M280.7,420.1c-0.6,0-1.1,0.2-1.5,0.6c-0.4,0.5-0.7,1.1-0.7,1.7h4.2 c0-0.6-0.1-1.3-0.5-1.8C281.8,420.3,281.2,420.1,280.7,420.1L280.7,420.1z"/> <path class="st0" d="M290.8,427.3l-0.2-1.1h-0.1c-0.3,0.4-0.7,0.8-1.2,1s-1,0.3-1.5,0.3c-0.7,0-1.3-0.2-1.9-0.6 c-0.5-0.5-0.7-1.1-0.7-1.8c0-1.6,1.3-2.5,3.9-2.5h1.4v-0.5c0-0.5-0.1-1-0.4-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.8,0-1.6,0.2-2.3,0.6 l-0.4-0.9c0.4-0.2,0.8-0.4,1.3-0.5s0.9-0.2,1.4-0.2c0.8-0.1,1.5,0.2,2.1,0.6c0.5,0.5,0.7,1.3,0.7,2v5.5H290.8z M288.1,426.4 c0.7,0,1.3-0.2,1.8-0.6c0.5-0.5,0.7-1.1,0.6-1.7v-0.7l-1.2,0.1c-0.7,0-1.4,0.1-2.1,0.5c-0.4,0.3-0.7,0.7-0.6,1.2 c0,0.4,0.1,0.7,0.4,1C287.3,426.3,287.7,426.4,288.1,426.4z"/> <path class="st0" d="M296.8,426.4c0.2,0,0.4,0,0.6,0l0.5-0.1v0.9c-0.2,0.1-0.4,0.1-0.6,0.2c-0.2,0-0.5,0.1-0.7,0.1 c-1.6,0-2.3-0.8-2.3-2.5v-4.8h-1.1v-0.6l1.1-0.5l0.5-1.7h0.7v1.8h2.3v1h-2.3v4.7c0,0.4,0.1,0.8,0.4,1.1 C296.1,426.3,296.4,426.4,296.8,426.4z"/> <path class="st0" d="M300.7,419.2v5.2c0,0.5,0.1,1.1,0.5,1.5s0.9,0.5,1.4,0.5c0.7,0.1,1.4-0.2,1.8-0.7c0.4-0.7,0.7-1.5,0.6-2.2 v-4.3h1.2v8h-1l-0.2-1h-0.1c-0.2,0.4-0.6,0.7-1,0.9c-0.5,0.2-1,0.3-1.5,0.3c-0.8,0.1-1.6-0.2-2.2-0.7c-0.5-0.6-0.8-1.4-0.7-2.2 v-5.3L300.7,419.2L300.7,419.2z"/> <path class="st0" d="M312.3,419.1c0.3,0,0.7,0,1,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.9-0.1c-0.6,0-1.3,0.3-1.7,0.8 c-0.5,0.6-0.7,1.3-0.7,2v4.3h-1.2v-8h1l0.1,1.5h0.1c0.3-0.5,0.6-0.9,1.1-1.2C311.3,419.3,311.8,419.1,312.3,419.1z"/> <path class="st0" d="M318,427.4c-1,0.1-2.1-0.3-2.8-1.1c-0.7-0.8-1.1-1.9-1-3c0-1.1,0.3-2.2,1-3.1c0.6-0.8,1.6-1.2,2.6-1.1 c0.9,0,1.8,0.3,2.4,1s0.9,1.7,0.9,2.6v0.8h-5.6c0,0.8,0.2,1.5,0.7,2.1c0.5,0.5,1.2,0.8,1.9,0.7c0.9,0,1.8-0.2,2.6-0.5v1.1 c-0.4,0.2-0.8,0.3-1.2,0.4C318.9,427.4,318.5,427.4,318,427.4z M317.7,420.1c-0.6,0-1.1,0.2-1.5,0.6c-0.4,0.5-0.6,1.1-0.7,1.7h4.2 c0-0.6-0.1-1.3-0.5-1.8C318.8,420.3,318.2,420.1,317.7,420.1L317.7,420.1z"/> <path class="st0" d="M333.1,427.3h-6v-10.7h6v1.1h-4.7v3.5h4.4v1.1h-4.4v4h4.7V427.3z"/> <path class="st0" d="M340.5,427.3v-5.2c0-0.5-0.1-1.1-0.5-1.5c-0.4-0.3-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.8,0.7 c-0.4,0.7-0.7,1.5-0.6,2.2v4.2H335v-8h1l0.2,1.1h0.1c0.3-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.3,1.5-0.3c0.8-0.1,1.6,0.2,2.2,0.7 c0.5,0.6,0.8,1.4,0.7,2.2v5.2L340.5,427.3z"/> <path class="st0" d="M350.7,419.2v0.8l-1.5,0.2c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.2,0.6,0.2,0.9c0,0.7-0.3,1.4-0.8,1.9 c-0.6,0.5-1.4,0.7-2.2,0.7c-0.2,0-0.5,0-0.7-0.1c-0.4,0.2-0.7,0.5-0.8,1c0,0.2,0.1,0.4,0.3,0.5c0.3,0.1,0.6,0.2,0.9,0.2h1.4 c0.7,0,1.4,0.1,2,0.5c0.5,0.4,0.7,1,0.7,1.6c0,0.8-0.4,1.6-1.1,2c-1,0.5-2,0.8-3.1,0.7c-0.8,0.1-1.7-0.2-2.4-0.6 c-0.6-0.4-0.9-1-0.9-1.7c0-0.5,0.2-0.9,0.5-1.3s0.8-0.6,1.3-0.7c-0.2-0.1-0.4-0.2-0.5-0.4c-0.1-0.2-0.2-0.4-0.2-0.7 c0-0.3,0.1-0.5,0.2-0.8c0.2-0.3,0.5-0.5,0.7-0.6c-0.4-0.2-0.8-0.5-1-0.9c-0.3-0.4-0.4-0.9-0.4-1.4c0-0.7,0.3-1.5,0.8-2 c0.6-0.5,1.4-0.8,2.2-0.7c0.4,0,0.8,0,1.1,0.1L350.7,419.2z M344.3,428.6c0,0.4,0.2,0.8,0.5,1c0.5,0.3,1,0.4,1.6,0.3 c0.8,0,1.6-0.1,2.3-0.5c0.5-0.2,0.7-0.7,0.7-1.2c0-0.4-0.1-0.7-0.4-0.9c-0.5-0.2-1-0.3-1.5-0.2H346c-0.5,0-0.9,0.1-1.3,0.4 C344.4,427.7,344.3,428.2,344.3,428.6L344.3,428.6z M345,421.8c0,0.5,0.1,0.9,0.5,1.3c0.4,0.3,0.8,0.5,1.3,0.4 c0.8,0.1,1.6-0.4,1.8-1.3c0-0.1,0-0.3,0-0.4c0.1-0.9-0.5-1.7-1.4-1.8c-0.1,0-0.3,0-0.4,0c-0.5,0-1,0.1-1.3,0.5 C345.1,420.8,344.9,421.3,345,421.8L345,421.8z"/> <path class="st0" d="M352.3,417.1c0-0.2,0.1-0.4,0.2-0.6c0.3-0.3,0.7-0.3,1,0c0.3,0.4,0.3,0.9,0,1.2c-0.3,0.3-0.7,0.3-1,0 C352.3,417.5,352.2,417.3,352.3,417.1z M353.6,427.3h-1.2v-8h1.2V427.3z"/> <path class="st0" d="M361.5,427.3v-5.2c0-0.5-0.1-1.1-0.5-1.5c-0.4-0.3-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.8,0.7 c-0.5,0.7-0.7,1.5-0.6,2.2v4.2H356v-8h1l0.2,1.1h0.1c0.3-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.3,1.5-0.3c0.8-0.1,1.6,0.2,2.2,0.7 c0.5,0.6,0.8,1.4,0.7,2.2v5.2L361.5,427.3z"/> <path class="st0" d="M368.6,427.4c-1,0.1-2.1-0.3-2.8-1.1c-0.7-0.8-1.1-1.9-1-3c-0.1-1.1,0.3-2.2,1-3.1c0.6-0.8,1.6-1.2,2.6-1.1 c0.9,0,1.8,0.3,2.4,1s0.9,1.7,0.9,2.6v0.8H366c0,0.8,0.2,1.5,0.7,2.1c0.5,0.5,1.2,0.8,1.9,0.7c0.9,0,1.8-0.2,2.6-0.5v1.1 c-0.4,0.2-0.8,0.3-1.2,0.4C369.5,427.4,369,427.4,368.6,427.4z M368.2,420.1c-0.6,0-1.1,0.2-1.5,0.6c-0.4,0.5-0.6,1.1-0.7,1.7h4.2 c0-0.6-0.1-1.3-0.5-1.8C369.3,420.3,368.8,420.1,368.2,420.1z"/> <path class="st0" d="M377,427.4c-1,0.1-2.1-0.3-2.8-1.1c-0.7-0.8-1.1-1.9-1-3c0-1.1,0.3-2.2,1-3.1c0.6-0.8,1.6-1.2,2.6-1.1 c0.9,0,1.8,0.3,2.4,1s0.9,1.7,0.9,2.6v0.8h-5.5c0,0.8,0.2,1.5,0.7,2.1c0.5,0.5,1.2,0.8,1.9,0.7c0.9,0,1.8-0.2,2.6-0.5v1.1 C378.9,427.3,378,427.5,377,427.4L377,427.4z M376.7,420.1c-0.6,0-1.1,0.2-1.5,0.6c-0.4,0.5-0.6,1.1-0.7,1.7h4.2 c0-0.6-0.1-1.3-0.5-1.8C377.8,420.3,377.2,420.1,376.7,420.1L376.7,420.1z"/> <path class="st0" d="M385.6,419.1c0.3,0,0.7,0,1,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.9-0.1c-0.6,0-1.3,0.3-1.7,0.8 c-0.5,0.6-0.7,1.3-0.7,2v4.3H382v-8h1l0.1,1.5h0.1c0.3-0.5,0.6-0.9,1.1-1.2C384.7,419.3,385.1,419.1,385.6,419.1z"/> <path class="st0" d="M388.1,417.1c0-0.2,0.1-0.4,0.2-0.6c0.1-0.1,0.3-0.2,0.5-0.2s0.4,0.1,0.5,0.2c0.3,0.4,0.3,0.9,0,1.2 c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4-0.1-0.5-0.2C388.1,417.5,388,417.3,388.1,417.1z M389.4,427.3h-1.2v-8h1.2V427.3z"/> <path class="st0" d="M397.3,427.3v-5.2c0-0.5-0.1-1.1-0.5-1.5c-0.4-0.3-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.9,0.7 c-0.4,0.7-0.7,1.5-0.6,2.2v4.2h-1.2v-8h1l0.2,1.1h0.1c0.3-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.3,1.5-0.3c0.8-0.1,1.6,0.2,2.2,0.7 c0.5,0.6,0.8,1.4,0.7,2.2v5.2L397.3,427.3z"/> <path class="st0" d="M407.5,419.2v0.8l-1.5,0.2c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.2,0.6,0.2,0.9c0,0.7-0.3,1.4-0.8,1.9 c-0.6,0.5-1.4,0.7-2.2,0.7c-0.2,0-0.5,0-0.7-0.1c-0.4,0.2-0.7,0.5-0.8,1c0,0.2,0.1,0.4,0.3,0.5c0.3,0.1,0.6,0.2,0.9,0.2h1.4 c0.7,0,1.4,0.1,2,0.5c0.5,0.4,0.7,1,0.7,1.6c0,0.8-0.4,1.6-1.1,2c-1,0.5-2,0.8-3.1,0.7c-0.9,0-1.7-0.2-2.4-0.6 c-0.6-0.4-0.9-1-0.9-1.7c0-0.5,0.2-0.9,0.5-1.3s0.8-0.6,1.3-0.7c-0.2-0.1-0.4-0.2-0.5-0.4c-0.1-0.2-0.2-0.4-0.2-0.7 c0-0.3,0.1-0.5,0.2-0.8c0.2-0.3,0.5-0.5,0.7-0.6c-0.4-0.2-0.8-0.5-1-0.9c-0.6-1.1-0.5-2.5,0.4-3.4c0.6-0.5,1.4-0.8,2.2-0.7 c0.4,0,0.8,0,1.1,0.1L407.5,419.2z M401.1,428.6c0,0.4,0.2,0.8,0.5,1c0.5,0.3,1,0.4,1.6,0.3c0.8,0,1.6-0.1,2.3-0.5 c0.5-0.2,0.7-0.7,0.7-1.2c0-0.4-0.1-0.7-0.4-0.9c-0.5-0.2-1-0.3-1.5-0.2h-1.5c-0.5,0-0.9,0.1-1.3,0.4 C401.2,427.7,401.1,428.2,401.1,428.6L401.1,428.6z M401.8,421.8c0,0.5,0.1,0.9,0.5,1.3c0.4,0.3,0.8,0.5,1.3,0.4 c0.8,0.1,1.6-0.4,1.8-1.3c0-0.1,0-0.3,0-0.4c0.1-0.9-0.5-1.7-1.4-1.8c-0.1,0-0.3,0-0.4,0c-0.5,0-1,0.1-1.3,0.5 C401.9,420.8,401.7,421.3,401.8,421.8L401.8,421.8z"/> <rect x="155" y="412.9" class="st1" width="20" height="20"/> <path class="st0" d="M473.5,421.8c0.1,1.5-0.4,3-1.4,4.1c-1.1,1-2.6,1.5-4.1,1.4h-3v-10.7h3.3c1.4-0.1,2.8,0.4,3.9,1.4 C473,419,473.6,420.4,473.5,421.8z M472.2,421.8c0.1-1.2-0.3-2.3-1-3.2c-0.9-0.8-2-1.1-3.1-1.1h-1.8v8.6h1.5 c1.2,0.1,2.4-0.3,3.4-1.1C471.9,424.2,472.3,423,472.2,421.8L472.2,421.8z"/> <path class="st0" d="M480.5,427.3l-0.2-1.1l0,0c-0.3,0.4-0.7,0.8-1.2,1s-1,0.3-1.5,0.3c-0.7,0-1.3-0.2-1.9-0.6 c-0.5-0.5-0.7-1.1-0.7-1.8c0-1.6,1.3-2.5,3.9-2.5h1.4v-0.5c0-0.5-0.1-1-0.4-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.8,0-1.6,0.2-2.3,0.6 l-0.4-0.9c0.4-0.2,0.8-0.4,1.3-0.5s0.9-0.2,1.4-0.2c0.8-0.1,1.5,0.2,2.1,0.6c0.5,0.5,0.7,1.3,0.7,2v5.5H480.5z M477.7,426.4 c0.7,0,1.3-0.2,1.8-0.6c0.5-0.5,0.7-1.1,0.6-1.7v-0.7l-1.2,0.1c-0.7,0-1.4,0.1-2.1,0.5c-0.4,0.3-0.7,0.7-0.6,1.2 c0,0.4,0.1,0.7,0.4,1C476.9,426.3,477.3,426.4,477.7,426.4z"/> <path class="st0" d="M486.5,426.4c0.2,0,0.4,0,0.6,0l0.5-0.1v0.9c-0.2,0.1-0.4,0.1-0.6,0.2c-0.2,0-0.5,0.1-0.7,0.1 c-1.5,0-2.3-0.8-2.3-2.5v-4.8h-1.1v-0.6l1.1-0.5l0.5-1.7h0.7v1.8h2.3v1h-2.3v4.7c0,0.4,0.1,0.8,0.3,1.1 C485.8,426.3,486.1,426.4,486.5,426.4z"/> <path class="st0" d="M494.4,427.3l-0.2-1.1h-0.1c-0.3,0.4-0.7,0.8-1.2,1s-1,0.3-1.5,0.3c-0.7,0-1.3-0.2-1.9-0.6 c-0.5-0.5-0.7-1.1-0.7-1.8c0-1.6,1.3-2.5,3.9-2.5h1.4v-0.5c0-0.5-0.1-1-0.4-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.8,0-1.6,0.2-2.3,0.6 l-0.4-0.9c0.4-0.2,0.8-0.4,1.3-0.5s0.9-0.2,1.4-0.2c0.8-0.1,1.5,0.2,2.1,0.6c0.5,0.5,0.7,1.3,0.7,2v5.5H494.4z M491.6,426.4 c0.7,0,1.3-0.2,1.8-0.6c0.5-0.5,0.7-1.1,0.6-1.7v-0.7l-1.2,0.1c-0.7,0-1.4,0.1-2.1,0.5c-0.4,0.3-0.7,0.7-0.6,1.2 c0,0.4,0.1,0.7,0.4,1C490.8,426.3,491.2,426.4,491.6,426.4L491.6,426.4z"/> <path class="st0" d="M506.4,417.5c-1.1,0-2.1,0.4-2.8,1.2c-0.7,0.9-1.1,2.1-1,3.2c-0.1,1.2,0.3,2.3,1,3.2c0.7,0.8,1.7,1.2,2.8,1.1 c0.9,0,1.7-0.2,2.5-0.4v1.1c-0.9,0.3-1.8,0.4-2.7,0.4c-1.4,0.1-2.7-0.4-3.6-1.4c-0.9-1.1-1.4-2.6-1.3-4.1c0-1,0.2-2,0.6-2.9 c0.4-0.8,1-1.5,1.8-1.9c0.8-0.5,1.8-0.7,2.7-0.7c1,0,2,0.2,2.9,0.6l-0.5,1.1C508.1,417.7,507.3,417.5,506.4,417.5z"/> <path class="st0" d="M517.8,423.2c0.1,1.1-0.3,2.2-1,3.1c-0.7,0.8-1.7,1.2-2.7,1.1c-0.7,0-1.3-0.2-1.9-0.5c-0.6-0.3-1-0.8-1.3-1.5 s-0.5-1.4-0.5-2.2c-0.1-1.1,0.3-2.2,1-3.1c0.7-0.7,1.7-1.1,2.7-1.1s2,0.4,2.7,1.1C517.5,421,517.8,422.1,517.8,423.2z M511.7,423.2 c-0.1,0.8,0.2,1.6,0.6,2.3c0.9,1,2.4,1.1,3.4,0.2c0.1-0.1,0.1-0.1,0.2-0.2c0.5-0.7,0.7-1.5,0.6-2.4c0.1-0.8-0.2-1.6-0.6-2.3 c-0.4-0.5-1.1-0.8-1.8-0.8s-1.4,0.2-1.8,0.8C511.8,421.5,511.6,422.4,511.7,423.2z"/> <path class="st0" d="M525.3,427.3v-5.2c0-0.5-0.1-1.1-0.4-1.5c-0.4-0.3-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.8,0.7 c-0.4,0.7-0.7,1.5-0.6,2.2v4.2h-1.2v-8h1l0.2,1.1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.3,1.5-0.3c0.8-0.1,1.6,0.2,2.2,0.7 c0.5,0.6,0.8,1.4,0.7,2.2v5.2L525.3,427.3z"/> <path class="st0" d="M530.7,427.3l-3-8h1.3l1.7,4.8c0.4,1.1,0.6,1.8,0.7,2.2l0,0c0.1-0.3,0.2-0.8,0.5-1.6s0.9-2.6,1.9-5.3h1.3l-3,8 L530.7,427.3z"/> <path class="st0" d="M539.8,427.4c-1,0.1-2.1-0.3-2.8-1.1c-0.7-0.8-1.1-1.9-1-3c0-1.1,0.3-2.2,1-3.1c0.6-0.8,1.6-1.2,2.6-1.1 c0.9,0,1.8,0.3,2.4,1c0.6,0.7,0.9,1.7,0.9,2.6v0.8h-5.5c0,0.8,0.2,1.5,0.7,2.1c0.5,0.5,1.2,0.8,1.9,0.7c0.9,0,1.8-0.2,2.6-0.5v1.1 c-0.4,0.2-0.8,0.3-1.2,0.4C540.8,427.4,540.3,427.4,539.8,427.4z M539.5,420.1c-0.6,0-1.1,0.2-1.5,0.6c-0.4,0.5-0.7,1.1-0.7,1.7 h4.2c0-0.6-0.1-1.3-0.5-1.8C540.6,420.3,540,420.1,539.5,420.1L539.5,420.1z"/> <path class="st0" d="M548.4,419.1c0.3,0,0.7,0,1,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.9-0.1c-0.6,0-1.3,0.3-1.7,0.8 c-0.5,0.6-0.7,1.3-0.7,2v4.3h-1.2v-8h1l0.1,1.5h0.1c0.3-0.5,0.6-0.9,1.1-1.2C547.5,419.3,547.9,419.1,548.4,419.1z"/> <path class="st0" d="M556.2,425.1c0,0.7-0.3,1.3-0.8,1.7c-0.7,0.4-1.5,0.7-2.3,0.6c-0.9,0-1.7-0.1-2.5-0.5v-1.1 c0.4,0.2,0.8,0.3,1.2,0.5c0.4,0.1,0.8,0.2,1.3,0.2s1-0.1,1.5-0.3c0.5-0.3,0.7-0.9,0.4-1.4c-0.1-0.1-0.2-0.2-0.3-0.3 c-0.5-0.3-1-0.6-1.6-0.8c-0.6-0.2-1.1-0.4-1.6-0.7c-0.3-0.2-0.5-0.4-0.7-0.7c-0.4-0.9-0.2-1.9,0.6-2.5c0.7-0.4,1.4-0.6,2.2-0.6 c0.9,0,1.7,0.2,2.5,0.5l-0.4,1c-0.7-0.3-1.4-0.5-2.2-0.5c-0.5,0-0.9,0.1-1.3,0.3c-0.3,0.1-0.4,0.4-0.4,0.7c0,0.2,0.1,0.4,0.2,0.5 c0.1,0.2,0.3,0.3,0.5,0.4c0.5,0.2,0.9,0.4,1.4,0.6c0.7,0.2,1.4,0.6,1.9,1C556.1,424.1,556.3,424.6,556.2,425.1z"/> <path class="st0" d="M558,417.1c0-0.2,0.1-0.4,0.2-0.6c0.1-0.1,0.3-0.2,0.5-0.2s0.4,0.1,0.5,0.2c0.3,0.4,0.3,0.9,0,1.2 c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4-0.1-0.5-0.2C558.1,417.5,558,417.3,558,417.1z M559.3,427.3h-1.2v-8h1.2V427.3z"/> <path class="st0" d="M568.7,423.2c0.1,1.1-0.3,2.2-1,3.1c-0.7,0.8-1.7,1.2-2.7,1.1c-0.7,0-1.3-0.2-1.9-0.5c-0.6-0.3-1-0.8-1.3-1.5 s-0.5-1.4-0.5-2.2c-0.1-1.1,0.3-2.2,1-3.1c0.7-0.7,1.7-1.1,2.7-1.1s2,0.4,2.7,1.1C568.4,421,568.7,422.1,568.7,423.2z M562.6,423.2 c-0.1,0.8,0.2,1.6,0.6,2.3c0.9,1,2.4,1.1,3.4,0.2c0.1-0.1,0.1-0.1,0.2-0.2c0.5-0.7,0.7-1.5,0.6-2.4c0.1-0.8-0.2-1.6-0.6-2.3 c-0.4-0.5-1.1-0.8-1.8-0.8s-1.4,0.2-1.8,0.8C562.7,421.5,562.5,422.4,562.6,423.2z"/> <path class="st0" d="M576.2,427.3v-5.2c0-0.5-0.1-1.1-0.4-1.5c-0.4-0.3-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.8,0.7 c-0.4,0.7-0.7,1.5-0.6,2.2v4.2h-1.2v-8h1l0.2,1.1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.3,1.5-0.3c0.8-0.1,1.6,0.2,2.2,0.7 c0.5,0.6,0.8,1.4,0.7,2.2v5.2L576.2,427.3z"/> <rect x="438" y="412.9" class="st2" width="20" height="20"/> <path class="st0" d="M639.7,427.3l-3.7-9.5l0,0c0.1,0.8,0.1,1.6,0.1,2.7v6.8h-1.2v-10.7h1.9l3.4,8.8l0,0l3.4-8.8h1.9v10.7h-1.2 v-6.9c0-0.8,0-1.6,0.1-2.6h-0.1l-3.7,9.5H639.7z"/> <path class="st0" d="M653.1,427.3l-0.2-1.1h-0.1c-0.3,0.4-0.7,0.8-1.2,1s-1,0.3-1.5,0.3c-0.7,0-1.3-0.2-1.9-0.6 c-0.5-0.5-0.7-1.1-0.7-1.8c0-1.6,1.3-2.5,3.9-2.5h1.4v-0.5c0-0.5-0.1-1-0.4-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.8,0-1.6,0.2-2.3,0.6 l-0.4-0.9c0.4-0.2,0.8-0.4,1.3-0.5s0.9-0.2,1.4-0.2c0.8-0.1,1.5,0.2,2.1,0.6c0.5,0.5,0.8,1.3,0.7,2v5.5H653.1z M650.3,426.4 c0.7,0,1.3-0.2,1.8-0.6c0.5-0.5,0.7-1.1,0.7-1.7v-0.7l-1.2,0.1c-0.7,0-1.4,0.1-2.1,0.5c-0.4,0.3-0.7,0.7-0.6,1.2 c0,0.4,0.1,0.7,0.4,1C649.6,426.3,649.9,426.4,650.3,426.4z"/> <path class="st0" d="M659.7,427.4c-1,0.1-2-0.3-2.7-1.1c-0.7-0.8-1.1-1.9-1-3c-0.1-1.1,0.3-2.2,1-3.1c0.7-0.8,1.7-1.2,2.8-1.1 c0.4,0,0.8,0,1.2,0.1c0.3,0.1,0.6,0.2,0.9,0.3l-0.4,1c-0.3-0.1-0.6-0.2-0.9-0.3c-0.3-0.1-0.6-0.1-0.8-0.1c-1.6,0-2.5,1-2.5,3.1 c-0.1,0.8,0.2,1.6,0.6,2.3c0.4,0.5,1.1,0.8,1.8,0.8s1.4-0.2,2.1-0.4v1.1C661,427.3,660.3,427.4,659.7,427.4z"/> <path class="st0" d="M669,427.3v-5.2c0-0.5-0.1-1.1-0.5-1.5c-0.4-0.3-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.8,0.7 c-0.4,0.7-0.7,1.5-0.6,2.2v4.2h-1.2v-11.4h1.2v3.4c0,0.3,0,0.7-0.1,1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.4,1.5-0.3 c0.8-0.1,1.6,0.2,2.2,0.7c0.5,0.6,0.8,1.4,0.7,2.2v5.2L669,427.3z"/> <path class="st0" d="M672.5,417.1c0-0.2,0-0.4,0.2-0.6c0.3-0.3,0.7-0.3,1,0c0.3,0.4,0.3,0.9,0,1.2c-0.3,0.3-0.7,0.3-1,0 C672.6,417.5,672.5,417.3,672.5,417.1z M673.8,427.3h-1.2v-8h1.2V427.3z"/> <path class="st0" d="M681.8,427.3v-5.2c0-0.5-0.1-1.1-0.4-1.5c-0.4-0.3-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.8,0.7 c-0.4,0.7-0.7,1.5-0.6,2.2v4.2h-1.2v-8h1l0.2,1.1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.3,1.5-0.3c0.8-0.1,1.6,0.2,2.2,0.7 c0.5,0.6,0.8,1.4,0.7,2.2v5.2L681.8,427.3z"/> <path class="st0" d="M688.8,427.4c-1,0.1-2.1-0.3-2.8-1.1c-0.7-0.8-1.1-1.9-1-3c0-1.1,0.3-2.2,1-3.1c0.6-0.8,1.6-1.2,2.6-1.1 c0.9,0,1.8,0.3,2.4,1c0.6,0.7,0.9,1.7,0.9,2.6v0.8h-5.5c0,0.8,0.2,1.5,0.7,2.1c0.5,0.5,1.2,0.8,1.9,0.7c0.9,0,1.8-0.2,2.6-0.5v1.1 C690.7,427.3,689.8,427.5,688.8,427.4L688.8,427.4z M688.5,420.1c-0.6,0-1.1,0.2-1.5,0.6c-0.4,0.5-0.6,1.1-0.7,1.7h4.2 c0-0.6-0.1-1.3-0.5-1.8C689.6,420.3,689,420.1,688.5,420.1z"/> <path class="st0" d="M697.9,427.3v-10.7h1.2v9.6h4.7v1.1H697.9z"/> <path class="st0" d="M708.8,427.4c-1,0.1-2.1-0.3-2.8-1.1c-0.7-0.8-1.1-1.9-1-3c0-1.1,0.3-2.2,1-3.1c0.6-0.8,1.6-1.2,2.6-1.1 c0.9,0,1.8,0.3,2.4,1c0.6,0.7,0.9,1.7,0.9,2.6v0.8h-5.5c0,0.8,0.2,1.5,0.7,2.1c0.5,0.5,1.2,0.8,1.9,0.7c0.9,0,1.8-0.2,2.6-0.5v1.1 c-0.4,0.2-0.8,0.3-1.2,0.4C709.8,427.4,709.3,427.4,708.8,427.4z M708.5,420.1c-0.6,0-1.2,0.2-1.5,0.6c-0.4,0.5-0.6,1.1-0.7,1.7 h4.2c0-0.6-0.1-1.3-0.5-1.8C709.6,420.3,709.1,420.1,708.5,420.1L708.5,420.1z"/> <path class="st0" d="M718.7,427.3l-0.2-1.1h-0.1c-0.3,0.4-0.7,0.8-1.2,1s-1,0.3-1.5,0.3c-0.7,0-1.3-0.2-1.9-0.6 c-0.5-0.5-0.7-1.1-0.7-1.8c0-1.6,1.3-2.5,3.9-2.5h1.4v-0.5c0-0.5-0.1-1-0.4-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.8,0-1.6,0.2-2.3,0.6 l-0.4-0.9c0.4-0.2,0.8-0.4,1.3-0.5s0.9-0.2,1.4-0.2c0.8-0.1,1.5,0.2,2.1,0.6c0.5,0.5,0.7,1.3,0.7,2v5.5H718.7z M716,426.4 c0.7,0,1.3-0.2,1.8-0.6c0.4-0.5,0.7-1.1,0.6-1.7v-0.7l-1.2,0.1c-0.7,0-1.4,0.1-2.1,0.5c-0.4,0.3-0.7,0.7-0.6,1.2 c0,0.4,0.1,0.7,0.4,1C715.2,426.3,715.6,426.4,716,426.4z"/> <path class="st0" d="M725.7,419.1c0.3,0,0.7,0,1,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.9-0.1c-0.6,0-1.3,0.3-1.7,0.8 c-0.5,0.6-0.7,1.3-0.7,2v4.3H722v-8h1l0.1,1.5l0,0c0.3-0.5,0.6-0.9,1.1-1.2C724.7,419.3,725.2,419.1,725.7,419.1z"/> <path class="st0" d="M733.7,427.3v-5.2c0-0.5-0.1-1.1-0.5-1.5s-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.8,0.7c-0.5,0.7-0.7,1.5-0.6,2.2 v4.2h-1.2v-8h1l0.2,1.1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.3,1.5-0.3c0.8-0.1,1.6,0.2,2.2,0.7c0.5,0.6,0.8,1.4,0.7,2.2v5.2 L733.7,427.3z"/> <path class="st0" d="M737.2,417.1c0-0.2,0.1-0.4,0.2-0.6c0.1-0.1,0.3-0.2,0.5-0.2s0.4,0.1,0.5,0.2c0.3,0.4,0.3,0.9,0,1.2 c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4-0.1-0.5-0.2C737.3,417.5,737.2,417.3,737.2,417.1z M738.5,427.3h-1.2v-8h1.2V427.3z"/> <path class="st0" d="M746.5,427.3v-5.2c0-0.5-0.1-1.1-0.4-1.5c-0.4-0.3-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.8,0.7 c-0.4,0.7-0.7,1.5-0.6,2.2v4.2H741v-8h1l0.2,1.1l0,0c0.2-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.3,1.5-0.3c0.8-0.1,1.6,0.2,2.2,0.7 c0.5,0.6,0.8,1.4,0.7,2.2v5.2L746.5,427.3z"/> <path class="st0" d="M756.7,419.2v0.8l-1.5,0.2c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.2,0.6,0.2,0.9c0,0.7-0.3,1.4-0.8,1.9 c-0.6,0.5-1.4,0.7-2.2,0.7c-0.2,0-0.4,0-0.7-0.1c-0.4,0.2-0.7,0.5-0.8,1c0,0.2,0.1,0.4,0.3,0.5c0.3,0.1,0.6,0.2,0.9,0.2h1.4 c0.7,0,1.4,0.1,2,0.5c0.5,0.4,0.7,1,0.7,1.6c0,0.8-0.4,1.6-1.1,2c-1,0.5-2,0.8-3.1,0.7c-0.9,0-1.7-0.2-2.4-0.6 c-0.6-0.4-0.9-1-0.8-1.7c0-0.5,0.2-0.9,0.5-1.3s0.8-0.6,1.3-0.7c-0.2-0.1-0.4-0.2-0.5-0.4c-0.1-0.2-0.2-0.4-0.2-0.7 c0-0.3,0.1-0.5,0.2-0.8c0.2-0.3,0.5-0.5,0.7-0.6c-0.4-0.2-0.8-0.5-1-0.9c-0.6-1.1-0.5-2.5,0.4-3.4c0.6-0.5,1.4-0.8,2.2-0.7 c0.4,0,0.8,0,1.1,0.1L756.7,419.2z M750.3,428.6c0,0.4,0.2,0.8,0.5,1c0.5,0.3,1,0.4,1.6,0.3c0.8,0,1.6-0.1,2.3-0.5 c0.5-0.2,0.7-0.7,0.7-1.2c0-0.4-0.1-0.7-0.4-0.9c-0.5-0.2-1-0.3-1.5-0.2H752c-0.5,0-0.9,0.1-1.3,0.4 C750.4,427.7,750.2,428.2,750.3,428.6L750.3,428.6z M750.9,421.8c0,0.5,0.1,0.9,0.5,1.3c0.4,0.3,0.8,0.5,1.3,0.4 c0.8,0.1,1.6-0.4,1.8-1.3c0-0.1,0-0.3,0-0.4c0.1-0.9-0.5-1.7-1.4-1.8c-0.1,0-0.3,0-0.4,0c-0.5,0-1,0.1-1.3,0.5 C751,420.8,750.9,421.3,750.9,421.8L750.9,421.8z"/> <path class="st0" d="M765.7,427.3h-1.2v-9.6H761v-1.1h8v1.1h-3.4L765.7,427.3z"/> <path class="st0" d="M773,419.1c0.3,0,0.7,0,1,0.1l-0.2,1.1c-0.3-0.1-0.6-0.1-0.9-0.1c-0.6,0-1.3,0.3-1.7,0.8 c-0.5,0.6-0.7,1.3-0.7,2v4.3h-1.2v-8h1l0.1,1.5h0.1c0.3-0.5,0.6-0.9,1.1-1.2C772,419.3,772.5,419.1,773,419.1z"/> <path class="st0" d="M780.3,427.3l-0.2-1.1l0,0c-0.3,0.4-0.7,0.8-1.2,1s-1,0.3-1.5,0.3c-0.7,0-1.3-0.2-1.9-0.6 c-0.5-0.5-0.7-1.1-0.7-1.8c0-1.6,1.3-2.5,3.9-2.5h1.4v-0.5c0-0.5-0.1-1-0.4-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.8,0-1.6,0.2-2.3,0.6 l-0.4-0.9c0.4-0.2,0.8-0.4,1.3-0.5s0.9-0.2,1.4-0.2c0.8-0.1,1.5,0.2,2.1,0.6c0.5,0.5,0.7,1.3,0.7,2v5.5H780.3z M777.5,426.4 c0.7,0,1.3-0.2,1.8-0.6c0.4-0.5,0.7-1.1,0.6-1.7v-0.7l-1.2,0.1c-0.7,0-1.4,0.1-2.1,0.5c-0.4,0.3-0.7,0.7-0.6,1.2 c0,0.4,0.1,0.7,0.4,1C776.7,426.3,777.1,426.4,777.5,426.4z"/> <path class="st0" d="M783.5,417.1c0-0.2,0.1-0.4,0.2-0.6c0.1-0.1,0.3-0.2,0.5-0.2s0.4,0.1,0.5,0.2c0.3,0.4,0.3,0.9,0,1.2 c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4-0.1-0.5-0.2C783.5,417.5,783.5,417.3,783.5,417.1z M784.8,427.3h-1.2v-8h1.2V427.3z"/> <path class="st0" d="M792.7,427.3v-5.2c0-0.5-0.1-1.1-0.5-1.5s-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.8,0.7c-0.4,0.7-0.7,1.5-0.6,2.2 v4.2h-1.2v-8h1l0.2,1.1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.3,1.5-0.3c0.8-0.1,1.6,0.2,2.2,0.7c0.5,0.6,0.8,1.4,0.7,2.2v5.2 L792.7,427.3z"/> <path class="st0" d="M796.2,417.1c0-0.2,0.1-0.4,0.2-0.6c0.1-0.1,0.3-0.2,0.5-0.2s0.4,0.1,0.5,0.2c0.3,0.4,0.3,0.9,0,1.2 c-0.1,0.1-0.3,0.2-0.5,0.2s-0.4-0.1-0.5-0.2C796.3,417.5,796.2,417.3,796.2,417.1z M797.6,427.3h-1.2v-8h1.2V427.3z"/> <path class="st0" d="M805.5,427.3v-5.2c0-0.5-0.1-1.1-0.5-1.5s-0.9-0.5-1.4-0.5c-0.7-0.1-1.4,0.2-1.8,0.7c-0.4,0.7-0.7,1.5-0.6,2.2 v4.2H800v-8h1l0.2,1.1h0.1c0.2-0.4,0.6-0.7,1-0.9c0.5-0.2,1-0.3,1.5-0.3c0.8-0.1,1.6,0.2,2.2,0.7c0.5,0.6,0.8,1.4,0.7,2.2v5.2 L805.5,427.3z"/> <path class="st0" d="M815.7,419.2v0.8l-1.5,0.2c0.2,0.2,0.3,0.4,0.4,0.7c0.1,0.3,0.2,0.6,0.2,0.9c0,0.7-0.3,1.4-0.8,1.9 c-0.6,0.5-1.4,0.7-2.2,0.7c-0.2,0-0.5,0-0.7-0.1c-0.4,0.2-0.7,0.5-0.8,1c0,0.2,0.1,0.4,0.3,0.5c0.3,0.1,0.6,0.2,0.9,0.2h1.4 c0.7,0,1.4,0.1,2,0.5c0.5,0.4,0.7,1,0.7,1.6c0,0.8-0.4,1.6-1.1,2c-1,0.5-2,0.8-3.1,0.7c-0.9,0-1.7-0.2-2.4-0.6 c-0.6-0.4-0.9-1-0.8-1.7c0-0.5,0.2-0.9,0.5-1.3s0.8-0.6,1.3-0.7c-0.2-0.1-0.4-0.2-0.5-0.4c-0.1-0.2-0.2-0.4-0.2-0.7 c0-0.3,0.1-0.5,0.2-0.8c0.2-0.3,0.5-0.5,0.7-0.6c-0.4-0.2-0.8-0.5-1-0.9c-0.6-1.1-0.5-2.5,0.4-3.4c0.6-0.5,1.4-0.8,2.2-0.7 c0.4,0,0.8,0,1.1,0.1L815.7,419.2z M809.3,428.6c0,0.4,0.2,0.8,0.5,1c0.5,0.3,1,0.4,1.6,0.3c0.8,0,1.6-0.1,2.3-0.5 c0.5-0.2,0.7-0.7,0.7-1.2c0-0.4-0.1-0.7-0.4-0.9c-0.5-0.2-1-0.3-1.5-0.2H811c-0.5,0-0.9,0.1-1.3,0.4 C809.4,427.8,809.2,428.2,809.3,428.6L809.3,428.6z M809.9,421.8c0,0.5,0.1,0.9,0.5,1.3c0.4,0.3,0.8,0.5,1.3,0.4 c0.8,0.1,1.6-0.4,1.8-1.3c0-0.1,0-0.3,0-0.4c0.1-0.9-0.5-1.7-1.4-1.8c-0.1,0-0.3,0-0.4,0c-0.5,0-1,0.1-1.3,0.5 C810.1,420.8,809.9,421.3,809.9,421.8L809.9,421.8z"/> <rect x="608" y="412.9" class="st3" width="20" height="20"/> <polyline class="st5" points="414.5,8.9 413.8,8.9 413.8,318.9 414.5,318.9 414.5,8.9 "/> <polyline class="st5" points="284.8,8.9 284.1,8.9 284.1,318.9 284.8,318.9 284.8,8.9 "/> <polyline class="st5" points="544.2,8.9 543.5,8.9 543.5,318.9 544.2,318.9 544.2,8.9 "/> <polyline class="st5" points="673.9,8.9 673.2,8.9 673.2,318.9 673.9,318.9 673.9,8.9 "/> <polyline class="st5" points="803.6,8.9 803,8.9 803,318.9 803.6,318.9 803.6,8.9 "/> <path class="st0" d="M204.5,64.6h4.3v6.2c-0.7,0.2-1.4,0.4-2.1,0.5c-0.8,0.1-1.6,0.2-2.4,0.2c-1.7,0.1-3.3-0.5-4.6-1.7 c-1.1-1.4-1.7-3.1-1.6-4.9c0-1.2,0.2-2.4,0.8-3.5c0.5-1,1.3-1.8,2.3-2.3c1.1-0.6,2.3-0.8,3.5-0.8c1.3,0,2.6,0.2,3.8,0.8l-0.6,1.3 c-1.1-0.5-2.2-0.7-3.3-0.7c-1.4-0.1-2.7,0.4-3.7,1.4c-0.9,1.1-1.4,2.5-1.3,3.9c-0.1,1.4,0.4,2.8,1.3,3.9c1,0.9,2.4,1.4,3.7,1.3 c0.9,0,1.8-0.1,2.6-0.3v-4h-2.9L204.5,64.6z"/> <path class="st0" d="M219.9,62.2c0.1,1.2-0.4,2.3-1.3,3c-1.1,0.8-2.5,1.1-3.8,1h-1.5v5.1h-1.5V58.5h3.3 C218.3,58.4,219.9,59.7,219.9,62.2z M213.2,64.9h1.3c1,0.1,2-0.1,2.9-0.6c0.6-0.5,1-1.3,0.9-2.1c0.1-0.7-0.3-1.4-0.8-1.9 c-0.8-0.5-1.7-0.7-2.6-0.6h-1.7L213.2,64.9z"/> <path class="st0" d="M232.3,58.4v8.3c0.1,1.3-0.4,2.6-1.4,3.5s-2.3,1.3-3.7,1.2c-1.3,0.1-2.6-0.4-3.6-1.3c-0.9-0.9-1.3-2.2-1.3-3.5 v-8.3h1.6v8.4c-0.1,0.9,0.3,1.8,0.9,2.5c0.7,0.6,1.6,0.9,2.6,0.9c0.9,0.1,1.8-0.2,2.5-0.9c0.6-0.7,0.9-1.6,0.9-2.5v-8.4L232.3,58.4 z"/> <path class="st0" d="M749,208.1c-1.3-0.1-2.5,0.5-3.3,1.4c-0.9,1.1-1.3,2.5-1.2,3.9c-0.1,1.4,0.3,2.8,1.2,3.9 c0.9,1,2.1,1.5,3.4,1.4c1,0,2.1-0.2,3.1-0.5v1.3c-1.1,0.4-2.2,0.5-3.3,0.5c-1.7,0.1-3.3-0.5-4.4-1.7c-1.1-1.4-1.7-3.1-1.5-4.9 c0-1.2,0.2-2.4,0.8-3.5c0.5-1,1.2-1.8,2.1-2.3c1-0.6,2.1-0.8,3.3-0.8s2.4,0.2,3.5,0.7l-0.6,1.3C751,208.3,750,208.1,749,208.1z"/> <path class="st0" d="M763,210.6c0.1,1.2-0.4,2.3-1.3,3c-1.1,0.8-2.5,1.1-3.8,1.1h-1.5v5.1h-1.5V207h3.3 C761.4,206.9,763,208.2,763,210.6z M756.3,213.4h1.3c1,0.1,2-0.1,2.9-0.6c0.6-0.5,1-1.3,0.9-2.1c0.1-0.7-0.3-1.4-0.8-1.9 c-0.8-0.5-1.7-0.7-2.6-0.6h-1.7V213.4z"/> <path class="st0" d="M775.4,206.9v8.3c0.1,1.3-0.4,2.6-1.4,3.5s-2.3,1.3-3.7,1.2c-1.3,0.1-2.6-0.4-3.6-1.3 c-0.9-0.9-1.3-2.2-1.2-3.5v-8.3h1.5v8.4c-0.1,0.9,0.3,1.8,0.9,2.5c0.7,0.6,1.6,0.9,2.6,0.9c0.9,0.1,1.8-0.2,2.5-0.9 c0.6-0.7,0.9-1.6,0.9-2.5v-8.4L775.4,206.9z"/> <line class="st4" x1="732" y1="119.9" x2="732" y2="309.9"/> </g> <line class="st4" x1="186.6" y1="19.9" x2="186.6" y2="109.9"/> </svg>
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/community-header.svg
<svg xmlns="http://www.w3.org/2000/svg" width="2560" height="639" viewBox="0 0 2560 639"> <metadata><?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c140 79.160451, 2017/05/06-01:08:21 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about=""/> </rdf:RDF> </x:xmpmeta> <?xpacket end="w"?></metadata> <defs> <style> .cls-1 { fill: #7400ff; } .cls-1, .cls-2 { fill-rule: evenodd; } .cls-2 { fill: #fff; opacity: 0.14; } </style> </defs> <path class="cls-1" d="M2815,283H5375V658.244L2815,922V283Z" transform="translate(-2815 -283)"/> <path class="cls-2" d="M4020.49,541l379.49,231.507L3844.01,830.29Z" transform="translate(-2815 -283)"/> <path id="Rectangle_798_copy" data-name="Rectangle 798 copy" class="cls-2" d="M5375,282V659L3759.66,835.584l665.85-570.846Z" transform="translate(-2815 -283)"/> </svg>
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/RAPIDS-logo-white.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1920 704" style="enable-background:new 0 0 1920 704;" xml:space="preserve"> <style type="text/css"> .st0{fill:#7300FF;} .st1{fill:#FFFFFF;} </style> <rect class="st0" width="1920" height="704"/> <g> <path class="st1" d="M389.7,337.5c15.5,0,27.1-3.4,34.9-10.3c7.8-6.8,11.6-16.9,11.6-30c0-13.2-3.9-23.3-11.6-30.4 c-7.8-7.1-19.4-10.7-34.9-10.7h-53.9v81.4H389.7z M284,481.2c-1.8-1.8-2.7-4-2.7-6.6V222.4c0-2.8,0.8-5.2,2.5-7 c1.7-1.8,3.9-2.7,6.8-2.7h100.4c31.8,0,56.6,7.4,74.6,22.1c18,14.7,26.9,35.7,26.9,62.8c0,18.9-4.5,34.7-13.6,47.5 c-9,12.8-21.7,22-38,27.7l56.2,98.8c0.8,1.5,1.2,3,1.2,4.3c0,2.3-0.8,4.3-2.5,5.8c-1.7,1.5-3.6,2.3-5.6,2.3h-35.7 c-4.1,0-7.4-1-9.7-2.9c-2.3-1.9-4.4-4.5-6.2-7.6L389,381.7h-53.1v93c0,2.6-0.9,4.8-2.7,6.6c-1.8,1.8-4.1,2.7-7,2.7h-35.7 C288,484,285.8,483.1,284,481.2"/> <path class="st1" d="M611.5,384.8h87.6l-43.8-119.4L611.5,384.8z M528.6,481.6c-1.6-1.6-2.3-3.5-2.3-5.8l0.8-3.5l93-249.9 c2.6-6.5,7.2-9.7,13.9-9.7h42.6c6.7,0,11.4,3.2,14,9.7l93,249.9l0.8,3.5c0,2.3-0.8,4.3-2.5,5.8c-1.7,1.5-3.6,2.3-5.6,2.3h-34.5 c-5.4,0-9.2-2.5-11.2-7.4l-17.8-46.9H597.9l-17.8,46.9c-2.1,4.9-5.8,7.4-11.2,7.4h-34.5C532,484,530.1,483.2,528.6,481.6"/> <path class="st1" d="M922.6,340.6c15,0,26.4-3.5,34.3-10.7c7.9-7.1,11.8-17.5,11.8-31.2c0-13.4-3.8-23.9-11.4-31.4 c-7.6-7.5-19.2-11.2-34.7-11.2h-55.8v84.5H922.6z M814.1,481.2c-1.8-1.8-2.7-4-2.7-6.6V222.4c0-2.8,0.8-5.2,2.5-7 c1.7-1.8,3.9-2.7,6.8-2.7h103.9c31.3,0,55.8,7.4,73.6,22.1c17.8,14.7,26.7,36.2,26.7,64.3c0,27.9-8.9,49-26.7,63.4 c-17.8,14.3-42.4,21.5-73.6,21.5h-57v90.7c0,2.8-0.9,5.1-2.7,6.8c-1.8,1.7-4.1,2.5-7,2.5h-37.2C818.1,484,815.9,483.1,814.1,481.2" /> <path class="st1" d="M1469.1,477.4c-16.5-7-29.1-16.1-37.6-27.5c-8.5-11.4-13-23.8-13.6-37.2c0-2.1,0.8-3.9,2.3-5.6 c1.5-1.7,3.5-2.5,5.8-2.5h35.3c2.8,0,5.2,0.7,7,1.9c1.8,1.3,3.5,3.1,5,5.4c2.6,8.8,8.5,16.1,17.6,22.1c9.2,5.9,21.8,8.9,37.8,8.9 c18.1,0,31.7-3,40.9-9.1c9.2-6.1,13.8-14.4,13.8-25c0-7-2.3-12.8-7-17.4c-4.7-4.6-11.7-8.7-21.1-12.2c-9.4-3.5-23.4-7.7-42-12.6 c-30.5-7.2-52.8-16.8-67-28.7c-14.2-11.9-21.3-28.9-21.3-51.2c0-15,4.1-28.4,12.4-40.1c8.3-11.8,20.1-21,35.5-27.7 c15.4-6.7,33.3-10.1,53.7-10.1c21.4,0,40,3.7,55.6,11.2c15.6,7.5,27.5,16.9,35.7,28.1c8.1,11.2,12.5,22.4,13,33.5 c0,2.1-0.8,3.9-2.3,5.6c-1.6,1.7-3.5,2.5-5.8,2.5h-36.8c-5.7,0-9.6-2.3-11.6-7c-1.3-8.3-6.3-15.2-15.1-20.7 c-8.8-5.5-19.6-8.3-32.6-8.3c-14.2,0-25.4,2.7-33.5,8.1c-8.1,5.4-12.2,13.3-12.2,23.6c0,7,2.1,12.8,6.2,17.4 c4.1,4.6,10.6,8.7,19.4,12.2c8.8,3.5,21.6,7.4,38.4,11.8c23,5.2,41.3,11,54.8,17.4c13.6,6.5,23.6,14.6,30,24.4 c6.5,9.8,9.7,22.3,9.7,37.6c0,16.8-4.6,31.3-13.8,43.6c-9.2,12.3-22.1,21.6-38.7,28.1c-16.7,6.5-36,9.7-57.9,9.7 C1505.5,487.8,1485.7,484.3,1469.1,477.4"/> <path class="st1" d="M1067.1,474.7c0,0.4,0.1,0.8,0.1,28.8l55.7-55.7V256.3l-55.7-55.7c0,20.7-0.1,21-0.1,21.4V474.7z"/> <path class="st1" d="M1386.6,318.1c-1.6-70.3-40.4-105.4-116.6-105.4h-94.6c-2.8,0-5.1,0.9-6.8,2.7c-1.7,1.8-2.5,4.1-2.5,7v75.8 l54.6,53.9v-94.4h47.3c21.7,0,37.6,5,47.7,14.9c10.1,9.9,15.4,25.5,15.9,46.7c0.5,15,0.8,24.5,0.8,28.7c0,3.9-0.3,13.6-0.8,29.1 c-0.5,22.2-5.6,38.1-15.1,47.7c-9.6,9.6-25.1,14.3-46.5,14.3h-49.2v-87l-54.6,53.9v68.8c0,2.6,0.9,4.8,2.7,6.6 c1.8,1.8,4,2.7,6.6,2.7h96.5c38.5,0,67-8.6,85.4-25.8c18.5-17.2,28.2-43.8,29.3-80c0.5-15,0.8-24.9,0.8-29.8 C1387.4,343.2,1387.1,333.1,1386.6,318.1"/> </g> </svg>
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/banner-bg.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 2000 500" style="enable-background:new 0 0 2000 500;" xml:space="preserve"> <style type="text/css"> .st0{opacity:5.000000e-02;fill:#6600E3;} .st1{opacity:0.1;fill:#6600E3;} </style> <polygon class="st0" points="81.6,500 138.8,409 11.2,500 "/> <polygon class="st0" points="260.7,215.2 46.3,0 205.1,303.6 "/> <polygon class="st0" points="227.3,345.9 205.1,303.6 138.8,409 "/> <polygon class="st1" points="11.2,500 138.8,409 205.1,303.6 46.3,0 -36.3,0 -36.3,500 "/> </svg>
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/images/Pipeline-FPO-Diagram.svg
<svg id="PIPELINE" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="935.18" height="313" viewBox="0 0 935.18 313"> <metadata><?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.6-c140 79.160451, 2017/05/06-01:08:21 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about=""/> </rdf:RDF> </x:xmpmeta> <?xpacket end="w"?></metadata> <defs> <style> .cls-1, .cls-3, .cls-4 { fill: #fff; } .cls-1 { fill-rule: evenodd; } .cls-2, .cls-5 { font-size: 18px; } .cls-2 { fill: #ffb500; } .cls-2, .cls-3, .cls-5 { text-anchor: middle; } .cls-2, .cls-3 { font-family: OpenSans; font-weight: 600; } .cls-3 { font-size: 22.5px; } .cls-4 { opacity: 0.25; } .cls-5 { fill: #36c9dd; font-family: "Open Sans"; font-weight: 700; text-transform: uppercase; } </style> </defs> <g id="Pipeline_FPO_Diagram" data-name="Pipeline FPO Diagram"> <path id="Rectangle_748_copy_7" data-name="Rectangle 748 copy 7" class="cls-1" d="M4792.1,2373.2h176v72h-176v-72Z" transform="translate(-4032.91 -2250)"/> <text id="Visualization" class="cls-2" transform="translate(847.453 162.708) scale(0.8)">Visualization</text> <text id="In_GPU_Memory" data-name="In GPU Memory" class="cls-3" transform="translate(557.575 282.706) scale(0.8 0.8)">In GPU Memory</text> <g id="APACHE"> <rect id="Rectangle_748_copy_9" data-name="Rectangle 748 copy 9" class="cls-4" x="2.09" y="241" width="933" height="72"/> <image id="Apache_Arrow" data-name="Apache Arrow" x="309.09" y="249" width="138" height="56" xlink:href="data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIoAAAA4CAQAAACIjKiRAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAHdElNRQfiCgkSKgje8nQGAAAMCElEQVRo3t2baZRUxRXH/z0LOA5EAREiKDCAghKDu6zNKIsKGAQPcUMUFAUUEQ4IMlqjoqKoEZEQZACT6JEYl+NC3NDGBVyPJxwTjQ64sDgyMOgMMwPM9suH9/r16+7qnsVJWr2fuqvuq3fvv27dunVvPYVOVFLiSIaYtKQcAYYGW+mXRKxjRNL+HL5nST2wrOPOVOvRvKC8zg7OSdLfjT3AyKRjPMV2Tki1Js0LCpSFJiQBpRjYzmiTngQUKGKuOTLV2jQnKFCayBZcUAAeomUCnqddjs2mbar1aU5QoIhR9YACS+3W4oECN6Van+YFBXYxuh5Q4Px6QPll+BYfKLAvNKkeUHYy1mTE8Tzl49jB/B/rW8wJJmgGmWOaVc+lfMPdTQEFKhmbFBSAVRySBBSA938MLBxBEQD/Mi2aDZJ0XgYeaxh3bPyRpZWxsMTRJD0cby1RdHr+1T9Cg3PUUZJ0gro0FygKKL3hzGkKxLS01SrGRQ0XD8Dk/GjfEs8xjXoi5SQU9H4d3YygZDaCO3Q1+4mlytCV4X6TxXzXnP20k/ERa2EI2+I4dpBn2jVeeoKU8B1rqAMe8KRoSx63mI7mbBZRwB3Gg9x0MkNZzCpW8ceQb/80x5kxLGMF08ygYAaZvAGsNb2YzAqWmeEmy4dBLstYxSOhG0yHsBiXsjceFsb7BO3GDuLJ51s4FxttNkc1GpS1wLNk8B7wvtc6iDqgxhu5xtkHOZrtQA37qAEOcK7Lfzm1ETHMKQRYB/42lpMpSQSYSRVwEIAtdA+/8mKLtZTxO5+oM6xKPx52hSbAXVaOOxoJSSe+AZZILAKKae+296MagE3M4BYqgBCtJXpSzD8YzXHk8hwQIkMyHfgWgAWM42bKzAACvATALu5kDluBavpLEqdSxgFu5ExG8ynwhDfVPGFRyBfOmcN5xar0xZ46adxnHePkRoFyHQATJIZSDVzhtvenGvg33SSJV4Fqxkq04BSyXZ7jOcjnHCGZXABeN44t9DNHkM5rwPcMlyRuBmCaRIA/AJvcERYC++jtChPswGMWazkQutYHywy2xnHs4jLT0rOW4RbfsouFplPDIDGH8CFQFeptMsjkb8BG01qSGEA1cKsr/HQAFoUlM78xg7mBPA6ymxyJeUBNlKVn8AbwpPvEhQAslujFbuAT5nMrea41+bcZLuL7OJUOcomPoztfWazhWX7lcQyz2tNnDYPFDACgiq0U8jl7gDqukyQGUg3c7PJdBECBRAZXssv3phJ6SCwHKugTBcp64AX3+XEA3C9xdpys5Qz2xSmBtbpG+2PkbKFHuNTj2KpVFl3GaE3Yt+Svly1q7JU/rSGg5PeSJGUqRz10rNpJCmgEAUlIkmpdPmd73Supnx7Ukdqo6ZqoeapWreok7ZSUofjDaU3UPyTVqFZSgQYrqFwFNURDtDHmKf5smeeKiOcw7dhstQUv9UAaCy39xfSrHxQWA/vZyNu8zTu8RRGwnc6eT7nL5csDYKrEBgBzjiTRif3soYfEFACu8Y2cyQbgL3GW0psfIssyAQXb8ygV8Yso5M20accCvovj2M0VxvXaJsAwyzLbw6Lki8iksxmYFWkJXe8tEweUvSw0lzGdL4HP6So5XiB0qWljTqGAWorJkczpVAJ7QtPNeK7mUXMyGbyGF+a7oNwnmTTyqOMLM950Nu1NTzPBH4r452tc3GkHDjLRx9HDEs7B87TxOHKt9vQf0zmJnZxINXud/cUVvpfjY0xX19GWeJHGJxznPvMlUO1tEqX0kCTmsy/yWtOHdF4HHnfHHQvAg5JEOvdGxS8hAnbxLqDc4oD8sMy3Kv1COE40ARZYOe5JAsoAPo7O9ZrWvMRmPjY9OIMqYCaz+JRi3sILCjmZlyiikKe4hqd5E/dszVDeYBvf8BbTTEBiIZvJd8c9jY/5hBneGIv4mmKK2cJqv3uOFbDAolA5kz1x2/ChVenJvjHmR82AQyUMSPjONOKTEulkkuEFb9Mksmhros4xBDicLEkyaWRE5pk0WpNNuseVGU6/mwCZZOLbZMimDW1jT/8xFGzPSr8Ber5lug+WeeyM4yiO+BbJDKbQ6ls6q5HkgjK9sc81OzHa4jmqwjGmJNHVeiZ6Dm8zNAPd8DyaChsLCwMBmJlqTCQxitI4hSq40scxO4FviRwV51phubeRkrThfl4kN9WIOMI8bFFoP1eF+81hvGuFJRq4AxbfMjDVujWZzIlWlQ+a33oqd7CGc4X44kn3ABZN2xicau2aSCyzqFPOVOP6eNOKN6yw+YprzHFzFdHWdlaqdWsqJIMos0ByhY/jOiskz0RSztxk9SlLUq1bUyE50xKs78dXBKG99dT8ROTUbAb6smW+xWVyUq1dEyjYhjX8EA9J6DpP3WyuteZXJvjilH6WOKWclaZ706RKMbHcMr9lvoi2dQJf4j8K2DbjSlsV8mdBXGSJZkujFs5MKyRrjVeCZ44lyIdHUq1bUyEZTUk9vuQoS9oR1voycEErJHsatnA4ghy61HMS+f9RsB2P2jbQ0NQwh/kVMy2QFHGJL1cbZEscRwUrGgjJMRRSzj7eNdmpxsMR6O+W+S3hIh8km6wL50JvhAB5FispZ1iDZcgPP2ROTzUekjjf4hp9kEjMskKyJlwtNAHyrHHJww2WId1X8h/f0Kf+d5CcF5UXd6gyKpt/jPVUXMChHkeu1ZcUma4NliLIfkrcXPFSrzWbu1lMGpfzKn81h3I4d3MvmUzhVQqcUJEAU1jHel5mspNFMdms5pnwpJLGPYwP52wYwjPJr0Aq2I4VlmxbRWhKmMMcxmwLJFH3VQjyZRxHGUtMg28PmHSeBJ41WWwEPgwfJ+hPLbDFsULTBSeh6L7NdDMBxvI2ByniK4qp4i3OksxhfA1UmWMliRFUU+dUdejLPuD25POz2jK/uyOewrThI+vC8QpOpHO7xUpKE2farHIM4wAwV+J6oCr8tJtkqmEJN3KNacn51AEHeJgbmWTSGUAF8BQtSKMVHwDf0juc9zdjJNLcWzRvkubWAjHJzl+MtMQlJfzexzHHCsnqcGLQBMijzsLRyDOOEzSawRIdKQHuc9udxPVrHp8DysvefyfF4ZZi3AzybIlR1AFTJFrzBQDf0iW8oZheiQUZY/El5Vzg4+jqFqyjaaXPlwy1QrKzcVe0TAs+AmqNUzH+E/C+E624JY5IqtlZPm5lx7TkU4BwQsOtIC6V6EwRsFziRCoBqCZoWrMD+MokiITSQhP0mGIvY1VumB541hN0ljbp1zEcOzUuf2qgMjyPKoi7/FOqB/JPvW1bowzldPWVVJ1fwEu8qFxJJ8lJaDlJ5kiFr1pIct+vTDk3YcL1zX2SpEOkwA6tEOoraaqyNizRF8rQXB2rTpIKbjuQyE5CcfP7bVRpOscS3xJ9R5vn4vp/oAkxBvMsb/qCTt7y8RLXjKYOL2tjDnXCSdPf/X8pALdIEn0oo5iJfAdmCPcB5SwDiumZSI401cW07NZVgef8koYruD56KP/VqP/VcRzLAx80HhT1kfSRhmigBmqQ+ut5ST0VVLiWHLHGQxTw/d+vdyUp371EkX+apEq9J0kq1D/VXo+qg8q0We+oVtmaJukVbUk8O+uj5qWM82L6429HLo6tz8TdjtzqXZNqFPGp4xS9/07Z9DHPp3iHDdeBRirYw6kBNnASrRjJNmAt7ibgJdc/M5m04TP337XJBIm+Rzsxrj8alO2MrOcebQl3Nf5SlyTRhwN8TddIi+lNFVBqjuYMavCVzBkJwOUeZzoTeY8aqiiihjIeNJ4XpDtlQC0LJPeGFBQ65dX6QfnOdj8/BpTzrGNEQNlL36YAIkl0ZAzH+1tMOkMZyxjTmlaMYqyvWHo4oxgXW7BnBDO4gUlOndnXPoQxDHOqiGRxDmMT+5NoUHaGL9ElAeX+BHfzI6D8Mr778b7iSPDNjw+UxSS4i+qBUtg0X/KTI9YDpaHLEvY7oHzDqHq+99nLXaZjqrVpLlBeZwdDk/Q7X4YlzYbwNHt+xA3rnx7xQjJIJHLYy90mkJRnHQtTrUfzgnJhPf3dmU3Sy/4EuKNpm/BPlur7fIRM6vn+gUCiz+h+rvRfRQb1lS1AjlYAAAAASUVORK5CYII="/> </g> <path id="Rectangle_748_copy_6" data-name="Rectangle 748 copy 6" class="cls-1" d="M4602.5,2373.2h176v72h-176v-72Z" transform="translate(-4032.91 -2250)"/> <text id="Deep_Learning_" data-name="Deep Learning " class="cls-2" transform="translate(657.848 162.708) scale(0.8)">Deep Learning</text> <path id="Rectangle_748_copy_5" data-name="Rectangle 748 copy 5" class="cls-1" d="M4413.7,2373.2h176v72h-176v-72Z" transform="translate(-4032.91 -2250)"/> <text id="cuGraph_Graph_Analytics_" data-name="cuGraph Graph Analytics " class="cls-2" transform="translate(469.055 152.709) scale(0.8)">cuGraph<tspan dy="21.6">Graph Analytics</tspan></text> <path id="Rectangle_748_copy_4" data-name="Rectangle 748 copy 4" class="cls-1" d="M4223.3,2373.2h176v72h-176v-72Z" transform="translate(-4032.91 -2250)"/> <text id="cuML_Machine_Learning_" data-name="cuML Machine Learning " class="cls-2" transform="translate(278.649 152.709) scale(0.8)">cuML<tspan dy="21.6">Machine Learning</tspan></text> <path id="Rectangle_748_copy_3" data-name="Rectangle 748 copy 3" class="cls-1" d="M4032.9,2373.2h176v72h-176v-72Z" transform="translate(-4032.91 -2250)"/> <text id="cuDF_Analytics" data-name="cuDF Analytics" class="cls-2" transform="translate(88.254 152.709) scale(0.8)">cuDF<tspan dy="21.6">Analytics</tspan></text> <path class="cls-1" d="M4100.9,2294.8h232v50.4h-232v-50.4Z" transform="translate(-4032.91 -2250)"/> <text id="Data_Preparation" data-name="Data Preparation" class="cls-5" transform="translate(216.248 74.303) scale(0.8)">Data Preparation</text> <path id="Rectangle_748_copy" data-name="Rectangle 748 copy" class="cls-1" d="M4380.9,2294.8h232v50.4h-232v-50.4Z" transform="translate(-4032.91 -2250)"/> <text id="Model_Training_" data-name="Model Training " class="cls-5" transform="translate(496.257 74.303) scale(0.8)">Model Training</text> <path class="cls-1" d="M4341.53,2321.96h22.77a7.073,7.073,0,0,1-1.69-3.97c2.49,2.39,5.73,3.64,9.66,4.81a23.74,23.74,0,0,0-9.66,4.81,8.118,8.118,0,0,1,1.73-4.08h-22.81v-1.57Z" transform="translate(-4032.91 -2250)"/> <path id="Rectangle_748_copy_2" data-name="Rectangle 748 copy 2" class="cls-1" d="M4660.9,2294.8h232v50.4h-232v-50.4Z" transform="translate(-4032.91 -2250)"/> <text id="Visualization-2" data-name="Visualization" class="cls-5" transform="translate(776.255 74.303) scale(0.8)">Visualization</text> <path id="Shape_750_copy" data-name="Shape 750 copy" class="cls-1" d="M4621.54,2321.96h22.76a7.073,7.073,0,0,1-1.69-3.97c2.49,2.39,5.74,3.64,9.66,4.81a23.8,23.8,0,0,0-9.66,4.81,8.118,8.118,0,0,1,1.73-4.08h-22.8v-1.57Z" transform="translate(-4032.91 -2250)"/> <g id="Double_Arrow" data-name="Double Arrow"> <path id="Shape_750_copy_3" data-name="Shape 750 copy 3" class="cls-1" d="M4500.96,2481.51v-22.62a7.073,7.073,0,0,1-3.97,1.69c2.39-2.48,3.64-5.7,4.81-9.6a23.613,23.613,0,0,0,4.81,9.6,8.275,8.275,0,0,1-4.08-1.72v22.65h-1.57Z" transform="translate(-4032.91 -2250)"/> <path id="Shape_750_copy_4" data-name="Shape 750 copy 4" class="cls-1" d="M4501.12,2454.21v22.82a7.52,7.52,0,0,0-4.13-1.7c2.49,2.5,3.79,5.75,5.01,9.69a23.7,23.7,0,0,1,5.01-9.69,8.713,8.713,0,0,0-4.24,1.74v-22.86h-1.65Z" transform="translate(-4032.91 -2250)"/> </g> <g id="Double_Arrow_copy" data-name="Double Arrow copy"> <path id="Shape_750_copy_3-2" data-name="Shape 750 copy 3" class="cls-1" d="M4689.96,2481.51v-22.62a7.073,7.073,0,0,1-3.97,1.69c2.39-2.48,3.64-5.7,4.81-9.6a23.613,23.613,0,0,0,4.81,9.6,8.275,8.275,0,0,1-4.08-1.72v22.65h-1.57Z" transform="translate(-4032.91 -2250)"/> <path id="Shape_750_copy_4-2" data-name="Shape 750 copy 4" class="cls-1" d="M4690.12,2454.21v22.82a7.52,7.52,0,0,0-4.13-1.7c2.49,2.5,3.79,5.75,5.01,9.69a23.7,23.7,0,0,1,5.01-9.69,8.781,8.781,0,0,0-4.25,1.74v-22.86h-1.64Z" transform="translate(-4032.91 -2250)"/> </g> <g id="Double_Arrow_copy_2" data-name="Double Arrow copy 2"> <path id="Shape_750_copy_3-3" data-name="Shape 750 copy 3" class="cls-1" d="M4878.96,2481.51v-22.62a7.073,7.073,0,0,1-3.97,1.69c2.39-2.48,3.64-5.7,4.81-9.6a23.613,23.613,0,0,0,4.81,9.6,8.275,8.275,0,0,1-4.08-1.72v22.65h-1.57Z" transform="translate(-4032.91 -2250)"/> <path id="Shape_750_copy_4-3" data-name="Shape 750 copy 4" class="cls-1" d="M4879.12,2454.21v22.82a7.52,7.52,0,0,0-4.13-1.7c2.5,2.5,3.79,5.75,5.01,9.69a23.7,23.7,0,0,1,5.01-9.69,8.713,8.713,0,0,0-4.24,1.74v-22.86h-1.65Z" transform="translate(-4032.91 -2250)"/> </g> <g id="Double_Arrow_copy_3" data-name="Double Arrow copy 3"> <path id="Shape_750_copy_3-4" data-name="Shape 750 copy 3" class="cls-1" d="M4121.96,2481.51v-22.62a7.073,7.073,0,0,1-3.97,1.69c2.39-2.48,3.64-5.7,4.81-9.6a23.613,23.613,0,0,0,4.81,9.6,8.275,8.275,0,0,1-4.08-1.72v22.65h-1.57Z" transform="translate(-4032.91 -2250)"/> <path id="Shape_750_copy_4-4" data-name="Shape 750 copy 4" class="cls-1" d="M4122.12,2454.21v22.82a7.52,7.52,0,0,0-4.13-1.7c2.49,2.5,3.79,5.75,5.01,9.69a23.7,23.7,0,0,1,5.01-9.69,8.781,8.781,0,0,0-4.25,1.74v-22.86h-1.64Z" transform="translate(-4032.91 -2250)"/> </g> <g id="Double_Arrow_copy_3-2" data-name="Double Arrow copy 3"> <path id="Shape_750_copy_3-5" data-name="Shape 750 copy 3" class="cls-1" d="M4310.96,2481.51v-22.62a7.073,7.073,0,0,1-3.97,1.69c2.39-2.48,3.64-5.7,4.81-9.6a23.613,23.613,0,0,0,4.81,9.6,8.275,8.275,0,0,1-4.08-1.72v22.65h-1.57Z" transform="translate(-4032.91 -2250)"/> <path id="Shape_750_copy_4-5" data-name="Shape 750 copy 4" class="cls-1" d="M4311.12,2454.21v22.82a7.52,7.52,0,0,0-4.13-1.7c2.5,2.5,3.79,5.75,5.01,9.69a23.7,23.7,0,0,1,5.01-9.69,8.713,8.713,0,0,0-4.24,1.74v-22.86h-1.65Z" transform="translate(-4032.91 -2250)"/> </g> <path id="Shape_750_copy_2" data-name="Shape 750 copy 2" class="cls-1" d="M4217.74,2250.81v22.51a7.2,7.2,0,0,1,3.97-1.68c-2.39,2.47-3.64,5.67-4.81,9.55a23.466,23.466,0,0,0-4.81-9.55,8.345,8.345,0,0,1,4.08,1.71v-22.54h1.57Z" transform="translate(-4032.91 -2250)"/> <path class="cls-1" d="M4216.1,2251.6V2250h568v1.6h-568Z" transform="translate(-4032.91 -2250)"/> <path class="cls-1" d="M4783.3,2250h1.6v31.2h-1.6V2250Z" transform="translate(-4032.91 -2250)"/> </g> </svg>
0
rapidsai_public_repos/rapids.ai/static/assets
rapidsai_public_repos/rapids.ai/static/assets/images/rapids-logo-whitetxt.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 244 54.4" style="enable-background:new 0 0 244 54.4;" xml:space="preserve"> <style type="text/css"> .st0{fill:#FFFFFF;} </style> <g> <path class="st0" d="M0.5,50.4C0.2,50.1,0,49.7,0,49.3V3.9C0,3.5,0.1,3,0.5,2.7c0.3-0.3,0.8-0.5,1.2-0.5h18c4.8-0.3,9.5,1.1,13.4,4 c3.3,2.8,5.1,7,4.8,11.3c0.1,3-0.7,6-2.4,8.5c-1.7,2.3-4.1,4.1-6.8,5l10.1,17.7c0.1,0.2,0.2,0.5,0.2,0.8c0,0.4-0.2,0.8-0.5,1.1 c-0.3,0.3-0.6,0.4-1,0.4h-6.4c-0.6,0-1.2-0.1-1.7-0.5c-0.4-0.4-0.8-0.8-1.1-1.3l-8.9-16.5H9.8v16.7c0,0.4-0.2,0.9-0.5,1.2 c-0.3,0.3-0.8,0.5-1.3,0.5H1.7C1.2,50.9,0.8,50.8,0.5,50.4z M19.5,24.6c2.2,0.2,4.5-0.5,6.3-1.9c1.5-1.4,2.2-3.4,2.1-5.4 c0.1-2-0.6-4-2.1-5.5c-1.8-1.4-4-2.1-6.3-1.9H9.8v14.6H19.5z M44.4,50.5c-0.3-0.3-0.4-0.7-0.4-1.1l0.1-0.6L60.9,3.9 c0.3-1.1,1.4-1.8,2.5-1.7H71c1.1,0,2.2,0.7,2.5,1.7l16.7,44.9l0.1,0.6c0,0.4-0.2,0.8-0.5,1.1c-0.3,0.3-0.6,0.4-1,0.4h-6.2 c-0.9,0.1-1.7-0.5-2-1.3l-3.2-8.4H56.9l-3.2,8.4c-0.3,0.8-1.1,1.4-2,1.3h-6.2C45.1,50.9,44.7,50.8,44.4,50.5L44.4,50.5z M59.3,33.1 h15.7l-7.9-21.4L59.3,33.1z M95.7,50.4c-0.3-0.3-0.5-0.7-0.5-1.2V3.9c0-0.5,0.1-0.9,0.5-1.3c0.3-0.3,0.8-0.5,1.2-0.5h18.7 c4.7-0.3,9.4,1.1,13.2,4c3.3,2.9,5.1,7.2,4.8,11.6c0.3,4.3-1.5,8.6-4.8,11.4c-3.8,2.8-8.5,4.1-13.2,3.9h-10.2v16.3 c0,0.5-0.2,0.9-0.5,1.2c-0.3,0.3-0.8,0.5-1.3,0.4h-6.7C96.5,50.9,96,50.8,95.7,50.4L95.7,50.4z M115.2,25.2 c2.2,0.2,4.4-0.5,6.2-1.9c1.5-1.5,2.3-3.5,2.1-5.6c0.1-2.1-0.6-4.1-2.1-5.7c-1.7-1.5-4-2.2-6.2-2h-10v15.2H115.2z M213.4,49.7 c-2.6-1-5-2.7-6.8-4.9c-1.5-1.9-2.3-4.3-2.4-6.7c0-0.4,0.2-0.7,0.4-1c0.3-0.3,0.6-0.5,1-0.4h6.3c0.4,0,0.9,0.1,1.3,0.3 c0.4,0.3,0.7,0.6,0.9,1c0.5,1.7,1.7,3.1,3.2,4c2.1,1.2,4.4,1.7,6.8,1.6c2.6,0.2,5.1-0.4,7.3-1.6c1.6-0.9,2.5-2.6,2.5-4.5 c0-1.2-0.4-2.3-1.3-3.2c-1.1-1-2.4-1.7-3.8-2.2c-1.7-0.6-4.2-1.4-7.6-2.3c-4.3-0.8-8.5-2.6-12-5.1c-2.6-2.3-4-5.7-3.8-9.2 c0-2.6,0.8-5.1,2.2-7.2c1.6-2.2,3.8-3.9,6.4-5c3.1-1.3,6.3-1.9,9.6-1.8c3.4-0.1,6.9,0.6,10,2c2.5,1.1,4.7,2.9,6.4,5.1 c1.4,1.7,2.2,3.8,2.3,6c0,0.4-0.2,0.7-0.4,1c-0.3,0.3-0.6,0.4-1,0.4h-6.6c-0.9,0.1-1.7-0.4-2.1-1.3c-0.3-1.6-1.3-2.9-2.7-3.7 c-3.7-2-8.2-2-11.9,0c-1.4,0.9-2.3,2.5-2.2,4.2c0,1.1,0.4,2.3,1.1,3.1c1,1,2.2,1.7,3.5,2.2c2.3,0.8,4.6,1.6,6.9,2.1 c3.4,0.7,6.7,1.7,9.9,3.1c2.2,0.9,4,2.5,5.4,4.4c1.2,2,1.8,4.4,1.7,6.7c0.1,2.8-0.8,5.6-2.5,7.8c-1.8,2.3-4.2,4.1-7,5.1 c-3.3,1.2-6.9,1.8-10.4,1.7C220.5,51.7,216.8,51.1,213.4,49.7L213.4,49.7z M141.2,49.3c0,0.1,0,0.1,0,5.2l10-10V10l-10-10 c0,3.7,0,3.8,0,3.8V49.3z M198.6,21.1c-0.3-12.6-7.3-18.9-21-18.9h-17c-0.5,0-0.9,0.2-1.2,0.5C159.1,3,159,3.5,159,3.9v13.6 l9.8,9.7v-17h8.5c5.4-0.9,10.4,2.7,11.4,8c0.2,1,0.2,2,0,3.1c0.1,2.7,0.1,4.4,0.1,5.2c0,0.7,0,2.4-0.1,5.2c0.2,3.1-0.8,6.2-2.7,8.6 c-2.3,1.9-5.3,2.9-8.4,2.6h-8.8V27.2l-9.8,9.7v12.4c0,0.4,0.2,0.9,0.5,1.2c0.3,0.3,0.7,0.5,1.2,0.5H178c6.9,0,12-1.5,15.4-4.6 c3.3-3.1,5.1-7.9,5.3-14.4c0.1-2.7,0.1-4.5,0.1-5.4C198.7,25.6,198.7,23.8,198.6,21.1L198.6,21.1z"/> </g> </svg>
0
rapidsai_public_repos/rapids.ai/static/assets
rapidsai_public_repos/rapids.ai/static/assets/images/RAPIDS-logo-purple.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1920 704" style="enable-background:new 0 0 1920 704;" xml:space="preserve"> <style type="text/css"> .st0{fill:#7300FF;} </style> <g> <path class="st0" d="M389.7,337.5c15.5,0,27.1-3.4,34.9-10.3c7.8-6.8,11.6-16.9,11.6-30c0-13.2-3.9-23.3-11.6-30.4 c-7.8-7.1-19.4-10.7-34.9-10.7h-53.9v81.4H389.7z M284,481.2c-1.8-1.8-2.7-4-2.7-6.6V222.4c0-2.8,0.8-5.2,2.5-7 c1.7-1.8,3.9-2.7,6.8-2.7h100.4c31.8,0,56.6,7.4,74.6,22.1c18,14.7,26.9,35.7,26.9,62.8c0,18.9-4.5,34.7-13.6,47.5 c-9,12.8-21.7,22-38,27.7l56.2,98.8c0.8,1.5,1.2,3,1.2,4.3c0,2.3-0.8,4.3-2.5,5.8c-1.7,1.5-3.6,2.3-5.6,2.3h-35.7 c-4.1,0-7.4-1-9.7-2.9c-2.3-1.9-4.4-4.5-6.2-7.6L389,381.7h-53.1v93c0,2.6-0.9,4.8-2.7,6.6c-1.8,1.8-4.1,2.7-7,2.7h-35.7 C288,484,285.8,483.1,284,481.2"/> <path class="st0" d="M611.5,384.8h87.6l-43.8-119.4L611.5,384.8z M528.6,481.6c-1.6-1.6-2.3-3.5-2.3-5.8l0.8-3.5l93-249.9 c2.6-6.5,7.2-9.7,13.9-9.7h42.6c6.7,0,11.4,3.2,14,9.7l93,249.9l0.8,3.5c0,2.3-0.8,4.3-2.5,5.8c-1.7,1.5-3.6,2.3-5.6,2.3h-34.5 c-5.4,0-9.2-2.5-11.2-7.4l-17.8-46.9H597.9l-17.8,46.9c-2.1,4.9-5.8,7.4-11.2,7.4h-34.5C532,484,530.1,483.2,528.6,481.6"/> <path class="st0" d="M922.6,340.6c15,0,26.4-3.5,34.3-10.7c7.9-7.1,11.8-17.5,11.8-31.2c0-13.4-3.8-23.9-11.4-31.4 c-7.6-7.5-19.2-11.2-34.7-11.2h-55.8v84.5H922.6z M814.1,481.2c-1.8-1.8-2.7-4-2.7-6.6V222.4c0-2.8,0.8-5.2,2.5-7 c1.7-1.8,3.9-2.7,6.8-2.7h103.9c31.3,0,55.8,7.4,73.6,22.1c17.8,14.7,26.7,36.2,26.7,64.3c0,27.9-8.9,49-26.7,63.4 c-17.8,14.3-42.4,21.5-73.6,21.5h-57v90.7c0,2.8-0.9,5.1-2.7,6.8c-1.8,1.7-4.1,2.5-7,2.5h-37.2C818.1,484,815.9,483.1,814.1,481.2" /> <path class="st0" d="M1469.1,477.4c-16.5-7-29.1-16.1-37.6-27.5c-8.5-11.4-13-23.8-13.6-37.2c0-2.1,0.8-3.9,2.3-5.6 c1.5-1.7,3.5-2.5,5.8-2.5h35.3c2.8,0,5.2,0.7,7,1.9c1.8,1.3,3.5,3.1,5,5.4c2.6,8.8,8.5,16.1,17.6,22.1c9.2,5.9,21.8,8.9,37.8,8.9 c18.1,0,31.7-3,40.9-9.1c9.2-6.1,13.8-14.4,13.8-25c0-7-2.3-12.8-7-17.4c-4.7-4.6-11.7-8.7-21.1-12.2c-9.4-3.5-23.4-7.7-42-12.6 c-30.5-7.2-52.8-16.8-67-28.7c-14.2-11.9-21.3-28.9-21.3-51.2c0-15,4.1-28.4,12.4-40.1c8.3-11.8,20.1-21,35.5-27.7 c15.4-6.7,33.3-10.1,53.7-10.1c21.4,0,40,3.7,55.6,11.2c15.6,7.5,27.5,16.9,35.7,28.1c8.1,11.2,12.5,22.4,13,33.5 c0,2.1-0.8,3.9-2.3,5.6c-1.6,1.7-3.5,2.5-5.8,2.5h-36.8c-5.7,0-9.6-2.3-11.6-7c-1.3-8.3-6.3-15.2-15.1-20.7 c-8.8-5.5-19.6-8.3-32.6-8.3c-14.2,0-25.4,2.7-33.5,8.1c-8.1,5.4-12.2,13.3-12.2,23.6c0,7,2.1,12.8,6.2,17.4 c4.1,4.6,10.6,8.7,19.4,12.2c8.8,3.5,21.6,7.4,38.4,11.8c23,5.2,41.3,11,54.8,17.4c13.6,6.5,23.6,14.6,30,24.4 c6.5,9.8,9.7,22.3,9.7,37.6c0,16.8-4.6,31.3-13.8,43.6c-9.2,12.3-22.1,21.6-38.7,28.1c-16.7,6.5-36,9.7-57.9,9.7 C1505.5,487.8,1485.7,484.3,1469.1,477.4"/> <path class="st0" d="M1067.1,474.7c0,0.4,0.1,0.8,0.1,28.8l55.7-55.7V256.3l-55.7-55.7c0,20.7-0.1,21-0.1,21.4V474.7z"/> <path class="st0" d="M1386.6,318.1c-1.6-70.3-40.4-105.4-116.6-105.4h-94.6c-2.8,0-5.1,0.9-6.8,2.7c-1.7,1.8-2.5,4.1-2.5,7v75.8 l54.6,53.9v-94.4h47.3c21.7,0,37.6,5,47.7,14.9c10.1,9.9,15.4,25.5,15.9,46.7c0.5,15,0.8,24.5,0.8,28.7c0,3.9-0.3,13.6-0.8,29.1 c-0.5,22.2-5.6,38.1-15.1,47.7c-9.6,9.6-25.1,14.3-46.5,14.3h-49.2v-87l-54.6,53.9v68.8c0,2.6,0.9,4.8,2.7,6.6 c1.8,1.8,4,2.7,6.6,2.7h96.5c38.5,0,67-8.6,85.4-25.8c18.5-17.2,28.2-43.8,29.3-80c0.5-15,0.8-24.9,0.8-29.8 C1387.4,343.2,1387.1,333.1,1386.6,318.1"/> </g> </svg>
0
rapidsai_public_repos/rapids.ai/static/assets
rapidsai_public_repos/rapids.ai/static/assets/images/header-bg.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1200 370" style="enable-background:new 0 0 1200 370;" xml:space="preserve"> <style type="text/css"> .st0{fill-rule:evenodd;clip-rule:evenodd;fill:#7400FF;} .st1{opacity:0.14;fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;enable-background:new ;} </style> <g id="Rectangle_37_copy_7"> <g> <polygon class="st0" points="0,0 1200,0 1200,370 0,370 "/> </g> </g> <path class="st1" d="M1200,0.9H875.4L734.1,220l175.4,149.1l290.5-1V0.9z"/> <path class="st1" d="M1200,0.9H927L742.3,124.6l167.2,244.5l290.5-1V0.9z"/> </svg>
0
rapidsai_public_repos/rapids.ai/static/assets
rapidsai_public_repos/rapids.ai/static/assets/images/dask-old.svg
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 550 247.95"> <defs> <linearGradient id="linear-gradient" x1="154.55" y1="173.33" x2="242.36" y2="173.33" gradientTransform="translate(-26.62 -73.73) rotate(7.91)" gradientUnits="userSpaceOnUse"> <stop offset="0.01" stop-color="#c7422f"/> <stop offset="0.37" stop-color="#d46e43"/> <stop offset="1" stop-color="#eeb575"/> </linearGradient> <linearGradient id="linear-gradient-2" x1="181.83" y1="171.07" x2="221.39" y2="171.07" gradientTransform="translate(-26.62 -73.73) rotate(7.91)" gradientUnits="userSpaceOnUse"> <stop offset="0.21" stop-color="#cf603b"/> <stop offset="1" stop-color="#eeb575"/> </linearGradient> <linearGradient id="linear-gradient-3" x1="107.2" y1="175.53" x2="204.37" y2="175.53" xlink:href="#linear-gradient-2"/> </defs> <title>Dask</title> <path d="M214.33,85.8h36.1c24.73,0.28,30.29,21.36,30.29,40,0,39.54-20.35,39.14-30.29,39.14h-36.1V85.8Zm34.74,64.52c12.94,0,15.6-11.66,15.6-24.55,0-18.13-6.31-25.38-15.6-25.38h-18.7v49.93h18.7Z" style="fill:#101011"/> <path d="M311.7,86.08h18.46l27.18,78.84h-17L333.87,147H306.31l-6.92,17.88h-17Zm18.18,47.34-9.09-26.87-10,26.87h19Z" style="fill:#101011"/> <path d="M364.71,106.58c0-11.68,4.7-20.91,20.54-20.91,7.19,0,27.91,1.13,38.24,3v11.76s-21.49-.8-35.82-0.8c-5.45,0-6.91,3.45-6.91,7.19v5.89c0,6.07,2.67,6.19,6.91,6.19h20.61c14,0,18.95,8.92,18.95,20v7.75c0,15.95-9.55,19.64-18.95,19.64-6.58,0-35.16-.8-40.53-3.24V151.58s23.47,0.61,37.14.61c4.9,0,6.29-5.82,6.29-5.82v-7c0-4-1.56-5.91-6.29-5.91H384.76c-14.5,0-20.05-6.54-20.05-19.81v-7.1Z" style="fill:#101011"/> <path d="M438.85,86.08h15.56v33.19h8.64l22.75-33.19h18.67l-27.35,40.11,27.35,38.87H485.81l-23-31.67h-8.37v31.67H438.85v-79Z" style="fill:#101011"/> <path d="M192.41,110.26q0.17-1.83.29-3.66a119.55,119.55,0,0,0-12.24-60.92L173.64,32l-3.16,15a109,109,0,0,1-64.2,77.79l-4.69,2,1.78,4.78a107.9,107.9,0,0,1,6.31,48.3A109.44,109.44,0,0,1,104,205.75L100.36,216l10.28-3.38A119.71,119.71,0,0,0,192.41,110.26ZM122.68,196l-5.48,2.79,1.2-6a120.35,120.35,0,0,0,1.75-12,118.87,118.87,0,0,0-4.52-45.89l-0.73-2.41,2.25-1.12A120.24,120.24,0,0,0,173.4,72.22l3.51-8L179,72.7a107.63,107.63,0,0,1,2.69,36.54A108.48,108.48,0,0,1,122.68,196Z" style="fill:url(#linear-gradient)"/> <path d="M166.91,116.14c4.13-9.12,8.42-31.77,8.15-33.46A126,126,0,0,1,160,105.07c-0.85,2.24-1.74,4.47-2.74,6.67h0a108.87,108.87,0,0,1-31.62,40.47q0.85,6.14,1.07,12.36A119.4,119.4,0,0,0,166.91,116.14Z" style="fill:url(#linear-gradient-2)"/> <path d="M104.08,165.48a109,109,0,0,1-30.87,9.17l-6.08.86,3.08-5.31a120.74,120.74,0,0,0,5.54-10.74,118.79,118.79,0,0,0,10.62-44.87l0.09-2.51,2.49-.33a120.18,120.18,0,0,0,54-21.47A102.79,102.79,0,0,0,161.57,56.9a109,109,0,0,1-80.84,45l-5.08.35,0.13,5.1a107.92,107.92,0,0,1-9.72,47.73,109.43,109.43,0,0,1-13.83,22.67l-6.71,8.49,10.82,0.14a119.25,119.25,0,0,0,47.52-9.26A104.21,104.21,0,0,0,104.08,165.48Z" style="fill:url(#linear-gradient-3)"/> </svg>
0
rapidsai_public_repos/rapids.ai/static/assets
rapidsai_public_repos/rapids.ai/static/assets/images/rapids_logo.svg
<?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 23.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1920 704" style="enable-background:new 0 0 1920 704;" xml:space="preserve"> <style type="text/css"> .st0{fill:#7300FF;} .st1{fill:#FFFFFF;} </style> <rect class="st0" width="1920" height="704"/> <g> <path class="st1" d="M389.7,337.5c15.5,0,27.1-3.4,34.9-10.3c7.8-6.8,11.6-16.9,11.6-30c0-13.2-3.9-23.3-11.6-30.4 c-7.8-7.1-19.4-10.7-34.9-10.7h-53.9v81.4H389.7z M284,481.2c-1.8-1.8-2.7-4-2.7-6.6V222.4c0-2.8,0.8-5.2,2.5-7 c1.7-1.8,3.9-2.7,6.8-2.7h100.4c31.8,0,56.6,7.4,74.6,22.1c18,14.7,26.9,35.7,26.9,62.8c0,18.9-4.5,34.7-13.6,47.5 c-9,12.8-21.7,22-38,27.7l56.2,98.8c0.8,1.5,1.2,3,1.2,4.3c0,2.3-0.8,4.3-2.5,5.8c-1.7,1.5-3.6,2.3-5.6,2.3h-35.7 c-4.1,0-7.4-1-9.7-2.9c-2.3-1.9-4.4-4.5-6.2-7.6L389,381.7h-53.1v93c0,2.6-0.9,4.8-2.7,6.6c-1.8,1.8-4.1,2.7-7,2.7h-35.7 C288,484,285.8,483.1,284,481.2"/> <path class="st1" d="M611.5,384.8h87.6l-43.8-119.4L611.5,384.8z M528.6,481.6c-1.6-1.6-2.3-3.5-2.3-5.8l0.8-3.5l93-249.9 c2.6-6.5,7.2-9.7,13.9-9.7h42.6c6.7,0,11.4,3.2,14,9.7l93,249.9l0.8,3.5c0,2.3-0.8,4.3-2.5,5.8c-1.7,1.5-3.6,2.3-5.6,2.3h-34.5 c-5.4,0-9.2-2.5-11.2-7.4l-17.8-46.9H597.9l-17.8,46.9c-2.1,4.9-5.8,7.4-11.2,7.4h-34.5C532,484,530.1,483.2,528.6,481.6"/> <path class="st1" d="M922.6,340.6c15,0,26.4-3.5,34.3-10.7c7.9-7.1,11.8-17.5,11.8-31.2c0-13.4-3.8-23.9-11.4-31.4 c-7.6-7.5-19.2-11.2-34.7-11.2h-55.8v84.5H922.6z M814.1,481.2c-1.8-1.8-2.7-4-2.7-6.6V222.4c0-2.8,0.8-5.2,2.5-7 c1.7-1.8,3.9-2.7,6.8-2.7h103.9c31.3,0,55.8,7.4,73.6,22.1c17.8,14.7,26.7,36.2,26.7,64.3c0,27.9-8.9,49-26.7,63.4 c-17.8,14.3-42.4,21.5-73.6,21.5h-57v90.7c0,2.8-0.9,5.1-2.7,6.8c-1.8,1.7-4.1,2.5-7,2.5h-37.2C818.1,484,815.9,483.1,814.1,481.2" /> <path class="st1" d="M1469.1,477.4c-16.5-7-29.1-16.1-37.6-27.5c-8.5-11.4-13-23.8-13.6-37.2c0-2.1,0.8-3.9,2.3-5.6 c1.5-1.7,3.5-2.5,5.8-2.5h35.3c2.8,0,5.2,0.7,7,1.9c1.8,1.3,3.5,3.1,5,5.4c2.6,8.8,8.5,16.1,17.6,22.1c9.2,5.9,21.8,8.9,37.8,8.9 c18.1,0,31.7-3,40.9-9.1c9.2-6.1,13.8-14.4,13.8-25c0-7-2.3-12.8-7-17.4c-4.7-4.6-11.7-8.7-21.1-12.2c-9.4-3.5-23.4-7.7-42-12.6 c-30.5-7.2-52.8-16.8-67-28.7c-14.2-11.9-21.3-28.9-21.3-51.2c0-15,4.1-28.4,12.4-40.1c8.3-11.8,20.1-21,35.5-27.7 c15.4-6.7,33.3-10.1,53.7-10.1c21.4,0,40,3.7,55.6,11.2c15.6,7.5,27.5,16.9,35.7,28.1c8.1,11.2,12.5,22.4,13,33.5 c0,2.1-0.8,3.9-2.3,5.6c-1.6,1.7-3.5,2.5-5.8,2.5h-36.8c-5.7,0-9.6-2.3-11.6-7c-1.3-8.3-6.3-15.2-15.1-20.7 c-8.8-5.5-19.6-8.3-32.6-8.3c-14.2,0-25.4,2.7-33.5,8.1c-8.1,5.4-12.2,13.3-12.2,23.6c0,7,2.1,12.8,6.2,17.4 c4.1,4.6,10.6,8.7,19.4,12.2c8.8,3.5,21.6,7.4,38.4,11.8c23,5.2,41.3,11,54.8,17.4c13.6,6.5,23.6,14.6,30,24.4 c6.5,9.8,9.7,22.3,9.7,37.6c0,16.8-4.6,31.3-13.8,43.6c-9.2,12.3-22.1,21.6-38.7,28.1c-16.7,6.5-36,9.7-57.9,9.7 C1505.5,487.8,1485.7,484.3,1469.1,477.4"/> <path class="st1" d="M1067.1,474.7c0,0.4,0.1,0.8,0.1,28.8l55.7-55.7V256.3l-55.7-55.7c0,20.7-0.1,21-0.1,21.4V474.7z"/> <path class="st1" d="M1386.6,318.1c-1.6-70.3-40.4-105.4-116.6-105.4h-94.6c-2.8,0-5.1,0.9-6.8,2.7c-1.7,1.8-2.5,4.1-2.5,7v75.8 l54.6,53.9v-94.4h47.3c21.7,0,37.6,5,47.7,14.9c10.1,9.9,15.4,25.5,15.9,46.7c0.5,15,0.8,24.5,0.8,28.7c0,3.9-0.3,13.6-0.8,29.1 c-0.5,22.2-5.6,38.1-15.1,47.7c-9.6,9.6-25.1,14.3-46.5,14.3h-49.2v-87l-54.6,53.9v68.8c0,2.6,0.9,4.8,2.7,6.6 c1.8,1.8,4,2.7,6.6,2.7h96.5c38.5,0,67-8.6,85.4-25.8c18.5-17.2,28.2-43.8,29.3-80c0.5-15,0.8-24.9,0.8-29.8 C1387.4,343.2,1387.1,333.1,1386.6,318.1"/> </g> </svg>
0
rapidsai_public_repos/rapids.ai/static
rapidsai_public_repos/rapids.ai/static/js/main.js
// console.log("NVIDIA GPUs FTW")
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/layouts/index.html
{{- define "main" -}} <!-- Using Index layout --> {{ .Content }} {{ end }}
0
rapidsai_public_repos/rapids.ai
rapidsai_public_repos/rapids.ai/layouts/404.html
{{ define "main"}} <!-- Hero NOTE: match with hero shortcode --> <section class="row hero-rapids-bg mb-5"> <div class="col"> <div class="hero-body text-center"> <img class="hero-img" src="/images/rapids-logo-whitetxt.svg"> <p class="fw-semibold fs-3 lh-xs text-white mb-2"> Page Not Found </p> <button class="button-rapids-teal"><a href="https://www.rapids.ai">Head Back</a></button> </div> <div class="top-slant-container"> <div class="top-slant-up bg-white"></div> </div> </div> </section> <!-- Double Col --> <section class="row section"> <div class="col"> <div class="container"> <h1>Page Not Found...</h1> <div class="row"> <div class="col-md-6 py-3"> <p><strong>Looks like that link, page, or file does not exist. <br> Check the URL again and see if it is correct.</strong> <br> If something is broken, please let us know by <a href="https://github.com/rapidsai/rapids.ai/issues">filing a GitHub issue <i class="fa-solid fa-arrow-up-right"></i> </a> </p> <h2 class="mt-5"><i class="fa-regular fa-joystick"></i> Jump Back In</h2> <p> Even if we do say so ourselves, we have some great <a href="https://docs.rapids.ai/">documentation <i class="fa-solid fa-arrow-up-right"></i></a> </p> <p> Reach out to us on <a href="https://twitter.com/rapidsai"> X/Twitter <i class="fa-solid fa-arrow-up-right"></i> </a> </p> <p> Or just go back <a href="/">home <i class="fa-solid fa-arrow-up-right"></i></a> </p> </div> <div class="col-md-6 py-3"> <img class="image img-half img-center" src="/images/RAPIDS404.gif" alt="404gif" /> </div> </div> </div> </div> </section> {{ end }}
0
rapidsai_public_repos/rapids.ai/layouts
rapidsai_public_repos/rapids.ai/layouts/shortcodes/copy-btn.html
<script> /* Append Code Copy Button */ /* source: https://remarkablemark.org/blog/2021/06/01/add-copy-code-to-clipboard-button-to-jeyll-site/ */ // Code Block must use pre + 'highlight' tag var codeBlocks = document.querySelectorAll('pre.highlight'); codeBlocks.forEach(function (codeBlock) { var copyButton = document.createElement('button'); // checks for white style if(codeBlock.classList.contains('use-white-copy')){ copyButton.className = 'copy-button-white'; } else { copyButton.className = 'copy-button'; } copyButton.type = 'button'; copyButton.ariaLabel = 'Copy code to clipboard'; copyButton.innerText = 'Copy'; codeBlock.append(copyButton); copyButton.addEventListener('click', function () { var code = codeBlock.querySelector('code').innerText.trim(); window.navigator.clipboard.writeText(code); copyButton.innerText = 'Copied'; var fourSeconds = 3000; setTimeout(function () { copyButton.innerText = 'Copy'; }, fourSeconds); }); }); </script>
0
rapidsai_public_repos/rapids.ai/layouts
rapidsai_public_repos/rapids.ai/layouts/shortcodes/open-source.html
<div class="container"> <h2>Open Source</h2> <p>RAPIDS would not be possible without the collaboration of these important open source projects. Click on a logo to learn more: </p> <div class="d-flex flex-wrap justify-content-between mt-5"> <a href="https://arrow.apache.org/" target="_blank" class="img-w100" > <img src="/images/apache-arrow_Color.png" alt="Apache Arrow"></a> <a href="https://dask.org/" target="_blank" class="img-w100"> <img src="/images/dask_logo.png" alt="Dask"> </a> <a href="https://nuclio.io" target="_blank" class="img-w100"> <img src="/images/nuclio-logo.png" alt="nuclio"> </a> <a href="https://numba.pydata.org/" target="_blank" class="img-w100"> <img src="/images/numba_logo.png" alt="Numba"> </a> <a href="https://scikit-learn.org/stable/index.html" target="_blank" class="img-w100"> <img src="/images/scikit-learn_Color.png" alt="scikitlearn"> </a> <a href="https://xgboost.ai/" target="_blank" class="img-w100"> <img src="/images/xgboost_logo.png" alt="XGboost"> </a> </div> </div>
0
rapidsai_public_repos/rapids.ai/layouts
rapidsai_public_repos/rapids.ai/layouts/shortcodes/announcements.html
<!-- Announcements --> <section class="row"> <div class="col"> <div class="hero-announce-container"> {{ if isset .Params "text-1" }} <a href="{{ .Get "link-1" }} " target='_blank' class="hero-announce"> <span class="announce-icon fa-stack"> <i class="fa-solid fa-circle fa-stack-2x"></i> <i class="fa-regular fa-bell fa-stack-1x fa-inverse"></i> </span> <button class="button-rapids-purple"> {{ .Get "text-1" }} </button> </a> {{ end }} {{ if isset .Params "text-2" }} <a href="{{ .Get "link-2" }} " target='_blank' class="hero-announce"> <span class="announce-icon fa-stack"> <i class="fa-solid fa-circle fa-stack-2x"></i> <i class="fa-regular fa-bell fa-stack-1x fa-inverse"></i> </span> <button class="button-rapids-purple"> {{ .Get "text-2" }} </button> </a> {{ end }} {{ if isset .Params "text-3" }} <a href="{{ .Get "link-3" }} " target='_blank' class="hero-announce"> <span class="announce-icon fa-stack"> <i class="fa-solid fa-circle fa-stack-2x"></i> <i class="fa-regular fa-bell fa-stack-1x fa-inverse"></i> </span> <button class="button-rapids-purple"> {{ .Get "text-3" }} </button> </a> {{ end }} </div> </div> </section>
0
rapidsai_public_repos/rapids.ai/layouts
rapidsai_public_repos/rapids.ai/layouts/shortcodes/hero.html
<section class="row hero-rapids-bg mb-5"> <div class="col"> <div class="hero-body text-center"> <img class="hero-img" src="/images/rapids-logo-whitetxt.svg"> <p class="fw-semibold fs-3 lh-xs text-white mb-2"> {{ .Get "hero-text" }} </p> <button class="button-rapids-teal lh-xs"><a href="{{ .Get "button-link" }}">{{ .Get "button-text" }}</a></button> </div> <div class="top-slant-container"> <div class="top-slant-up bg-white"></div> </div> </div> </section>
0