tenstorrent / tt-metal

:metal: TT-NN operator library, and TT-Metalium low level kernel programming model.
https://docs.tenstorrent.com/ttnn/latest/index.html
Apache License 2.0
488 stars 80 forks source link

Unit tests for PointNet Model Ops #12501

Open saichandax opened 2 months ago

saichandax commented 2 months ago

Describe the bug

Input Resolution: (32,3,2500)

Input Resolution: (32,3,1024)

Input Resolution: (32,3,512)

Input Resolution: (32,3,256)

Input Resolution: (32,3,128)

To Reproduce Steps to reproduce the behavior:

  1. Checkout to the branch: harini/Pointnet_unit_tests
  2. Run the command to unit test conv1d of resolution (32,3,2500): pytest tests/ttnn/unit_tests/operations/test_conv1d.py::test_pointnet_conv1d
  3. Run the command to unit test conv1d of resolution (32,3,1024): pytest tests/ttnn/unit_tests/operations/test_conv1d.py::test_pointnet_conv1d_low_res_1024
  4. Run the command to unit test conv1d of resolution (32,3,512): pytest tests/ttnn/unit_tests/operations/test_conv1d.py::test_pointnet_conv1d_low_res_512
  5. Run the command to unit test conv1d of resolution (32,3,256): pytest tests/ttnn/unit_tests/operations/test_conv1d.py::test_pointnet_conv1d_low_res_256
  6. Run the command to unit test conv1d of resolution (32,3,128): pytest tests/ttnn/unit_tests/operations/test_conv1d.py::test_pointnet_conv1d_low_res_128

Expected behavior Expected to pass the failing unit test configurations in conv1d.

Please complete the following environment information:

dvartaniansTT commented 2 months ago

@saichandax and @keerthana-r-mcw please also include the error message you're seeing in the issue!

HariniMohan0102 commented 2 months ago

@dvartaniansTT Added the error message of respective input resolutions to the issue description, please check.