You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import pytest
import jax
import jax.numpy as jnp
from infrastructure import verify_module
def test_1d_array_add():
def module_add(a, b):
return a + b
verify_module(module_add, [(1,), (1,)])
It has started failing with this error:
Always | FATAL | Can only unpad to row major tensor of even width
terminate called after throwing an instance of 'std::runtime_error'
what(): TT_FATAL @ /home/uaziz/pjrt/third_party/tt-mlir/src/tt-mlir/third_party/tt-metal/src/tt-metal/ttnn/cpp/ttnn/operations/data_movement/untilize_with_unpadding/device/untilize_with_unpadding_op.cpp:25: ((this->output_tensor_end[-1] + 1) % 2 == 0)
info:
Can only unpad to row major tensor of even width
The text was updated successfully, but these errors were encountered:
The to_layout/from_device was causing the following fallout:
- #779
- #788
- All zeros output, separately addressed #776
For now just reverting back to to_memory_config.
The to_layout/from_device was causing the following fallout:
- #779
- #788
- All zeros output, separately addressed #776
For now just reverting back to to_memory_config.
I had a simple test to add two 1-d arrays:
It has started failing with this error:
The text was updated successfully, but these errors were encountered: