Scott Todd

Results 405 comments of Scott Todd

I'm planning to start migrating `build_test_all_bazel` to a new dockerfile running on the new Azure build cluster soon. We'll see what issues I run into :)

Following https://iree.dev/developers/debugging/sanitizers/#asan-addresssanitizer on Linux got me a source Python build with ASan on Linux that reports errors in the test case I've been working with: ``` (.venv) scotttodd@scotttodd-cpu:~/scratch/tests$ LD_PRELOAD=/usr/lib/llvm-14/lib/clang/14.0.0/lib/linux/libclang_rt.asan-x86_64.so pytest...

Done! * Dockerfiles are now hosted in https://github.com/iree-org/base-docker-images/, which contains automated workflows to publish to GitHub's Container registry (https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry). Members of the iree-write team can contribute to that repository to...

Having a hard time running my python test from an older commit. * Had to downgrade nanobind to build the IREE Python bindings from 2 months ago * Seeing this...

Argh, red herrings all around. Running a trivial test case instead of `index_put` ```python class TorchModule(torch.nn.Module): def forward(self, input): return input + torch.ones(3, 4) ``` through Python in this setup...

> Maybe the test cases write to different elements, near the edges of the buffers: Yep! This put of a single value also passes: ```python # indices=[torch.tensor([0]), torch.tensor([3])], [ #...

Writing into the last row of a [3, 4] tensor crashes. Writing into the last row of a [4, 4] or [6, 6] tensor does not. The full model from...

After restarting my machine, I'm only seeing the Python test crash in about 1/30 runs. That's going to make it hard to verify which test cases are definitely working and...

Bah, just saw a crash writing into the middle of a 4x4 tensor. The crash I'm seeing might be unique to the Python bindings and maybe not even unique to...

Aw, saw the same Python crash performing an elementwise add on a 4x4 tensor...