Jan Krukowski

Results 15 comments of Jan Krukowski

Thanks for the answer @davidkoski will dig deeper into it. You mentioned > So the fix for WhisperKit could be to not use strides but compute the contiguous strides instead,...

got it, or computing the strides before the graph is evaluated, so `asMLMultiArray` could looks something like this ```swift func asMLMultiArray() throws -> MLMultiArray { let dataType = multiArrayDataType() let...

but probably computing `contiguousStrides` makes more sense because the point where the graph is evaluated might change

I've managed to do it for swift here https://github.com/jkrukowski/SQLiteVec The problem is that the version of SQLite on macOS does not support loading extensions that's why my package bundles the...

> What are common SQLite client libraries that iOS devs use? Do they allow dynamically loading SQLite extensions? Here are some: [SQLite.swift](https://github.com/stephencelis/SQLite.swift) [GRDB.swift](https://github.com/groue/GRDB.swift) It looks like the SQLite version provided...