cap_jmk
cap_jmk
Totally enlightening. Just, as you have the benchmark already written, I would be interested how it goes when we go beyond 10k samples. It's where things get messy usually.
Okay, I see. Maybe putting the loop into @njit() could help? It don't see why it should be slower. Re indexing should be faster than multiplying loads of elements, I...
Good point. I will be happy to provide a c++ implementation. However, I am not sure how to link it. Do you have any resources on it? Then, let's do...
Yes just learned some more C++ and uni politics and would have more time from now to work on it :)
Thank you :)
Probably, but I am new to `Woodpecker`. How can I access the logs?
The error is somewhat logical ```bash agent_from_doc-woodpecker-agent-1 | {"level":"error","error":"rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup woodpecker-server on 127.0.0.11:53: no...
Good idea, yet following the suggestion yields the same error as above. Implementing the docs with `localhost` seems like a step forward but throws ```bash agent_from_doc-woodpecker-agent-1 | {"level":"error","error":"rpc error: code...
It might be some socket or port issue. ```yaml version: '3.5' services: woodpecker-server: image: woodpeckerci/woodpecker-server:v0.15.3 ports: - 80:80 - 443:443 - 9000:9000 networks: - woodpecker volumes: - woodpecker-server-data:/var/lib/woodpecker/ - /var/run/docker.sock:/var/run/docker.sock...
Okay, after fiddling around with the networks, I got that working up to another error message. I am not sure how to solve this yet, but I am sure I...