(axes float64)
| 14 | } |
| 15 | |
| 16 | func Dot(axes float64) *LDot { |
| 17 | return &LDot{ |
| 18 | axes: axes, |
| 19 | dtype: Float32, |
| 20 | name: UniqueName("dot"), |
| 21 | normalize: false, |
| 22 | trainable: true, |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | func (l *LDot) SetDtype(dtype DataType) *LDot { |
| 27 | l.dtype = dtype |
nothing calls this directly
no test coverage detected