Acly
Acly
The documentation mentions `ARGOS_TRANSLATE_PACKAGE_DIR` environment variable: https://argos-translate.readthedocs.io/en/latest/source/argostranslate.html#argostranslate.package.get_installed_packages https://github.com/argosopentech/argos-translate/blob/master/argostranslate/package.py#L313 This seems to be a) outdated and b) have a typo. See [settings.py](https://github.com/argosopentech/argos-translate/blob/master/argostranslate/settings.py#L23) where the environment variable is still supposed to be...
`ExecutionList` adds nodes and links recursively. There are 3 recursive calls per node in a chain of nodes, which means you run into recursion limits at around 300 linked nodes...
This PR adds kernels for depthwise 2D convolution (CPU only for now). There is an existing `ggml_conv_2d_dw` based on im2col + mul_mat, but it has high overhead. The approach makes...