Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Octavian"
uuid = "6fd5a793-0b7e-452c-907f-f8bfe9c57db4"
authors = ["Mason Protter", "Chris Elrod", "Dilum Aluthge", "contributors"]
version = "0.2.1"
version = "0.2.2"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
6 changes: 5 additions & 1 deletion src/Octavian.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ using ThreadingUtilities:
SPIN, WAIT, TASK, LOCK, STUP, taskpointer,
wake_thread!, __wait, load, store!

export matmul!, matmul_serial!, matmul, matmul_serial, StaticInt
export StaticInt
export matmul!
export matmul
export matmul_serial!
export matmul_serial

include("global_constants.jl")
include("types.jl")
Expand Down
3 changes: 1 addition & 2 deletions src/init.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ function __init__()
if nt < NUM_CORES && ("SUPPRESS_OCTAVIAN_WARNING" ∉ keys(ENV))
msg = string(
"Your system has $NUM_CORES physical cores, but `Octavian.jl` only has ",
"$(nt > 1 ? "$(nt) threads" : "1 thread") available.",
"$(nt > 1 ? "$(nt) threads" : "$(nt) thread") available. ",
"For the best performance, you should start Julia with at least $(NUM_CORES) threads.",
"",
)
@warn msg
end
Expand Down