Chanjung Kim
Chanjung Kim
## 🐞Describing the bug CoreML crashes in `[MLNeuralNetworkEngine predictionFromFeatures:options:error:]` with `EXC_BAD_ACCESS (code=1, address=0x0)` when the model contains multiple Conv1D layers each followed by a LayerNorm layer. Without the LayerNorm layers...
### Description Changed hard-coded type constants in `PrimitiveTypeNameMap` or `AttributeTypeNameMap` into enums generated by Protobuf, (e.g. `1` -> `TensorProto_DataType_FLOAT`) ### Motivation and Context I was experimenting with ONNX, and found...
I'm using kotlinx-atomicfu 0.22.0. I was having a problem where my program halts at `AtomicRef.getAndUpdate`, and I found that `AtomicRef.compareAndSet` always fails when the value >= 128 on macOS and...
The MOKO resources version of `painterResource` is much slower than its JetBrains counterpart. For example, ```kotlin LazyVerticalGrid { repeat(100) { item { // Too slow, the app freezes as the...
Just noticed that `ndk` doesn't have an interface for AMidi, so I made one. Please let me know if there're any tests or fixes I have to do before merging!
I'm using UniFFI with the third-party [Kotlin Multiplatform Binding](https://gitlab.com/trixnity/uniffi-kotlin-multiplatform-bindings) generation on a Compose Multiplatform app. Since I'm accessing native APIs on the Rust side as well, I encounter cases where...
Without library mode, UniFFI 0.25.2 pushes the Rust trait information defined in UDL **twice** to `ComponentInterface`, once in `ComponentInterface::from_metadata`, and once in `macro_metadata::add_to_ci_from_library`. This makes duplicate overloads of methods like...
resvg version: 0.41.0 When a `` with `font-size="0px"` starts with an empty `` followed by whitespace, the `` is rendered in the wrong place. ```svg Text Text Text Text Text...
resvg version: 0.41 The group returned by `Text::flattened` always has the default `abs_transform`. `usvg::text::flatten::flatten` does not propagate the containing `Text`'s `abs_transform`. This does not affect `resvg` since `resvg::render::render_group` re-calculates `abs_transform`...
# Changes - Added `fun getResourceAsFlow(String, Int): Flow`, which retrieves the resource as a flow of byte array chunks. - On Android & JVM targets, the flow uses `InputStream`. -...