oneflow
oneflow copied to clipboard
OneFlow is a deep learning framework designed to be user-friendly, scalable and efficient.
### Brief Description  it should be: oneflow.index_select(input, dim, index) → Tensor ### Alternatives _No response_
## Summary When nan/inf is a parameter of 'oneflow.linspace', there is a core dumped happen, while pytorch/numpy doesn't. ## Code to reproduce bug ```python import oneflow as flow # Create...
## Summary When the oneflow.zeros/ones parameter size contains negative values, the program aborted, there's a 'core dumped'. ## Code to reproduce bug ```python import oneflow as flow tensor = flow.ones((-1,3),...
## Summary when parameter of 'oneflow.eye' is float, it should throw an error or warning. ## Code to reproduce bug ```python import oneflow as flow # Create a 2-D tensor...
## Summary When nan/inf is a parameter of 'oneflow.arange', there is a core dumped happen. 'numpy.arange' will throw an error. ## Code to reproduce bug ```python import oneflow as flow...
## Summary According to arange's calculation method (Generate numbers in the half open interval [start, stop)), when step is inf, the generated array should contain the start value, but oneflow.arange...
## Summary When oneflow.permute is used for the same dimension operation, there is no crash, but the wrong result is returned. Checks of the same dimension should be added. ##...
## Summary I run a code to test oneflow.var, when I use it to a 2 dimensions tensor, and I set dim parameter equals to -3, core dumped occurs. ##...
## Summary core dumped occurs when an empty array is processed with oneflow.tensordot ## Code to reproduce bug ```python import oneflow as flow import numpy as np a = flow.tensor(np.array([[],[]]),dtype=flow.float32)...
## Summary When nan is an element in tensor, the output of oneflow.max/min will have a value that does not correspond to indice. ## Code to reproduce bug for oneflow.max,...