Alvaro Revuelta

Results 27 issues of Alvaro Revuelta

Just found this amazing project, but find odd that it has to open the browser in order to render the image and then download it. Isn't it possible to run...

feature-request

Would be nice to have the project compiled as a static library so other people can easily use it in their code with just `#include connxr.h` or something like that....

enhancement

`time.h` library is used to measure the execution time of the models. On macOS and Linux its sufficient, but for some models (below 1 second) the time is not measured...

The files `onnx.pb-c.c` and `onnx.pb-c.h` were generated from onnx file `onnx.proto` some time ago, but that file changes across different versions. It can be easily generated with: ```c protoc --c_out=....

Some autogenerated resolvers look too complex, i.e. `resolve_operator__onnx__maxpool__12`. We don't need that many cases, just 5 "tensor(float16), tensor(float), tensor(double), tensor(int8), tensor(uint8)". Action to take: Rethink the `OperatorTypeResolver.py` script. @nopeslide ```c...

Currently the `resolve` function stores the `node_context` in a global statically defined variable. See `all_context` and `_populatedIdx` in `inference.c`. The main problem is that `all_context` is hardcoded arbitrarily to 50,...

Just wondering if it would be possible to change the [go.mod](https://github.com/gobitfly/eth2-beaconchain-explorer/blob/master/go.mod#L1) module name from `eth2-exporter` to `github.com/gobitfly/eth2-beaconchain-explorer` or any other name with the GitHub prefix. This will allow other go...

## Description This PR adds a function to the `LazyIMT` contract, `_merkleProofElements`, which returns the Merkle proof of any leaf `index` in the tree. The `depth` is configurable, which allows...

Question rather than feature, but it might lead to a feature if feasible. I'm using the [LazyIMT](https://github.com/privacy-scaling-explorations/zk-kit/blob/96ceeba751756d8abaa179ad5c52afecf25c3fc7/packages/imt.sol/contracts/internal/InternalLazyIMT.sol) and was wondering if it would be possible to **get a Merkle Proof...

feature :rocket: