You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 18, 2023. It is now read-only.
Noticed this when building matrix with resolver: nightly-2016-08-06:
Data/Matrix.hs:1330:1: warning: [-Winline-rule-shadowing]
Rule "matrix/traceOfSum" may never fire
because ‘trace’ might inline first
Probable fix: add an INLINE[n] or NOINLINE[n] pragma for ‘trace’
Data/Matrix.hs:1330:1: warning: [-Winline-rule-shadowing]
Rule "matrix/traceOfSum" may never fire
because rule "Class op +" for ‘+’ might fire first
Probable fix: add phase [n] or [~n] to the competing rule
Data/Matrix.hs:1333:1: warning: [-Winline-rule-shadowing]
Rule "matrix/traceOfScale" may never fire
because ‘trace’ might inline first
Probable fix: add an INLINE[n] or NOINLINE[n] pragma for ‘trace’
Data/Matrix.hs:1333:1: warning: [-Winline-rule-shadowing]
Rule "matrix/traceOfScale" may never fire
because ‘scaleMatrix’ might inline first
Probable fix: add an INLINE[n] or NOINLINE[n] pragma for ‘scaleMatrix’
Data/Matrix.hs:1358:1: warning: [-Winline-rule-shadowing]
Rule "matrix/detLaplaceProduct" may never fire
because ‘detLaplace’ might inline first
Probable fix: add an INLINE[n] or NOINLINE[n] pragma for ‘detLaplace’
Data/Matrix.hs:1358:1: warning: [-Winline-rule-shadowing]
Rule "matrix/detLaplaceProduct" may never fire
because rule "Class op *" for ‘*’ might fire first
Probable fix: add phase [n] or [~n] to the competing rule
Don't know if this is GHC 8 specific or whether this cropped up earlier, but fyi.
AfC
The text was updated successfully, but these errors were encountered:
Noticed this when building matrix with
resolver: nightly-2016-08-06
:Don't know if this is GHC 8 specific or whether this cropped up earlier, but fyi.
AfC
The text was updated successfully, but these errors were encountered: