ROCm-docker VS Cgml

Compare ROCm-docker vs Cgml and see what are their differences.

ROCm-docker

Dockerfiles for the various software layers defined in the ROCm software platform (by ROCm)

Cgml

GPU-targeted vendor-agnostic AI library for Windows, and Mistral model implementation. (by Const-me)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
ROCm-docker Cgml
3 22
392 38
1.0% -
5.1 8.6
23 days ago 4 months ago
Shell C++
MIT License GNU Lesser General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

ROCm-docker

Posts with mentions or reviews of ROCm-docker. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-12.
  • AMD Funded a Drop-In CUDA Implementation Built on ROCm: It's Open-Source
    23 projects | news.ycombinator.com | 12 Feb 2024
    https://rocm.docs.amd.com/projects/install-on-linux/en/lates... links to ROCm/ROCm-docker: https://github.com/ROCm/ROCm-docker which is the source of docker.io/rocm/rocm-terminal: https://hub.docker.com/r/rocm/rocm-terminal :

      docker run -it --device=/dev/kfd --device=/dev/dri --group-add video rocm/rocm-terminal
  • Stable Diffusion PR optimizes VRAM, generate 576x1280 images with 6 GB VRAM
    16 projects | news.ycombinator.com | 3 Sep 2022
    Not sure about the 6600, but there is a guide for Linux at least:

    https://m.youtube.com/watch?v=d_CgaHyA_n4&feature=emb_logo

    And this is somehow relevant (possibly), as I kept the link open.

    https://github.com/RadeonOpenCompute/ROCm-docker/issues/38

  • It's working perfectly under Linux
    1 project | /r/KoboldAI | 21 Jun 2021
    As for the Docker image, I suppose you could compile the image (https://hub.docker.com/r/rocm/pytorch) by yourself using the sources (https://github.com/RadeonOpenCompute/ROCm-docker#building-images), which seems to be quite a bit of work. Better, you could just use an older tag of the upstream image, eg. rocm4.1.1_ubuntu18.04_py3.6_pytorch instead of rocm4.2_ubuntu18.04_py3.6_caffe2 or latest . Just make sure your container version matches your host ROCm version.

Cgml

Posts with mentions or reviews of Cgml. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-30.
  • Asynchronous Programming in C#
    9 projects | news.ycombinator.com | 30 Apr 2024
    > Meant no offense

    None taken.

    > computervison project in c#

    Yeah, for CV applications nuget.org is indeed not particularly great. Very few people are using C# for these things, people typically choose something else like Python and OpenCV.

    BTW, same applies to ML libraries, most folks are using Python/Torch/CUDA stack. For that hobby project https://github.com/Const-me/Cgml/ I had to re-implement the entire tech stack in C#/C++/HLSL.

  • Groq CEO: 'We No Longer Sell Hardware'
    2 projects | news.ycombinator.com | 7 Apr 2024
    > If there is a future with this idea, its gotta be just shipping the LLM with game right?

    That might be a nice application for this library of mine: https://github.com/Const-me/Cgml/

    That’s an open source Mistral ML model implementation which runs on GPUs (all of them, not just nVidia), takes 4.5GB on disk, uses under 6GB of VRAM, and optimized for interactive single-user use case. Probably fast enough for that application.

    You wouldn’t want in-game dialogues with the original model though. Game developers would need to finetune, retrain and/or do something else with these weights and/or my implementation.

  • Ask HN: How to get started with local language models?
    6 projects | news.ycombinator.com | 17 Mar 2024
    If you just want to run Mistral on Windows, you could try my port: https://github.com/Const-me/Cgml/tree/master/Mistral/Mistral...

    The setup is relatively easy: install .NET runtime, download 4.5 GB model file from BitTorrent, unpack a small ZIP file and run the EXE.

  • OpenAI postmortem – Unexpected responses from ChatGPT
    1 project | news.ycombinator.com | 22 Feb 2024
    Speaking about random sampling during inference, most ML models are doing it rather inefficiently.

    Here’s a better way: https://github.com/Const-me/Cgml/blob/master/Readme.md#rando...

    My HLSL is easily portable to CUDA, which has `__syncthreads` and `atomicInc` intrinsics.

  • Nvidia's Chat with RTX is a promising AI chatbot that runs locally on your PC
    7 projects | news.ycombinator.com | 13 Feb 2024
  • AMD Funded a Drop-In CUDA Implementation Built on ROCm: It's Open-Source
    23 projects | news.ycombinator.com | 12 Feb 2024
    I did a few times with Direct3D 11 compute shaders. Here’s an open-source example: https://github.com/Const-me/Cgml

    Pretty sure Vulkan gonna work equally well, at the very least there’s an open source DXVK project which implements D3D11 on top of Vulkan.

  • Brave Leo now uses Mixtral 8x7B as default
    7 projects | news.ycombinator.com | 27 Jan 2024
    Here’s an example of a custom 4 bits/weight codec for ML weights:

    https://github.com/Const-me/Cgml/blob/master/Readme.md#bcml1...

    llama.cpp does it slightly differently but still, AFAIK their quantized data formats are conceptually similar to my codec.

  • Efficient LLM inference solution on Intel GPU
    3 projects | news.ycombinator.com | 20 Jan 2024
  • Vcc – The Vulkan Clang Compiler
    9 projects | news.ycombinator.com | 9 Jan 2024
    > the API was high-friction due to the shader language, and the glue between shader and CPU

    Direct3D 11 compute shaders share these things with Vulkan, yet D3D11 is relatively easy to use. For example, see that library which implements ML-targeted compute shaders for C# with minimal friction: https://github.com/Const-me/Cgml The backend implemented in C++ is rather simple, just binds resources and dispatches these shaders.

    I think the main usability issue with Vulkan is API design. Vulkan was only designed with AAA game engines in mind. The developers of these game engines have borderline unlimited budgets, and their requirements are very different from ordinary folks who want to leverage GPU hardware.

  • I made an app that runs Mistral 7B 0.2 LLM locally on iPhone Pros
    12 projects | news.ycombinator.com | 7 Jan 2024
    Minor update https://github.com/Const-me/Cgml/releases/tag/1.1a Can’t edit that comment anymore, too late.

What are some alternatives?

When comparing ROCm-docker and Cgml you can also consider the following projects:

awesome-kubernetes - A curated list for awesome kubernetes sources :ship::tada:

PowerInfer - High-speed Large Language Model Serving on PCs with Consumer-grade GPUs

AiDungeon2-Docker-ROCm - Runs an AIDungeon2 fork in Docker on AMD ROCm hardware.

ollama - Get up and running with Llama 3, Mistral, Gemma, and other large language models.

ZLUDA - CUDA on AMD GPUs

mlx - MLX: An array framework for Apple silicon

stable-diffusion - Go to lstein/stable-diffusion for all the best stuff and a stable release. This repository is my testing ground and it's very likely that I've done something that will break it.

EmotiVoice - EmotiVoice 😊: a Multi-Voice and Prompt-Controlled TTS Engine

docker-elk - The Elastic stack (ELK) powered by Docker and Compose.

llamafile - Distribute and run LLMs with a single file.

Dokku - A docker-powered PaaS that helps you build and manage the lifecycle of applications

clspv - Clspv is a compiler for OpenCL C to Vulkan compute shaders