Zenas
Zenas
## Summary In OneFlow Graph mode, performing an advanced indexing assignment using two integer index tensors (containing negative indices) causes an internal runtime error. The same code executes correctly in...
## Summary Inside nn.Graph, performing in-place advanced indexing assignment on a tensor (even after clone()) fails during graph build with the generic internal error: ``` RuntimeError: This is a oneflow...
## Summary When using variable-length RNN input with flow.nn.utils.rnn.pack_padded_sequence → nn.LSTM → flow.nn.utils.rnn.pad_packed_sequence inside nn.Graph, graph compilation fails with a generic: ``` RuntimeError: This is a oneflow bug, please submit...
## Summary Calling oneflow.stft inside nn.Graph with a registered window buffer and pad_mode='reflect' fails during graph build with a generic: ``` RuntimeError: This is a oneflow bug, please submit an...
## Summary When calling flow.full inside an nn.Graph, if the fill_value comes from indexing (thus a 0-D proxy tensor), OneFlow crashes with a runtime error "This is a oneflow bug…"...
## Summary Calling copy.deepcopy() on an nn.Graph instance crashes with a KeyError('_backward_hooks') originating from nn.Module.__getstate__. Even worse, the interpreter later prints an exception in Graph.__del__ (AttributeError: '_session'), indicating partially constructed...
## Summary When a model stores submodules/buffers/parameters in user-managed dicts and accesses them via dict lookup in forward() (instead of attribute access or `nn.ModuleDict`/`ParameterDict`), running under `nn.Graph` emits a warning...
## Summary When calling `flow.inverse` on a singular matrix, OneFlow immediately triggers a FATAL C++ abort (`LogMessageFatal`), terminating the process. This is inconsistent with expected behavior (e.g., PyTorch raises `RuntimeError:...
## Summary Calling `oneflow.nn.functional.adaptive_max_pool2d` with a 2D tensor (shape `(10, 4)`) — which is not a valid 4D image tensor — does not raise a Python-side argument/shape error. Instead, OneFlow...