Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add clarification about guc/huc check tutorial #719

Merged
merged 1 commit into from
Oct 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions docs/general/administration/hardware-acceleration/intel.md
Original file line number Diff line number Diff line change
Expand Up @@ -906,13 +906,20 @@
sudo cat /sys/kernel/debug/dri/0/gt/uc/guc_info
sudo cat /sys/kernel/debug/dri/0/gt/uc/huc_info
```

Check failure on line 909 in docs/general/administration/hardware-acceleration/intel.md

View workflow job for this annotation

GitHub Actions / Lint Markdown

Trailing spaces [Expected: 0 or 2; Actual: 3]
- If you get a `No such file or directory` error when running the last two commands, try querying a `dri` device with a different number, for example `1`:

On very old kernels (4.16-) the last two commands can be like this:
```shell
sudo cat /sys/kernel/debug/dri/1/gt/uc/guc_info
sudo cat /sys/kernel/debug/dri/1/gt/uc/huc_info
```

```shell
sudo cat /sys/kernel/debug/dri/0/i915_guc_load_status
sudo cat /sys/kernel/debug/dri/0/i915_huc_load_status
```
- On very old kernels (4.16-) the last two commands can be like this:

```shell
sudo cat /sys/kernel/debug/dri/0/i915_guc_load_status
sudo cat /sys/kernel/debug/dri/0/i915_huc_load_status
```

5. Now you can safely enable the Intel Low-Power encoder in the Jellyfin dashboard.

Expand Down
Loading