From 2bf9540676d7b9948b96603974fdc89968453956 Mon Sep 17 00:00:00 2001 From: AJ Schmidt Date: Wed, 11 Dec 2024 16:21:14 +0000 Subject: [PATCH 1/3] update devcontainer --- .devcontainer/devcontainer.Dockerfile | 39 +++++++++++++++++++++++++++ .devcontainer/devcontainer.json | 25 ++++------------- .devcontainer/docker-compose.yaml | 13 +++++++++ 3 files changed, 57 insertions(+), 20 deletions(-) create mode 100644 .devcontainer/devcontainer.Dockerfile create mode 100644 .devcontainer/docker-compose.yaml diff --git a/.devcontainer/devcontainer.Dockerfile b/.devcontainer/devcontainer.Dockerfile new file mode 100644 index 0000000..6592213 --- /dev/null +++ b/.devcontainer/devcontainer.Dockerfile @@ -0,0 +1,39 @@ +FROM mcr.microsoft.com/devcontainers/base:bookworm + +USER vscode + +# Install Go +ENV GOTOOLCHAIN=local +ENV GOPATH /home/vscode/go +ENV PATH $GOPATH/bin:/home/vscode/.local/go/bin:$PATH +COPY --from=golang:bookworm --chown=vscode:vscode /usr/local/go /home/vscode/.local +RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" + +# Install nvm +RUN < Date: Wed, 11 Dec 2024 16:22:16 +0000 Subject: [PATCH 2/3] update medium posts --- data/posts/medium.yaml | 16 ++++++++-------- scripts/get_medium.py | 1 + 2 files changed, 9 insertions(+), 8 deletions(-) mode change 100644 => 100755 scripts/get_medium.py diff --git a/data/posts/medium.yaml b/data/posts/medium.yaml index dc09385..3fa3ec8 100644 --- a/data/posts/medium.yaml +++ b/data/posts/medium.yaml @@ -1,6 +1,14 @@ # # This file was automatically generated by "get_medium.py" # +- date: Tue, 27 Aug 2024 20:19:38 GMT + link: https://medium.com/rapids-ai/rapids-24-08-better-scalability-performance-and-cpu-gpu-interoperability-f88086386da6 + poster: Manas Singh + text: "RAPIDS 24.08 is now available with significant updates geared towards processing\ + \ larger workloads and seamless CPU/GPU interoperability. Read on for more\_details!\ + \ cuDF\u2019s pandas accelerator mode\u200A\u2014\u200Athe zero-code-change accelerator\ + \ for pandas workflows\u200A\u2014\u200Acan now speed u..." + title: 'RAPIDS 24.08: Better scalability, performance, and CPU/GPU interoperability' - date: Wed, 24 Apr 2024 19:12:31 GMT link: https://medium.com/rapids-ai/rapids-24-04-release-c11cf44c3e23 poster: Nick Becker @@ -73,11 +81,3 @@ 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 diff --git a/scripts/get_medium.py b/scripts/get_medium.py old mode 100644 new mode 100755 index efe2a46..d561eb6 --- a/scripts/get_medium.py +++ b/scripts/get_medium.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 import requests import xmltodict import yaml From ba4bc44de786f75c5042b120537fe31844c69e15 Mon Sep 17 00:00:00 2001 From: AJ Schmidt Date: Wed, 11 Dec 2024 17:21:43 +0000 Subject: [PATCH 3/3] fix indentation --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 06412f5..3c6b7f1 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,4 +5,4 @@ "workspaceFolder": "/workspace/rapids.ai", "forwardPorts": [1313], "postCreateCommand": "./scripts/devcontainer-init.sh" - } +}