We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7991ac1 commit 93e3a61Copy full SHA for 93e3a61
1 file changed
src/torchjd/sparse/_aten_function_overrides/shape.py
@@ -178,7 +178,7 @@ def cat_default(tensors: list[Tensor], dim: int) -> Tensor:
178
if any(not torch.equal(t.strides, ref_strides) for t in tensors_[1:]):
179
raise NotImplementedError(
180
"Override for aten.cat.default does not support SSTs that do not all have the same "
181
- f"strides. Found the following strides:\n{[t.strides for t in tensors_]} and the "
+ f"strides. Found the following tensors:\n{[t.debug_info() for t in tensors_]} and the "
182
f"following dim: {dim}."
183
)
184
0 commit comments