Commit bc40a32
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 0670ac2 commit bc40a32
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 | | |
| |||
973 | 975 | | |
974 | 976 | | |
975 | 977 | | |
976 | | - | |
| 978 | + | |
| 979 | + | |
| 980 | + | |
| 981 | + | |
| 982 | + | |
977 | 983 | | |
978 | 984 | | |
979 | 985 | | |
| |||
1000 | 1006 | | |
1001 | 1007 | | |
1002 | 1008 | | |
1003 | | - | |
1004 | | - | |
1005 | | - | |
| 1009 | + | |
| 1010 | + | |
| 1011 | + | |
| 1012 | + | |
1006 | 1013 | | |
1007 | 1014 | | |
1008 | 1015 | | |
| |||
0 commit comments