Saleem Abdulrasool

Results 121 comments of Saleem Abdulrasool

`TFE_GetServerDef` has been removed, `TFE_InferShapes` still needs to be addressed.

The workaround would be to remove the `CMakeLists.txt` temporarily. However, this is interesting. https://github.com/tensorflow/swift-apis/blob/master/Dockerfile#L45 and https://github.com/tensorflow/swift-apis/blob/master/Dockerfile#L48 is where we actually build and test using s-p-m in CI, and that succeeds....

@saeta The Linux CI builds build with the latest s-p-m just fine (I've definitely run that before myself as well). What version of s-p-m were you using on macOS?

Sure: https://buildkite.com/bazel/rules-swift-swift/builds/3396#01810287-ec84-43df-931c-fa0bff97e4f3 The download and install step has the install log. The interesting part is: ``` [0464:0CA8][2022-05-26T22:41:36]i010: Launching elevated engine process. --   | [0464:0CA8][2022-05-26T22:41:36]e000: Error 0x80070424: Failed to launch elevated...

Note: TSAN is not available on Windows, ASAN however is (though it may require some work in packaging to make easier to use). I think that the packaging stuff should...

Hmm, I don't see how lldb would create a new console for the application, it does a standard process creation AFAIK. What is standard lldb here for context? Is it...

Thinking about this a bit: the new window might be the result of `AllocConsole`. There is nothing that can be done about that - it is how console applications work...

The only bits that you should need to install is Visual Studio; Visual Studio already provides CMake + Ninja. The only other dependency is flex and bison which is part...

Hmm, that is interesting. It sounds like even without lldb in the picture, the standard input is ignored? I think that this is sounding more like a Swift runtime issue...

BTW, the re-start issue is related to sockets - there is a small timeout associated with sockets that needs to elapse. You can use the `-R` (or maybe `-r`?) option...