Matthew Dornfeld

Results 17 comments of Matthew Dornfeld

Get the following error when I try the above ``` Assignments are not expressions, and only expressions are allowed in this context ``` This works though ``` inline var GridProps.xs:...

Seems to be pretty similar ``` load("@build_bazel_rules_apple//apple:ios.bzl", "ios_application", "ios_unit_test") load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library") swift_library( name = "build_source", srcs = glob([ "Project/**/*.swift", ]), deps = [ "@swift_pkgs//SQLite.swift:SQLite", "@swift_pkgs//swift-composable-architecture:ComposableArchitecture", "@swift_pkgs//Bow:Bow", "@swift_pkgs//Bow:BowEffects", "@swift_pkgs//Cache:Cache", "//protos:grpc_swift", "//protos:grpc_stubs_swift"...

Is there any estimate for when this might get done? If it's not too complicated I might be able to take it on. Currently working on a project that will...

@panellj I actually have some free time over the next two weeks. If you want to send me the text files. I can work on a script to extract the...

Thanks @cgrindel I'm probably going to handle dependencies manually using `new_git_repository` and `swift_library` for now. I'll check back in when rules_spm supports the features you described above. It was working...

@Craigacp I tried the solution describe [here](https://github.com/tensorflow/decision-forests/issues/81), where you pass the compiled .so file for the tf-df library to `TensorFlow.loadLibrary` before calling `SavedModelBundle.load`. I ran into this exception ``` Caused...

Hi @JukkaL, yes that’s exactly what I’m trying to do. I tried writing an extension and I came to the same conclusion. It’s too complicated for mypy to understand. I...