()
| 12 | } |
| 13 | |
| 14 | func Subtract() *LSubtract { |
| 15 | return &LSubtract{ |
| 16 | dtype: Float32, |
| 17 | name: UniqueName("subtract"), |
| 18 | trainable: true, |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | func (l *LSubtract) SetDtype(dtype DataType) *LSubtract { |
| 23 | l.dtype = dtype |
nothing calls this directly
no test coverage detected