Skip to content

Commit 93db53c

Browse files
committed
Added program to check for Intel TSX support
1 parent e599240 commit 93db53c

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

doihavetsx/main.go

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// This simple program prints the name of the cpu and if it supports
2+
// Intel RTM and HLE.
3+
// It exits with status code 0 only is RTM and HLE are both supported.
4+
package main
5+
6+
import (
7+
"fmt"
8+
"os"
9+
"text/tabwriter"
10+
11+
"github.com/intel-go/cpuid"
12+
)
13+
14+
func main() {
15+
hasRTM := cpuid.HasExtendedFeature(cpuid.RTM)
16+
hasHLE := cpuid.HasExtendedFeature(cpuid.HLE)
17+
18+
w := tabwriter.NewWriter(os.Stdout, 0, 0, 2, ' ', 0)
19+
printyesno := func(v bool) {
20+
if v {
21+
fmt.Fprintln(w, "Yes")
22+
} else {
23+
fmt.Fprintln(w, "No")
24+
}
25+
}
26+
27+
fmt.Fprintf(w, "CPU Brand:\t%s\n", cpuid.ProcessorBrandString)
28+
fmt.Fprint(w, "RTM:\t")
29+
printyesno(hasRTM)
30+
fmt.Fprint(w, "HLE:\t")
31+
printyesno(hasHLE)
32+
w.Flush()
33+
34+
if hasRTM && hasHLE {
35+
os.Exit(0)
36+
} else {
37+
os.Exit(1)
38+
}
39+
}

0 commit comments

Comments
 (0)