Nima Shiri Harzevili
Nima Shiri Harzevili
Just found the answer. The problem is that I should do the above stuff inside ```__init__.py``` located in the root folder of mxnet library (installed via pip).
> not reproducible > > ``` > (ipex_py39) [root@978a5d125e09 ~]# python test.py > 2.0.0.dev20230122+cpu > /root/test.py:13: UserWarning: An output with one or more elements was resized since it had shape...
> The error on the latest master is `"atan2_cpu" not implemented for 'ComplexFloat'`, would you like to request complexFloat support for atan2? No I just reported this bug which my...
> Agree. The lower size works fine. So, the error is expected with larger size tensors? Proper exception handling is not required? for example [here](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/ops/nn_ops.cc), ``` REGISTER_OP("DepthwiseConv2dNativeBackpropFilter") .Input("input: T") .Input("filter_sizes:...
I found the issues. The issue is that tensorflow APIs called via tensorflow unit tests have different API names compared to APIs listed in the official documentation. For example when...
Thanks. Not actually, I am going to instrument public APIs inside tensorflow library tests. But, I don't know which public tests did you run to collect APIs? Because in the...
I really enjoyed reading FreeFuzz, it is easy to read and the idea is sound and exciting. That is why I decided to work on FreeFuzz as baseline. Freefuzz works...
Hi @dengyinlin Thanks for the reply. For docs and Wild models, I get what I expect. For kernel tests, I get wrong results. Please note that I install Tensorflow from...
Wow! very different compared to my approach, let me do it in this way and I let you know the results. I really appreciate that.
@dengyinlin @Anjiang-Wei I solved the issue. I also updated the instrumentation and now it supports all internal/private tensorflow APIs. It also covers user/public APIs. There is only one small issue...