Laramie Leavitt

Results 140 comments of Laramie Leavitt

We also have rules similar to the above in tensorstore: https://github.com/google/tensorstore/blob/master/third_party/python/python_configure.bzl

Until this is resolved, our internal CI currently uses the following: * Microsoft Visual Studio 2019 version 16.10.4.0 * Windows 11 SDK 22000

The first build error is in the riegeli dependency. If you have a moment it may help to do this: `DUMPBIN /SYMBOLS cfile_writer.obj` where cfile_writer.obj is the path to the...

Thanks. For the first one, examining the object dumps shows InitializePos symbol in debug, but it is not present in release. That, plus LNK2019, causes me to suspect that the...

jbms@ pointed out that for the link issue, the .cc files have methods marked 'inline' which should not be. I'm preparing a fix for riegeli.

The first error will be fixed at riegeli commit https://github.com/google/riegeli/commit/f10b305da3c9b8a36ee2b5eac182b20290035da2 and should be resolved by https://github.com/google/tensorstore/commit/a3f3ee23a8d27a5ba8c1faee944d3a23b00fedf4

We can probably comment out the cast_test.cc lines.

I have submitted a small "tiff" driver to read tiff images. It does not use OMETIFF metadata, so it's restricted to essentially a single frame of a tiff file seen...

It might be instructive to look at the [VirtualChunked driver](https://github.com/google/tensorstore/tree/master/tensorstore/driver/virtual_chunked). In fact, as you get things to work, that may provide a reasonable framework for experimentation. A driver provides a...

It seems like the [@rules_perl](https://github.com/bazelbuild/rules_perl) package doesn't support your architecture. See: https://github.com/bazelbuild/rules_perl/blob/main/BUILD You might be able to patch in this PR and get it to work: https://github.com/bazelbuild/rules_perl/pull/47 Alternatively, perl is...