Sören Brunk

Results 29 issues of Sören Brunk

I just tried to run the latest published snapshot, but I'm getting the following error: ``` org.platanios.tensorflow.jni.NotFoundException: dlopen(/var/folders/51/qlrdpg3d5l57rtmtk6qmvg9w0000gn/T/tensorflow_scala_native_libraries422913198322629558/libtensorflow_ops.so, 6): Symbol not found: __ZN10tensorflow14kernel_factory17OpKernelRegistrar12InitInternalEPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewENSt3__110unique_ptrINS0_15OpKernelFactoryENS8_14default_deleteISA_EEEE Referenced from: /var/folders/51/qlrdpg3d5l57rtmtk6qmvg9w0000gn/T/tensorflow_scala_native_libraries422913198322629558/libtensorflow_ops.so Expected in: /private/var/folders/51/qlrdpg3d5l57rtmtk6qmvg9w0000gn/T/tensorflow_scala_native_libraries422913198322629558/libtensorflow_framework.2.dylib in...

### Describe the bug Flytectl 0.6.5, when trying to register serialized task/workflow definitions serialized with flytekit-java/jflyte, crashes with a segfault: ``` panic: runtime error: invalid memory address or nil pointer...

bug
untriaged
flytectl
flytekit-java

As stated in the README > Executing `test` will open several browser windows and close them all before the end of the tests. This behavior seems to cause spawning a...

enhancement

I'm running into a weird issue with the `exec` function where using certain shell operators seem to cause a truncation of the remaining input. I.e. using `&&`, `||` or `;`...

### Motivation: Why do you think this is important? [Intratrask-checkpointing](https://github.com/flyteorg/flyte/issues/709) is a very useful feature for fast recovery if long running tasks such as model training runs fail. However, intratrask-checkpoints...

enhancement
untriaged

There's a new project for [LSP integration in JupyterLab](https://github.com/krassowski/jupyterlab-lsp). It would be interesting to investigate if/how we could get this working with Metals and which features we could use. There's...

enhancement

https://github.com/lckr/jupyterlab-variableInspector is a JupyterLab extension that shows currently used variables and their values. If we're able to access to access the variables in scope somehow in Ammonite, it should be...

Right now there's have a separate repo for the example notebooks at https://github.com/almond-sh/examples. As @alexarchambault suggested on Gitter, it might be better for the validation script to have the examples...

I just gave the `macosx-arm64` PyTorch from the CI build a try just to realize that GPU support via MPS is missing. The reason seems that we need a sdk...

enhancement
help wanted

Currently, we can convert an `Array[Byte]` to a Python [`bytes`](https://docs.python.org/3/library/stdtypes.html#bytearray-objects) or [`bytearray`](https://docs.python.org/3/library/stdtypes.html#bytearray) the following way: ```scala import me.shadaj.scalapy.py.SeqConverters val a = Array.fill(10000000)(1: Byte) me.shadaj.scalapy.py.Dynamic.global.bytes(a.toPythonCopy) ``` This works but is pretty...