Skip to content

Commit

Permalink
Merge pull request #554 from zachlasiuk/main
Browse files Browse the repository at this point in the history
hiding all non supported packages
  • Loading branch information
zachlasiuk authored Dec 2, 2024
2 parents ad6b746 + 8ddf5b5 commit 42189da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion content/opensource_packages/vllm.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
draft: true
name: vLLM
category: AI/ML
description: vLLM is a fast, straightforward library for LLM inference and serving.
Expand Down
5 changes: 3 additions & 2 deletions themes/arm-design-system-hugo-theme/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
{{ $packages_opensource := .Site.GetPage "/opensource_packages" }}
{{ $packages_commercial := .Site.GetPage "/commercial_packages" }}

{{ $packages_opensource := where (.Site.GetPage "/opensource_packages").Pages "Type" "opensource_packages" }}
{{ $packages_commercial := where (.Site.GetPage "/commercial_packages").Pages "Type" "commercial_packages" }}
{{ $packages_opensource := where (where (.Site.GetPage "/opensource_packages").Pages "Type" "opensource_packages") "Params.works_on_arm" true }}
{{ $packages_commercial := where (where (.Site.GetPage "/commercial_packages").Pages "Type" "commercial_packages") "Params.works_on_arm" true }}

{{ $packages_all := $packages_opensource | union $packages_commercial }}
{{ $packages_alphabetical_order := sort $packages_all ".Params.name" }}

Expand Down

0 comments on commit 42189da

Please sign in to comment.