pytorch / FBGEMM

FB (Facebook) + GEMM (General Matrix-Matrix Multiplication) - https://code.fb.com/ml-applications/fbgemm/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`use_cpu=st.booleans()` in `jagged_index_select_2d_ref` fails the test on ROCm

liligwu opened this issue · comments

commented

The test jagged_index_select_2d_ref fails if use_cpu=True on ROCm,

use_cpu=st.booleans() if gpu_available else st.just(True),

The issue is akin to

if (gpu_available and not TEST_WITH_ROCM)

A PR is opened to disable the CPU test on ROCm
#1635

@liligwu Is the issue considered resolved now that #1635 has merged?

commented

@liligwu Is the issue considered resolved now that #1635 has merged?

Yes, I'm closing it. Thank you for reminding me.