Ticket #3555 (closed feature request: duplicate)
Vectorisation error with negative Double const
Description
Negative Double constants cause an error in parallel comprehensions. This function
negs xs = [: -1.0 | x <- xs :]
doesn't make it through the compiler; this
negs xs = [: (0.0 - 1.0) | x <- xs :]
does.
The error text is
*** Vectorisation error ***
Tycon not vectorised: GHC.Num.T:Num
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

