Liu Liu

Results 17 issues of Liu Liu

Per: https://docs.nvidia.com/deeplearning/sdk/cudnn-release-notes/rel_8.html Significant performance regressions observed for cudnn 8 on 2080 Ti (resnet50 from 1400fps down to 300fps with 4x2080Ti).

Swift codegen: https://github.com/apollographql/apollo-tooling/blob/master/packages/apollo-codegen-swift/src/helpers.ts#L121 uses pascalCase for operationClassName. However, in example such as: https://github.com/apollographql/apollo-ios/blob/main/Sources/StarWarsAPI/API.swift#L4432 It lower case `ID` to `Id`. This is actually expected if you buy into the strict pascalCase....

This PR added the ability to compile Swift binary with stdlib in Linux. It added `-static-stdlib` to `swiftc` invocation and added `static-stdlib-args.lnk` to linker flag. However, there is an issue...

https://github.com/pixelglow/ZipZap/blob/master/ZipZap/ZZArchive.mm#L149 This line pointing to a static int sign: https://github.com/pixelglow/ZipZap/blob/master/ZipZap/ZZHeaders.h#L151 Should this be signature?

This PR tried to fix the problem with ZipZap generated STORED format with ZipInputStream. ZipInputStream is a widely used mechanism from JDK that supports reading Zip files. Since it deals...

**Is your feature request related to a problem? Please describe.** When using MuJoCo API, it is a bit harder to parse either automatically or from documentation when a parameter can...

enhancement
good first issue

Seems we are the only two people use Swift with notebooks. Anyway, I think we need to collaborate on a new header-like library called JupyterDisplay. I have a prototype: https://github.com/liuliu/swift-jupyter/blob/main/display/JupyterDisplay.swift...

enhancement

I am looking into various of the new samplers and try it in my https://github.com/liuliu/swift-diffusion There is this magical sigma_min / sigma_max for Karras scheduler seems a bit abrupt. Looking...

It is well known that in SD2, the text encoder changed, and downstream developers should take a notice and change the text encoder. But it is little known that the...

documentation

Previously, stablediffusion uses CLIP's tokenizer, that will appending eot tokens until the specified length (77). It seems that the newer one (at least the one in `txt2img.py`) uses SimpleTokenizer and...

question