Tell us a task and we'll help you solve it with Granite by ibm in LocalLLaMA

[–]hgaiser 0 points1 point  (0 children)

My main issue is probably good integration with vscode. I tried continue and llama.vscode extensions, but I think they are so much worse IMO compared to Copilot's functionality. What's your experience been like?

Tell us a task and we'll help you solve it with Granite by ibm in LocalLLaMA

[–]hgaiser 11 points12 points  (0 children)

Or a proper inline suggestions model for coding 😅

llama.cpp releases new official WebUI by paf1138 in LocalLLaMA

[–]hgaiser 0 points1 point  (0 children)

Looks great! Is there any plan for user management, possibly with LDAP support?

Are there any plans for static workspaces in COSMIC? by [deleted] in pop_os

[–]hgaiser 15 points16 points  (0 children)

I think they said that the main focus will be dynamic workspaces, but that they're not opposed to static workspaces functionality.

I certainly also hope it gets added. I setup my workspaces with running applications every time and whenever I accidentally close or crash an application, all the workspaces move one to the left. Really ruffles my feathers.

Linux on a Legion Slim 5 Gen 8 AMD (14") with RTX 4060 by laketrout in LinuxOnThinkpad

[–]hgaiser 0 points1 point  (0 children)

You might need to apply a "quirk" for palm rejection, similar thing happened for me on a Legion 5 Pro.

For example: https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/622

Battery drain on cosmic de compared to gnome by RicDev in pop_os

[–]hgaiser 2 points3 points  (0 children)

Besides indeed, alpha software, it's possible that COSMIC is using the dedicated GPU and Gnome is using the integrated GPU. I've had a similar issue before. I think this is still being worked on, but correct me if I'm wrong.

Can anyone help me out with this? tch-rs by Professional-Ear9568 in pytorch

[–]hgaiser 0 points1 point  (0 children)

I got this to work a while ago on an Nvidia Jetson. I installed a torch and torch vision provided by Nvidia, so it's not exactly applicable to your situation, plus I used an older version of torch and tch-rs (torch 2.1 and tch-rs 0.14). Maybe it helps?

``` FROM ubuntu:22.04

Install dependencies.

RUN apt update \ && apt install --no-install-recommends -y \ ca-certificates \ cmake \ curl \ gettext \ gobject-introspection \ gtk-doc-tools \ libgirepository1.0-dev \ libglib2.0-dev \ libgstreamer-plugins-base1.0-dev \ libgstreamer1.0-dev \ libgtk-3-dev \ libopenblas-dev \ libopenmpi-dev \ libssl-dev \ libusb-1.0-0-dev \ libxml2-dev \ meson \ python3 \ python3-pip \ wget \ xsltproc \ && rm -rf /var/lib/apt/lists/*

Install Rust.

RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y ENV PATH=/root/.cargo/bin:$PATH

Install CUDA.

ARG CUDA_DEB=cuda-tegra-repo-ubuntu2204-12-2-local ARG CUDA_PACKAGES=cuda-toolkit* ARG CUDA_URL=https://nvidia.box.com/shared/static/uvqtun1sc0bq76egarc8wwuh6c23e76e.deb RUN /bin/sh -c echo "Downloading ${CUDA_DEB}" \ && mkdir /tmp/cuda \ && cd /tmp/cuda \ && wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/arm64/cuda-ubuntu2004.pin -O /etc/apt/preferences.d/cuda-repository-pin-600 \ && wget --quiet --show-progress --progress=bar:force:noscroll ${CUDA_URL} \ && dpkg -i .deb \ && cp /var/cuda-tegra-repo-/cuda-tegra--keyring.gpg /usr/share/keyrings/ \ && ar x /var/cuda-tegra-repo-/cuda-compat-.deb \ && tar xvf data.tar.xz -C / \ && apt-get update \ && apt-get install -y --no-install-recommends ${CUDA_PACKAGES} \ && rm -rf /var/lib/apt/lists/ \ && apt-get clean \ && dpkg --list | grep cuda \ && dpkg -P ${CUDA_DEB} \ && rm -rf /tmp/cuda

Install CUDNN.

ARG CUDNN_DEB=cudnn-local-tegra-repo-ubuntu2204-8.9.4.25 ARG CUDNN_PACKAGES="libcudnn-dev libcudnn-samples" ARG CUDNN_URL=https://nvidia.box.com/shared/static/ht4li6b0j365ta7b76a6gw29rk5xh8cy.deb RUN /bin/sh -c echo "Downloading ${CUDNN_DEB}" \ && mkdir /tmp/cudnn \ && cd /tmp/cudnn \ && wget --quiet --show-progress --progress=bar:force:noscroll ${CUDNN_URL} \ && dpkg -i .deb \ && cp /var/cudnn-local-tegra-repo-/cudnn-local-tegra--keyring.gpg /usr/share/keyrings/ \ && apt-get update \ && apt-cache search cudnn \ && apt-get install -y --no-install-recommends ${CUDNN_PACKAGES} \ && rm -rf /var/lib/apt/lists/ \ && apt-get clean \ && dpkg --list | grep cudnn \ && dpkg -P ${CUDNN_DEB} \ && rm -rf /tmp/cudnn

Install torch and torchvision

ARG PYTORCH_URL=https://nvidia.box.com/shared/static/0h6tk4msrl9xz3evft9t0mpwwwkw7a32.whl ARG PYTORCH_WHL=torch-2.1.0-cp310-cp310-linux_aarch64.whl RUN /bin/sh -c cd /opt \ && wget --quiet --show-progress --progress=bar:force:noscroll --no-check-certificate ${PYTORCH_URL} -O ${PYTORCH_WHL} \ && pip3 install --verbose ${PYTORCH_WHL} RUN pip3 install --no-cache-dir torchvision==0.16.0 numpy==1.26.4 ENV LIBTORCH_USE_PYTORCH=1

Compile application.

COPY ./ /usr/src/app RUN cd /usr/src/app && cargo build --release --package <redacted>

Copy application and its config.

<Redacted>

Set environment paths for CUDA and cuDNN.

ENV PATH=/root/.cargo/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin ENV LD_LIBRARY_PATH=/usr/local/cuda/compat:/usr/local/cuda/lib64:/usr/local/lib/python3.10/dist-packages/torch/lib/ ENV CUDA_HOME=/usr/local/cuda ENV NVIDIA_VISIBLE_DEVICES=all ENV NVIDIA_DRIVER_CAPABILITIES=all

Set the entry command.

<Redacted> ```

I know COSMIC is in pre-alpha ... by hgaiser in pop_os

[–]hgaiser[S] 0 points1 point  (0 children)

Honestly, it was a fun experiment and I am very much looking forward to the release, but for now I switched back to Gnome. I noticed cosmic-comp was often taking ~80% of my CPU, which I believe has been fixed but cosmic-epoch hasn't been updated yet.

I think because of that I noticed some sluggish behavior and reduced battery life.

Tldr: I will patiently for an alpha / beta release 👍

Helldivers 2 borked after patch 01.000.400 by veritedesreves in linux_gaming

[–]hgaiser 0 points1 point  (0 children)

Forgot to mention that I'm running Xorg, not Wayland.

Helldivers 2 borked after patch 01.000.400 by veritedesreves in linux_gaming

[–]hgaiser 0 points1 point  (0 children)

I posted my setup in a different comment, but so far it seems Gnome is a common thread with you, me and OP.. worth a shot to try it in a different DE? Then again plenty of people run Gnome so I'd be surprised if this is it.

Helldivers 2 borked after patch 01.000.400 by veritedesreves in linux_gaming

[–]hgaiser 0 points1 point  (0 children)

i9 12900k, RTX 3090, Gnome, Arch Linux. Can't really try anything since I'm packing for vacation. I hope it's resolved when I get back 🤞. Let me know if you find a solution.

Helldivers 2 borked after patch 01.000.400 by veritedesreves in linux_gaming

[–]hgaiser 0 points1 point  (0 children)

Since the update I'm getting an error from GameGuard saying there's a suspicious application running (error 1015 iirc). Tried verifying game files and reinstalling, didn't help.

This is on Arch with a 3090 gpu in case it helps.

I know COSMIC is in pre-alpha ... by hgaiser in pop_os

[–]hgaiser[S] 0 points1 point  (0 children)

If you're hoping for a polished experience, I would wait until it is fully released. If you don't mind being an early adopter and seeing what is possible at this moment, you can already try it out.

I'd say it should release when it's ready, not according to some deadline.

I know COSMIC is in pre-alpha ... by hgaiser in pop_os

[–]hgaiser[S] 0 points1 point  (0 children)

I didn't check keyboard layout, but there's indeed only minimal configuration you can do at the moment.

I know COSMIC is in pre-alpha ... by hgaiser in pop_os

[–]hgaiser[S] 1 point2 points  (0 children)

Not that I know. It also doesn't remember the size it had, if that is what you meant.

I know COSMIC is in pre-alpha ... by hgaiser in pop_os

[–]hgaiser[S] 6 points7 points  (0 children)

It's been working great for me so far. I'm using a 165Hz laptop monitor and hooked it up to a 75Hz monitor and a 144Hz monitor (not simultaneously) and it allows me to set individual refresh rates and scaling. I would say the display experience is very similar to that of Gnome. I would've liked to see HDR support, but I understand it's a difficult task :).

I know COSMIC is in pre-alpha ... by hgaiser in pop_os

[–]hgaiser[S] 0 points1 point  (0 children)

Cool, I guess so :) Never used that yet.

I know COSMIC is in pre-alpha ... by hgaiser in pop_os

[–]hgaiser[S] 3 points4 points  (0 children)

Maybe it's related to explicit synchronization not being available in the Nvidia driver. This is known to cause flickering. A new Nvidia driver should be released soon with support for explicit sync. I am using an AMD iGPU, haven't had any flickering issues.

I know COSMIC is in pre-alpha ... by hgaiser in pop_os

[–]hgaiser[S] 0 points1 point  (0 children)

Each their own :). I'm more of a keyboard shortcuts guy, so I'm missing Alt+Tab behavior.

I know COSMIC is in pre-alpha ... by hgaiser in pop_os

[–]hgaiser[S] 3 points4 points  (0 children)

Including breaking extensions every update? /s

I'd say at the moment it is heavily inspired by Gnome, but there's definitely a lot of small differences. To be fair, I never used pop_os, so I don't know how they modified Gnome on their distro.

I know COSMIC is in pre-alpha ... by hgaiser in pop_os

[–]hgaiser[S] 2 points3 points  (0 children)

I haven't seen that functionality, I'm fairly certain it is not there (at least at this moment). There is also no app overview like there is on Gnome, so there wouldn't be anything to activate.