ivy icon indicating copy to clipboard operation
ivy copied to clipboard

[Bug]: ivy.array() RecursionError: maximum recursion depth exceeded

Open marvlyngkhoi opened this issue 11 months ago • 1 comments

Bug Explanation

When I create an array using ivy.array() and then try to access the array using indexing or array slicing 'RecursionError: maximum recursion depth exceeded ' happens on colab notebook

Steps to Reproduce Bug

import ivy
arr = ivy.array([1,2,4,5])
arr1 = ivy.array([[1],[2],[3])
print(arr[0])
print(arr1[0])

Environment

colab

Ivy Version

0.0.8.0

Backend

  • [ ] NumPy
  • [ ] TensorFlow
  • [ ] PyTorch
  • [ ] JAX

Device

T4

marvlyngkhoi avatar Mar 16 '24 20:03 marvlyngkhoi

Hi @ivy-leaves, please assign me this task or issue to me so I can be able to make an attempt in solving the task.

Kamalesh3112 avatar Apr 08 '24 07:04 Kamalesh3112