Skip to content

Commit

Permalink
feature: Fine-grained control of the CPU.
Browse files Browse the repository at this point in the history
Signed-off-by: Super-long <[email protected]>
  • Loading branch information
Super-long committed May 23, 2022
1 parent 532db5d commit 3285694
Show file tree
Hide file tree
Showing 2 changed files with 229 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ BLADE_SRC_ROOT=$(shell pwd)
GO_ENV=CGO_ENABLED=1
GO_MODULE=GO111MODULE=on
GO=env $(GO_ENV) $(GO_MODULE) go
GO_FLAGS=-ldflags="-s -w"
GO_FLAGS=-ldflags=""

UNAME := $(shell uname)

Expand All @@ -26,7 +26,7 @@ OS_YAML_FILE_NAME=chaosblade-os-spec-$(BLADE_VERSION).yaml
OS_YAML_FILE_PATH=$(BUILD_TARGET_YAML)/$(OS_YAML_FILE_NAME)

ifeq ($(GOOS), linux)
GO_FLAGS=-ldflags="-linkmode external -extldflags -static -s -w"
GO_FLAGS=-ldflags="-compressdwarf=false -linkmode external -extldflags -static" -gcflags="all=-N -l"
endif

# build os
Expand Down
233 changes: 227 additions & 6 deletions exec/cpu/cpu.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ import (
"strings"
"syscall"
"time"
//"math/rand"
"math"
"unsafe"

"github.com/chaosblade-io/chaosblade-spec-go/spec"
"github.com/chaosblade-io/chaosblade-spec-go/util"
Expand All @@ -38,6 +41,11 @@ import (

const BurnCpuBin = "chaos_burncpu"

type StressCpuMethodInfo struct {
name string /* human readable form of stressor */
stress func(string) /* the cpu method function */
}

type CpuCommandModelSpec struct {
spec.BaseExpModelCommandSpec
}
Expand Down Expand Up @@ -330,25 +338,30 @@ func burn(ctx context.Context, quota <-chan int64, slopePercent float64, precpu
if ds < 0 {
ds = 0
}
s, _ := time.ParseDuration(strconv.FormatInt(ds, 10) + "ns")
//s, _ := time.ParseDuration(strconv.FormatInt(ds, 10) + "ns")
for {
startTime := time.Now().UnixNano()
select {
case offset := <-quota:
q = q + offset
if q < 0 {
q = 0
}
ds := period - q
fmt.Println("---------------------------")
fmt.Println(q, ds, offset)
if ds < 0 {
ds = 0
}
s, _ = time.ParseDuration(strconv.FormatInt(ds, 10) + "ns")
default:
for time.Now().UnixNano()-startTime < q {
fmt.Println("===============================")
// Execute (100*q/(q+s))% of calculations in one second.
cpuPercent := float64(q)/float64(q+ds)*100
if cpuPercent <= 0 {
cpuPercent = slopePercent
}
runtime.Gosched()
time.Sleep(s)
fmt.Println(q, ds, cpuPercent)
stress_cpu(time.Second, cpuPercent)
//runtime.Gosched()
}
}
}
Expand All @@ -358,3 +371,211 @@ func (ce *cpuExecutor) stop(ctx context.Context) *spec.Response {
ctx = context.WithValue(ctx, "bin", BurnCpuBin)
return exec.Destroy(ctx, ce.channel, "cpu fullload")
}

var cpu_methods = []StressCpuMethodInfo {
{ "ackermann", stress_cpu_ackermann, },
{ "bitops", stress_cpu_bitops, },
{ "collatz", stress_cpu_collatz, },
// { "crc16", stress_cpu_crc16, },
{ "factorial", stress_cpu_factorial, },
}

func ackermann(m uint32, n uint32) uint32 {
if m == 0 {
return n + 1
} else if n == 0 {
return ackermann(m - 1, 1)
} else {
return ackermann(m - 1, ackermann(m, n - 1))
}
}

func stress_cpu_ackermann(name string) {
a := ackermann(3, 7);

if a != 0x3fd {
fmt.Printf("%s: ackermann error detected, ackermann(3,9) miscalculated\n", name);
}
}

func stress_cpu_bitops(name string) {
var i_sum uint32 = 0
var sum uint32 = 0x8aac0aab

for i := 0; i < 16384; i++ {
{
var r uint32 = uint32(i)
var v uint32 = uint32(i)
var s uint32 = uint32((unsafe.Sizeof(v) * 8) - 1)
for v >>= 1; v != 0; v, s = v>>1, s-1 {
r <<= 1
r |= v & 1
}
r <<= s
i_sum += r
}
{
/* parity check */
var v uint32 = uint32(i)

v ^= v >> 16
v ^= v >> 8
v ^= v >> 4
v &= 0xf
i_sum += (0x6996 >> v) & 1
}
{
/* Brian Kernighan count bits */
var v uint32 = uint32(i)
var j uint32 = uint32(i)

for j = 0; v != 0; j++ {
v &= v - 1
}
i_sum += j
}
{
/* round up to nearest highest power of 2 */
var v uint32 = uint32(i - 1)

v |= v >> 1
v |= v >> 2
v |= v >> 4
v |= v >> 8
v |= v >> 16
i_sum += v
}
}
if i_sum != sum {
fmt.Printf("%s: bitops error detected, failed bitops operations\n", name)
}
}

func stress_cpu_collatz(name string) {
var n uint64 = 989345275647
var i int
for i = 0; n != 1; i++ {
if n&1 != 0 {
n = (3 * n) + 1
} else {
n = n / 2
}
}

if i != 1348 {
fmt.Printf("%s: error detected, failed collatz progression\n", name)
}
}

// func stress_cpu_crc16(name string) {
// randBytes := make([]byte, 1024)
// rand.Read(randBytes)

// for i := 1; i < len(randBytes); i++ {
// ccitt_crc16([]uint8(randBytes), i)
// }
// }

// func ccitt_crc16(data *uint8, n int) uint16 {
// /*
// * The CCITT CRC16 polynomial is
// * 16 12 5
// * x + x + x + 1
// *
// * which is 0x11021, but to make the computation
// * simpler, this has been reversed to 0x8408 and
// * the top bit ignored..
// * We can get away with a 17 bit polynomial
// * being represented by a 16 bit value because
// * we are assuming the top bit is always set.
// */
// var polynomial uint16 = 0x8408
// var crc uint16 = 0xffff

// if n == 0 {
// return 0
// }

// for ; n!=0; n-- {
// data += 1
// var val uint8 = (uint16(0xff) & *data)
// for i := 8; i; i, val = i-1, val>>1 {
// var do_xor bool = 1 & (val ^ crc)
// crc >>= 1;
// var tmp uint16 = 0
// if do_xor {
// tmp = polynomial
// }
// crc ^= tmp
// }
// }

// crc = ^crc
// return ((uint16)(crc << 8)) | (crc >> 8);
// }

func stress_cpu_factorial(name string) {
var f float64 = 1.0
var precision float64 = 1.0e-6

for n := 1; n < 150; n++ {
np1 := float64(n + 1)
fact := math.Round(math.Exp(math.Gamma(np1)))
var dn float64

f *= float64(n);

/* Stirling */
if (f - fact) / fact > precision {
fmt.Println("%s: Stirling's approximation of factorial(%d) out of range\n",
name, n);
}

/* Ramanujan */
dn = float64(n);
fact = math.SqrtPi * math.Pow((dn / float64(math.E)), dn)
fact *= math.Pow((((((((8 * dn) + 4)) * dn) + 1) * dn) + 1.0/30.0), (1.0/6.0));
if ((f - fact) / fact > precision) {
fmt.Println("%s: Ramanujan's approximation of factorial(%d) out of range\n",
name, n);
}
}
}

// Make a single CPU load rate reach cpuPercent% within the time interval.
// This function can also be used to implement something similar to stress-ng --cpu-load.
func stress_cpu(interval time.Duration, cpuPercent float64) {
bias := 0.0
startTime := time.Now().UnixNano()
nanoInterval := int64(interval/time.Nanosecond)
fmt.Printf("[%d]=========nanoInterval\n", nanoInterval)
for {
if time.Now().UnixNano() - startTime > nanoInterval {
break
}

startTime1 := time.Now().UnixNano()
// Loops and methods may be specified later.
for i := 0; i < len(cpu_methods); i++ {
stress_cpu_method(i)
}
endTime1 := time.Now().UnixNano()
//fmt.Println(startTime1, endTime1, cpuPercent)
delay := ((100 - cpuPercent) * float64(endTime1 - startTime1) / cpuPercent)
//fmt.Printf("delay : [%f], bias : [%f]\n", delay, bias)
delay -= bias
if delay <= 0.0 {
bias = 0.0;
} else {
startTime2 := time.Now().UnixNano()
time.Sleep(time.Duration(delay) * time.Nanosecond)
endTime2 := time.Now().UnixNano()
bias = float64(endTime2 - startTime2) - delay
}
}
}

// No need to perform subscript checking.
func stress_cpu_method(method int) {
cpu_methods[method].stress("lizhaolong");
}

0 comments on commit 3285694

Please sign in to comment.