Nima Shiri Harzevili
Nima Shiri Harzevili
Current release of mull does not support memory related mutation operators for C. A set of memory operators are: 1) removing null assignment statements ``` free (ptr); ptr = NULL;...
I want to run Infer on numpy library to detect its weaknesses. When I run the following command: ``` infer run -- gcc -c /numpy/numpy/numpy/core/src/multiarrayabstractdtypes.c ``` It throws the following...
### 🐛 Describe the bug ``` https://drive.google.com/drive/folders/1jA5Cpn99rPn9lYThZWkBH42nqVPzqhXe?usp=share_link ``` ### Versions ``` PyTorch version: 1.12.0 Is debug build: False CUDA used to build PyTorch: 10.2 ROCM used to build PyTorch: N/A...
### 🐛 Describe the bug Due to dimension mismatch: ``` import torch import numpy as np arg_1_tensor = torch.rand([3], dtype=torch.float32) arg_1 = arg_1_tensor.clone() arg_2_tensor = torch.randint(0,8,[], dtype=torch.uint8) arg_2 = arg_2_tensor.clone()...
### 🐛 Describe the bug Probably due to empty tensor: ``` import torch import numpy as np arg_1_tensor = torch.rand([], dtype=torch.float16) arg_1 = arg_1_tensor.clone() arg_2_tensor = torch.rand([3], dtype=torch.complex64) arg_2 =...
Click to expand! ### Issue Type Bug ### Have you reproduced the bug with TF nightly? No ### Source binary ### Tensorflow Version 2.11.0 ### Custom Code Yes ### OS...
Click to expand! ### Issue Type Bug ### Have you reproduced the bug with TF nightly? No ### Source binary ### Tensorflow Version 2.11.0 ### Custom Code Yes ### OS...
Click to expand! ### Issue Type Bug ### Have you reproduced the bug with TF nightly? No ### Source binary ### Tensorflow Version 2.10.0 ### Custom Code Yes ### OS...
Click to expand! ### Issue Type Bug ### Have you reproduced the bug with TF nightly? No ### Source binary ### Tensorflow Version 2.10.0 ### Custom Code Yes ### OS...
## Description I want to get mxnet function decorators in python. I can get the decorators for Tensorflow as follows: Given that we have the following tensorflow API: ``` tf.math.floor(2.5)...