Update documentation for crc32c, cpu

This commit is contained in:
Harshavardhana
2014-12-13 01:39:14 -08:00
parent 643a293d94
commit 71c774f99b
9 changed files with 77 additions and 1 deletions

11
pkgs/cpu/Makefile Normal file
View File

@@ -0,0 +1,11 @@
all: build test
.PHONY: all
build:
@godep go build
test: build
@godep go test -race -coverprofile=cover.out
clean:
@rm -v cover.out

11
pkgs/cpu/doc.go Normal file
View File

@@ -0,0 +1,11 @@
// Package cpu provides wrapper around assembly functions for checking processor
// instruction capabilities for SSE4.1, AVX, AVX2 support
//
// Example
//
// ``cpu.HasSSE41()`` returns true for SSE4.1 instruction support, false otherwise
//
// ``cpu.HasAVX()`` returns true for AVX instruction support, false otherwise
//
// ``cpu.HasAVX2()`` returns true for AVX2 instruction support, false otherwise
package cpu