Skip to content

Commit

Permalink
Group declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
Swopper050 committed Nov 13, 2023
1 parent e2dabc2 commit 6252837
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ops/opset13/acos.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ func (c *Acos) Init(_ []*onnx.AttributeProto) error {

// Apply applies the acos operator.
func (c *Acos) Apply(inputs []tensor.Tensor) ([]tensor.Tensor, error) {
var out tensor.Tensor

var err error
var (
out tensor.Tensor
err error
)

switch inputs[0].Dtype() {
case tensor.Float32:
Expand Down

0 comments on commit 6252837

Please sign in to comment.