Skip to content

Commit

Permalink
Enable librmm download and publishing (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
AyodeAwe authored Jan 23, 2025
1 parent 9a68276 commit eeec916
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions _data/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,18 @@ apis:
# RAPIDS "Libs" - lower-level libraries that are building blocks for creating
# custom tools and integrate with other libraries
libs:
librmm:
name: librmm
path: librmm
desc: 'RAPIDS Memory Manager (RMM) is a central place for all device memory allocations in cuDF (C++ and Python) and other RAPIDS libraries. In addition, it is a replacement allocator for CUDA Device Memory (and CUDA Managed Memory) and a pool allocator to make CUDA device memory allocation / deallocation faster and asynchronous.'
ghlink: https://github.com/rapidsai/rmm
cllink: https://github.com/rapidsai/rmm/blob/main/CHANGELOG.md
hidden: true
versions:
# enable or disable links; 0 = disabled, 1 = enabled
legacy: 1
stable: 1
nightly: 1
libcudf:
name: libcudf
path: libcudf
Expand Down
2 changes: 2 additions & 0 deletions _includes/api-docs.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{% for lib in include.data %}
{% assign api = lib[1] %}
{% if api.hidden != true %}
{% comment %} HACK: below operation returns an array of stable/nightly/legacy values only if they're enabled in docs.yml. see issue #97 {% endcomment %}
{% assign versions = api.versions | sort | where_exp: "item", "item[1] == 1" | join: "" | split: "1" | reverse %}
### {{ api.name }}
{{ api.desc }}
#### DOCS {% for version_name in versions %} {% if api.name == "libucxx" %} **[{{ version_name }} ({{ site.data.releases[version_name].ucxx_version }})](/api/{{ api.path }}/{{ version_name }})** {% else %} **[{{ version_name }} ({{ site.data.releases[version_name].version }})](/api/{{ api.path }}/{{ version_name }})** {% endif %} {% unless forloop.last %}|{% endunless %} {% endfor %}
#### LINKS {% if api.cllink %} **[changelog]({{ api.cllink }}){:target="_blank"}** | {% endif %} **[github]({{ api.ghlink }}){:target="_blank"}**
{: .mb-7 }
{% endif %}
{% endfor %}

0 comments on commit eeec916

Please sign in to comment.