Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typofix: change cpu's kernel to core. #75

Merged
merged 1 commit into from
Feb 23, 2021
Merged
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
6 changes: 3 additions & 3 deletions exec/cpu.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ func NewCpuCommandModelSpec() spec.ExpModelCommandSpec {
# Create a CPU full load experiment
blade create cpu load

#Specifies two random kernel's full load
#Specifies two random core's full load
blade create cpu load --cpu-percent 60 --cpu-count 2

# Specifies that the kernel is full load with index 0, 3, and that the kernel's index starts at 0
# Specifies that the core is full load with index 0, 3, and that the core's index starts at 0
blade create cpu load --cpu-list 0,3

# Specify the kernel full load of indexes 1-3
# Specify the core full load of indexes 1-3
blade create cpu load --cpu-list 1-3

# Specified percentage load
Expand Down