oneflow icon indicating copy to clipboard operation
oneflow copied to clipboard

OneFlow is a deep learning framework designed to be user-friendly, scalable and efficient.

Results 591 oneflow issues
Sort by recently updated
recently updated
newest added

### Brief Description ![image](https://github.com/Oneflow-Inc/oneflow/assets/84373897/004a6567-1aad-4e18-8c44-a6aab44ab266) 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...

bug
community

## 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),...

bug
community

## 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...

bug
community

## 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...

bug
community

## 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...

bug
community

## 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. ##...

bug
community

## 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. ##...

bug
community

## 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)...

bug
community

## 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,...

bug
community