Skip to content

Commit

Permalink
Fixed up op_nn.go
Browse files Browse the repository at this point in the history
  • Loading branch information
chewxy committed Jun 28, 2019
1 parent 40f0ded commit bbb94d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions op_nn.go
Original file line number Diff line number Diff line change
Expand Up @@ -1590,11 +1590,11 @@ func (op *lrnOp) Type() hm.Type {
panic("not implemented")
}

func (op *lrnOp) InferShape(...gorgonia.DimSizer) (tensor.Shape, error) {
func (op *lrnOp) InferShape(...DimSizer) (tensor.Shape, error) {
panic("not implemented")
}

func (op *lrnOp) Do(...gorgonia.Value) (gorgonia.Value, error) {
func (op *lrnOp) Do(...Value) (Value, error) {
panic("not implemented")
}

Expand Down Expand Up @@ -1626,6 +1626,6 @@ func (op *lrnOp) DiffWRT(inputs int) []bool {
panic("not implemented")
}

func (op *lrnOp) SymDiff(inputs gorgonia.Nodes, output *gorgonia.Node, grad *gorgonia.Node) (retVal gorgonia.Nodes, err error) {
func (op *lrnOp) SymDiff(inputs Nodes, output *Node, grad *Node) (retVal Nodes, err error) {
panic("not implemented")
}

0 comments on commit bbb94d6

Please sign in to comment.