Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tweak on metal ci #414

Merged
merged 11 commits into from
Jan 12, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
smol sin test
  • Loading branch information
hikettei committed Jan 12, 2025
commit 9aafef04b7a6bf8ece3d4512e00cff5e1c46cb6c
2 changes: 1 addition & 1 deletion source/common/dtype.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
(case dtype
(:float64 2.2250738585072e-308)
(:float32
;; Actual FLT_MIN is 1.17549435e-38 but MTL Symboli cannot handle it
;; Actual FLT_MIN is 1.17549435e-38 but MTL Symbolic cannot handle it
1.17549e-37)
(:float16 6.104e-05)
(:bfloat16 6.104e-05)
Expand Down
2 changes: 1 addition & 1 deletion source/test-suite/test-ops.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
(,lisp-op x) ulp dtype))))
(ok t))))))))
;; Trig
(unary-dtype-test sin-test !sin sin)
(unary-dtype-test sin-test !sin sin :max 121255)
(unary-dtype-test cos-test !cos cos :ulp 1e-3 :max 121255)
(unary-dtype-test tan-test !tan tan :ulp 1e-1 :max 20 :fuzz nil)
;; Hyperbolic
Expand Down
Loading