Commit d41c2cf
committed
Lower precision in TestFusion parametrization
This was not an issue in my local machine, but failed on the Github CI. It could be due to compiler optimizations. Case 69 used to look like this:
```python
Elemwise{Composite{(i0 * tan(i0) * tan(i0) * i1)}} [id C]
|x [id A]
|x [id A]
```
And now looks like this
```python
Elemwise{Composite{(i0 * tan(i0) * tan(i0) * i0)}} [id C]
|x [id A] [None]
```1 parent 941d4cf commit d41c2cf
1 file changed
+11
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
882 | 882 | | |
883 | 883 | | |
884 | 884 | | |
| 885 | + | |
885 | 886 | | |
886 | 887 | | |
887 | 888 | | |
| |||
890 | 891 | | |
891 | 892 | | |
892 | 893 | | |
| 894 | + | |
893 | 895 | | |
894 | 896 | | |
895 | 897 | | |
| |||
978 | 980 | | |
979 | 981 | | |
980 | 982 | | |
981 | | - | |
| 983 | + | |
| 984 | + | |
| 985 | + | |
| 986 | + | |
| 987 | + | |
982 | 988 | | |
983 | 989 | | |
984 | 990 | | |
| |||
1005 | 1011 | | |
1006 | 1012 | | |
1007 | 1013 | | |
1008 | | - | |
1009 | | - | |
1010 | | - | |
| 1014 | + | |
| 1015 | + | |
| 1016 | + | |
| 1017 | + | |
1011 | 1018 | | |
1012 | 1019 | | |
1013 | 1020 | | |
| |||
0 commit comments