Skip to content

Commit e8b6534

Browse files
authored
Add a missing space (#52)
1 parent 1f1ceda commit e8b6534

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Octavian"
22
uuid = "6fd5a793-0b7e-452c-907f-f8bfe9c57db4"
33
authors = ["Mason Protter", "Chris Elrod", "Dilum Aluthge", "contributors"]
4-
version = "0.2.1"
4+
version = "0.2.2"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

src/Octavian.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ using ThreadingUtilities:
1616
SPIN, WAIT, TASK, LOCK, STUP, taskpointer,
1717
wake_thread!, __wait, load, store!
1818

19-
export matmul!, matmul_serial!, matmul, matmul_serial, StaticInt
19+
export StaticInt
20+
export matmul!
21+
export matmul
22+
export matmul_serial!
23+
export matmul_serial
2024

2125
include("global_constants.jl")
2226
include("types.jl")

src/init.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ function __init__()
55
if nt < NUM_CORES && ("SUPPRESS_OCTAVIAN_WARNING" keys(ENV))
66
msg = string(
77
"Your system has $NUM_CORES physical cores, but `Octavian.jl` only has ",
8-
"$(nt > 1 ? "$(nt) threads" : "1 thread") available.",
8+
"$(nt > 1 ? "$(nt) threads" : "$(nt) thread") available. ",
99
"For the best performance, you should start Julia with at least $(NUM_CORES) threads.",
10-
"",
1110
)
1211
@warn msg
1312
end

0 commit comments

Comments
 (0)