Skip to content

Commit

Permalink
cuda: correct test to pass on most CUDA architectures
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed Apr 4, 2024
1 parent ef6abd1 commit c9309b2
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions cuda/imgproc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@ func TestHoughLines_Calc(t *testing.T) {
if dest.Rows() != 2 {
t.Errorf("Invalid HoughLines test rows: %v", dest.Rows())
}
if dest.Cols() != 1588 {
t.Errorf("Invalid HoughLines test cols: %v", dest.Cols())
}

expected := map[float32]float32{
21: 1.5707964,
Expand Down Expand Up @@ -136,9 +133,6 @@ func TestHoughLines_CalcWithStream(t *testing.T) {
if dest.Rows() != 2 {
t.Errorf("Invalid HoughLines test rows: %v", dest.Rows())
}
if dest.Cols() != 1588 {
t.Errorf("Invalid HoughLines test cols: %v", dest.Cols())
}

expected := map[float32]float32{
21: 1.5707964,
Expand Down

0 comments on commit c9309b2

Please sign in to comment.