Skip to content

Commit

Permalink
Impl names in identity
Browse files Browse the repository at this point in the history
  • Loading branch information
varun10p committed Sep 11, 2024
1 parent 430dc24 commit 9a69987
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platforms/binary32.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@
[sqr-neg (*.f32 (neg.f32 x) (neg.f32 x)) (*.f32 x x)]
[sqr-abs (*.f32 (fabs.f32 x) (fabs.f32 x)) (*.f32 x x)]
[mul-fabs (*.f32 (fabs.f32 a) (fabs.f32 b)) (fabs.f32 (*.f32 a b))]
[sqr-sin-b (*.f32 (sin.f32 x) (sin.f32 x)) (- 1 (*.f32 (cos.f32 x) (cos.f32 x)))]
[sqr-cos-b (*.f32 (cos.f32 x) (cos.f32 x)) (- 1 (*.f32 (sin.f32 x) (sin.f32 x)))]))
[sqr-sin-b (*.f32 (sin.f32 x) (sin.f32 x)) (-.f32 1 (*.f32 (cos.f32 x) (cos.f32 x)))]
[sqr-cos-b (*.f32 (cos.f32 x) (cos.f32 x)) (-.f32 1 (*.f32 (sin.f32 x) (sin.f32 x)))]))

(define-operator-impl (/.f32 [x : binary32] [y : binary32])
binary32
Expand Down

0 comments on commit 9a69987

Please sign in to comment.