Matthias Gehre

Results 10 comments of Matthias Gehre

This looks nice! Do you have numbers comparing resource utilization/latency between the C++ and RTL implementations?

When I removed the option `-Wl,-rpath-link,` (i.e. with an empty path) from the linker command line and manually rerun the command, it linked correctly. But I didn't spent time to...

Essentially, clang crashes as long as the template function `a` is instantiated. Usually, you would call they function, i.e. write `a();`, (which is equivalent to `a();`), but here some pass...

I think the inlining transformation is actually fine here. I manually removed as many templates as I could while preserving the crash and got to ``` template < int =...

No, unfortunately the crash only happens with our internal version. But you can reproduce the same cvise behavior with ``` template void a() { static_assert(N != 4); } template void...

We also use the test models from the `onnx` package to test our ONNX compilers against. I'd ask you to please continue shipping this either inside the onnx package or...

> > We also use the test models from the `onnx` package to test our ONNX compilers against. I'd ask you to please continue shipping this either inside the onnx...

We use the (I hope) common way of running the backend tests via ``` import sys import os import unittest import onnx.backend.test import OurBackend # A pytest magic variable to...

Setting the environment variable `NODE_EXTRA_CA_CERTS` to `/etc/ssl/certs/ca-certificates.crt` (ubuntu) solved the issue for me.