• Joined on 2023-02-16
k8ie pushed to single-frame at k8ie/flamenco 2023-07-07 19:05:50 +02:00
315e0d3fd9 Merge branch 'main' into single-frame
b20ede97ea Shaman: fail unit test when running as root user
7a508c7e6b Manager: perform database integrity check at startup
7f588e6dbc Manager: close database connection on startup errors
2bc6c77e49 Deploy: move old worker executable before overwriting
Compare 85 commits »
k8ie commented on pull request studio/flamenco#104194 2023-07-07 19:05:17 +02:00
WIP: Single-frame job compiler

@dr.sybren No worries ;)

k8ie commented on issue studio/flamenco#104191 2023-05-13 16:56:46 +02:00
Manager build error on ARM64

That error indicates you were still on the main branch?

Indeed, I wrongly configured my PKGBUILD, expecting it to checkout that branch. When manually checking out the branch, it builds as…

k8ie commented on issue studio/flamenco#104191 2023-05-02 21:58:32 +02:00
Manager build error on ARM64

This is enough to build for linux/arm64

That's super cool, I didn't know cross-compiling with Go was that easy!

I tried the build without the web app, but I got the same error as in…

k8ie commented on issue studio/flamenco#104191 2023-05-01 18:30:04 +02:00
Manager build error on ARM64

I think there might be an error in some makefile somewhere:

git.blender.org/flamenco/cmd/addon-packer
# git.blender.org/flamenco/cmd/addon-packer
flag provided but not defined: -Wl,-O1,--so…
k8ie commented on issue studio/flamenco#104191 2023-05-01 17:07:57 +02:00
Manager build error on ARM64

Ok, I just finished trying with Ubuntu, it ends the same way :/

This was with Ubuntu 22.04 and Go go version go1.18.1 linux/arm64.

k8ie commented on issue studio/flamenco#104191 2023-05-01 16:50:30 +02:00
Manager build error on ARM64

Sure thing.

If you already have Docker set up on your system, it's as easy as running docker run --privileged --rm tonistiigi/binfmt --install all. ([Source](https://github.com/tonistiigi/binf

k8ie commented on issue studio/flamenco#104191 2023-05-01 12:09:10 +02:00
Manager build error on ARM64

I had to retest since I didn't note these things.

I tested on two different systems. One x86_64 CPU, but with QEMU User Mode emulation in Docker and one actual aarch64 system (Raspberry Pi…

k8ie pushed to single-frame at k8ie/flamenco 2023-04-04 16:30:42 +02:00
201ad62b83 Fix wrong variable definition
k8ie pushed to single-frame at k8ie/flamenco 2023-04-04 16:25:54 +02:00
89935c5865 More readability
22aedb6c3b Use helper variables for easier readability
Compare 2 commits »
k8ie pushed to single-frame at k8ie/flamenco 2023-04-04 15:55:19 +02:00
87581ebdb4 Replace os with pathlib
k8ie commented on pull request studio/flamenco#104194 2023-04-01 17:41:04 +02:00
WIP: Single-frame job compiler

Alright, I think I'm pretty much done with the implementation of denoising.

There is an issue I ran into though. When combining the Denoising Albedos and Normals, the results are glitchy. …

k8ie pushed to single-frame at k8ie/flamenco 2023-04-01 17:22:13 +02:00
f6e18d53af Final tweaks for denoising
k8ie pushed to single-frame at k8ie/flamenco 2023-04-01 16:39:13 +02:00
adaa1ad0a0 Some more restructuring before implementing denoising
k8ie pushed to single-frame at k8ie/flamenco 2023-04-01 15:42:38 +02:00
c7d5d8fe9a Make the tile placement logic a function
fd3c1ddf98 Rename variable for more readability
Compare 2 commits »
k8ie commented on pull request studio/flamenco#104194 2023-03-30 17:02:32 +02:00
WIP: Single-frame job compiler

Oh, ok, that makes sense, sorry 😅

k8ie pushed to single-frame at k8ie/flamenco 2023-03-29 21:10:20 +02:00
7e245730c5 Show the tile size in the web UI
k8ie pushed to single-frame at k8ie/flamenco 2023-03-29 21:02:21 +02:00
306e4a1fdf Fix merging for percentages without remainders
k8ie commented on pull request studio/flamenco#104194 2023-03-29 18:49:52 +02:00
WIP: Single-frame job compiler

Oh, and looks like the merging doesn't work as expected for some tile sizes (interestingly enough, only the nice ones that fit the image exactly like 50%, 10%, etc.).

  • I guess I'll have…
k8ie commented on pull request studio/flamenco#104194 2023-03-29 18:43:46 +02:00
WIP: Single-frame job compiler

Alright, I finally got the memory usage under control. I still have a few things to do tho.

  • Split the logic for the tiling into a function so that I can use it again for denoising

-…