AWSとGCPのインスタンスやコンテナサービスを利用して、Dockerコンテナ上でアプリを動作させているのですが、CPUパフォーマンスに差があるなぁと気になったので、UnixBenchを利用して各環境のDockerコンテナ上でパフォーマンス測定してみました。
UnixBenchについて
UnixBenchについては下記が参考になります。
kdlucas/byte-unixbench: Automatically exported from code.google.com/p/byte-unixbench
https://github.com/kdlucas/byte-unixbench
UnixBenchでベンチマーク - IDCF テックブログ
https://blog.idcf.jp/entry/cloud/unixbench/
UnixBenchとは、LinuxをはじめUnix系OSでは昔からよく使われている定番のベンチマークツールです。システムのベンチマークという位置づけですが、主にCPUのベンチマークとして利用可能です。
UnixBenchでLinuxサーバのCPU性能を比較する
http://naoberry.com/tech/unixbench/
クラウドの登場により、サーバスペックを簡単に変更できるようになりました。ハードウェアレイヤが仮想化されているため、CPUはvCPUと表記されることが多く、クロック数等の明記がないことも多々見受けられます。
IaaSベンダーによっては、明確なクロック数の表記がなく、こっちのほうが高スペックです!と提示されているケースもあります。
CPUスペックの違いを可視化するために、UnixBenchを利用してみます。
まさにそうなのです。私、気になります!
Dockerイメージ
Dockerコンテナ内でパフォーマンス計測したいので、Docker Hubで公開されているイメージを利用させてもらいました。
tutum/unixbench - Docker Hub
https://hub.docker.com/r/tutum/unixbench
条件
環境構築するリージョンは下記として、計測は2019/10/29から10/31の間に実施しました。
- リージョン
- AWS: ap-northeast-1 (アジアパシフィック (東京))
- GCP
- asia-northeast1 (東京)
- us-central1 (アイオワ): N2マシンタイプ利用のため
計測対象
下記のサービスについて計測しました。
インスタンス
GCPに関してはリージョン・ゾーンの制限がなく選択しやすいN1マシンタイプを主と考えましたが、計測・比較するうちにN2マシンタイプとC2マシンタイプも対象にしたほうが良さそうでしたので含めました。
※GCPのN2とC2マシンタイプは一部のゾーンとリージョンでのみ使用できます。またN2マシンタイプはベータ版となります。
マシンタイプ | Compute Engine ドキュメント | Google Cloud
https://cloud.google.com/compute/docs/machine-types?hl=ja
これは、N2 マシンタイプのベータ版です。この機能はサービスレベル契約(SLA)や非推奨ポリシーの対象ではなく、下位互換性が維持されない可能性があります。
リージョンとゾーン | Compute Engine ドキュメント | Google Cloud
https://cloud.google.com/compute/docs/regions-zones/?hl=ja#available
インスタンスタイプ - Amazon EC2 | AWS
https://aws.amazon.com/jp/ec2/instance-types/
汎用
サービス | マシンタイプ | vCPU | メモリ(GB) | |
---|---|---|---|---|
AWS | EC2 | t2.small | 1 | 2.00 |
t2.medium | 2 | 4.00 | ||
t2.2xlarge | 8 | 32.00 | ||
GCP | Conpute Engine | n1-standard-1 | 1 | 3.75 |
n1-highcpu-2 | 2 | 1.80 | ||
n1-highcpu-8 | 8 | 7.20 | ||
n1-highcpu-16 | 16 | 14.40 |
汎用2
サービス | マシンタイプ | vCPU | メモリ(GB) | |
---|---|---|---|---|
AWS | EC2 | t3.small | 2 | 2.00 |
t3.xlarge | 4 | 16.00 | ||
t3.2xlarge | 8 | 32.00 | ||
GCP | Conpute Engine | n2-standard-2 | 2 | 8.00 |
n2-highcpu-4 | 4 | 4.00 | ||
n2-highcpu-8 | 8 | 8.00 | ||
n2-highcpu-16 | 16 | 16.00 |
コンピューティング最適化
サービス | マシンタイプ | vCPU | メモリ(GB) | |
---|---|---|---|---|
AWS | EC2 | c5.large | 2 | 4.00 |
c5.xlarge | 4 | 8.00 | ||
c5.2xlarge | 8 | 16.00 | ||
c5.4xlarge | 16 | 32.00 | ||
GCP | Conpute Engine | c2-standard-4 | 4 | 16.00 |
c2-standard-8 | 8 | 32.00 | ||
c2-standard-16 | 16 | 64.00 |
ビルドサービス
ビルドサービスもDockerコンテナで動いているので計測してみました。
サービス | マシンタイプ | vCPU | メモリ(GB) | |
---|---|---|---|---|
AWS | CodeBuild | build.general1.small | 2 | 3.00 |
build.general1.medium | 4 | 7.00 | ||
build.general1.large | 8 | 15.00 | ||
GCP | Cloud Build | n1-standard-1 | 1 | 3.75 |
n1-highcpu-8 | 8 | 7.20 | ||
n1-highcpu-32 | 32 | 28.80 |
AWS Fargate
AWS Fargateはどうなんだろうと思って対象に含めました。こちらはマシンタイプではなく、vCPUとメモリを数値で指定します。
AWS Fargate(サーバーやクラスターの管理が不要なコンテナの使用)| AWS
https://aws.amazon.com/jp/fargate/
サービス | マシンタイプ | vCPU | メモリ(GB) | |
---|---|---|---|---|
AWS | ECS - Fargate | 0.25 | 0.5 | |
0.50 | 1.0 | |||
1.00 | 2.0 | |||
2.00 | 4.0 | |||
4.00 | 8.0 |
計測方法
各環境でDockerが動作するようにして、以下コマンドを実行して情報取得と計測を行いました。
最後のほうにおまけとしてインストール方法やログなどをまとめていますので、詳細が気になる方はそちらをご確認ください。
# Docker情報取得
> docker info
# CPU情報取得
> cat /proc/cpuinfo
# UnixBench計測実行
> docker run -it --rm tutum/unixbench
計測結果
UnixBenchを実行すると、各種テストを実行しSystem Benchmarks Index Score
という総合的なスコアが得られます。
マルチコアの場合はコア数だけ並列で実行した総合的なスコアも得られます。
計測は各環境で1回のみなので、確度はよろしくありません。ご参考程度にどうぞ。(実行コストががが)
インスタンス
ホストOSとDockerバージョンは各タイプともに下記となります。
- ホストOS
- AWS: Amazon Linux 2
- GCP: Debian GNU/Linux 9
- Dockerバージョン
- AWS:
Docker version 18.06.1-ce, build e68fc7a215d7133c34aa18e3b72b4a21fd0c6136
- GCP:
Docker version 19.03.4, build 9013bf583a
- AWS:
汎用
System Benchmarks Index Score
AWSのt2とGCPのn1を比較すると、AWSのほうがシングルで130%、マルチで177%と結構な差がでました。
GCPの多くのリージョンとゾーンで利用できるのがn1となるので、もう少しスペックを上げてほしいのが本音。
サービス | マシンタイプ | Index(シングル) | Index(マルチ) | |
---|---|---|---|---|
AWS | EC2 | t2.small | 973.7 | ー |
t2.medium | 863.0 | 1,746.5 | ||
t2.2xlarge | 1,005.1 | 4,929.6 | ||
GCP | Conpute Engine | n1-standard-1 | 781.2 | ー |
n1-highcpu-2 | 680.2 | 954.3 | ||
n1-highcpu-8 | 723.3 | 2,870.8 | ||
n1-highcpu-16 | 772.1 | 4,279.8 |
CPU
サービス | マシンタイプ | CPU | |
---|---|---|---|
AWS | EC2 | t2.small | Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz |
t2.medium | Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz | ||
t2.2xlarge | Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz | ||
GCP | Conpute Engine | n1-standard-1 | Intel(R) Xeon(R) CPU @ 2.20GHz |
n1-highcpu-2 | Intel(R) Xeon(R) CPU @ 2.20GHz | ||
n1-highcpu-8 | Intel(R) Xeon(R) CPU @ 2.20GHz | ||
n1-highcpu-16 | Intel(R) Xeon(R) CPU @ 2.20GHz |
汎用2
System Benchmarks Index Score
AWSのt3とGCPのn2を比較するとGCPのほうがシングルで103%、マルチが211%!という結果になりました。
現在ベータ版となるGCPのn2ですが、早く主流になってほしいですね。(2019/11/07時点)
サービス | マシンタイプ | Index(シングル) | Index(マルチ) | |
---|---|---|---|---|
AWS | EC2 | t3.small | 938.4 | 389.9 |
t3.xlarge | 1,059.2 | 1,957.6 | ||
t3.2xlarge | 1,013.8 | 3,568.5 | ||
GCP | Conpute Engine | n2-standard-2 | 975.6 | 1,500.3 |
n2-highcpu-4 | 1,033.2 | 2,566.9 | ||
n2-highcpu-8 | 1,095.7 | 4,207.2 | ||
GCP | 比較対象外 | |||
n2-highcpu-16 | 1,100.5 | 6,561.6 |
CPU
サービス | マシンタイプ | CPU | |
---|---|---|---|
AWS | EC2 | t3.small | Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz |
t3.xlarge | Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz | ||
t3.2xlarge | Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz | ||
GCP | Conpute Engine | n2-standard-2 | Intel(R) Xeon(R) CPU @ 2.80GHz |
n2-highcpu-4 | Intel(R) Xeon(R) CPU @ 2.80GHz | ||
n2-highcpu-8 | Intel(R) Xeon(R) CPU @ 2.80GHz | ||
n2-highcpu-16 | Intel(R) Xeon(R) CPU @ 2.80GHz |
コンピューティング最適化
System Benchmarks Index Score
AWSのc5とGCPのc2を比較するとAWSのほうがシングルで114%、マルチが112%という結果になりました。(AWSのc5.largeは比較対象外)このくらいの差であればまあどちらでも良いかなという感じです。
サービス | マシンタイプ | Index(シングル) | Index(マルチ) | |
---|---|---|---|---|
AWS | EC2 | c5.large | 1,177.7 | 1,702.7 |
c5.xlarge | 1,187.3 | 2,852.0 | ||
c5.2xlarge | 1,230.3 | 4,712.0 | ||
c5.4xlarge | 1,275.0 | 7,457.3 | ||
GCP | Conpute Engine | c2-standard-4 | 1,121.6 | 2,742.0 |
c2-standard-8 | 1,170.4 | 4,382.6 | ||
c2-standard-16 | 1,184.6 | 6,836.8 |
CPU
サービス | マシンタイプ | CPU | |
---|---|---|---|
AWS | EC2 | c5.large | Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz |
c5.xlarge | Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz | ||
c5.2xlarge | Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz | ||
c5.4xlarge | Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz | ||
GCP | Conpute Engine | c2-standard-4 | Intel(R) Xeon(R) CPU @ 3.10GHz |
c2-standard-8 | Intel(R) Xeon(R) CPU @ 3.10GHz | ||
c2-standard-16 | Intel(R) Xeon(R) CPU @ 3.10GHz |
ビルドサービス
vCPU x 8となるAWSのbuild.general1.large
とGCPのn1-highcpu-8
でAWSがシングル・マルチ合わせて117%ほど良い結果となりました。
System Benchmarks Index Score
サービス | マシンタイプ | Index(シングル) | Index(マルチ) | |
---|---|---|---|---|
AWS | CodeBuild | build.general1.small | 1,054.0 | 1,490.1 |
build.general1.medium | 1,116.2 | 2,558.4 | ||
build.general1.large | 1,162.5 | 4,059.2 | ||
GCP | Cloud Build | n1-standard-1 | 937.9 | ー |
n1-highcpu-8 | 925.0 | 3,452.5 | ||
n1-highcpu-32 | 979.9 | ー |
GCPのn1-highcpu-32
でマルチコアの結果がありませんが、UnixBenchの制限で16コア以上だとテストがスキップされるそうです。下記にパッチの当て方がありましたが今回は対応せず。
UnixBench計測した - Qiita
https://qiita.com/tukiyo3/items/680888014256a1eb785a#16%E3%82%B3%E3%82%A2%E3%82%92%E8%B6%85%E3%81%88%E3%82%8B%E5%A0%B4%E5%90%88%E3%81%AE%E3%83%91%E3%83%83%E3%83%81
CPU
サービス | マシンタイプ | CPU | |
---|---|---|---|
AWS | CodeBuild | build.general1.small | Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz |
build.general1.medium | Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz | ||
build.general1.large | Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz | ||
GCP | Cloud Build | n1-standard-1 | Intel(R) Xeon(R) CPU @ 2.20GHz |
n1-highcpu-8 | Intel(R) Xeon(R) CPU @ 2.20GHz | ||
n1-highcpu-32 | Intel(R) Xeon(R) CPU @ 2.20GHz |
AWS Fargate
System Benchmarks Index Score
試しに計測してみたAWS Fargateですが、vCPUの数値が上がるにつれIndexも良くなっています。
|vCPU |メモリ
(GB) |Index(シングル)|Index(マルチ)|
|---: |---: |---|---: |---: |
| 0.25 | 0.5 | 214.5| 248.3|
| 0.50 | 1.0 | 466.8| 411.5|
| 1.00 | 2.0 | 875.5| 773.7|
| 2.00 | 4.0 | 1,001.0| 1,393.4|
| 4.00 | 8.0 | 1,102.1| 2,363.4|
CPU
CPUは0.25と4.00が他と異なるCPUとなっていました。
|vCPU |メモリ
(GB) |CPU|
|---: |---: |---|---: |---: |
| 0.25 | 0.5 |Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz|
| 0.50 | 1.0 |Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz|
| 1.00 | 2.0 |Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz|
| 2.00 | 4.0 |Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz|
| 4.00 | 8.0 |Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz|
今回始めて知ったのですが、vCPUの指定と実際のコア数は関連しないようです。そもそもvCPUが0.25
だったらコア数どうなるの?って話なので、まあ実はマルチコアで動作してる。って覚えておくと、いつの日にか役に立つことがあるかもですね。0.25、0.5〜2、4とでCPUが異なっていうのも豆知識になりそうです。ただし、マネージドなサービスなので、いつCPU種類や仕様が変わるかも不明ですので、へぇ〜程度にみておいたほうが良いと思います。
古めの投稿ですが、こちらだとマルチコアでかつCPU種類が異なっていたようです。
FargateのvCPU性能と価格感等雑感 - Qiita
https://qiita.com/nabeken/items/69b47e2d346a61d34176
まとめ
インスタンスに関しては両者ともに選択肢があり、ワークロードに最適なタイプを選択することができそうですが、ビルドサービスに関してはタイプ選択の幅がせまいので、パフォーマンスがほしい場合にはAWSかなという状況でした。
同じにように比較している記事をざっくりと調べてみた限り、AWS > GCPとなる結果が多いみたいです。
[AWS vs GCP] EC2 vs GCE 〜CPU性能〜 - Qiita
https://qiita.com/endam/items/828b187385d96ff2a983
どちらが全体的に優秀なのか、AmazonとGoogleのクラウドのパフォーマンスを比較した結果 - GIGAZINE
https://gigazine.net/news/20181217-aws-gcp-cloud-report/
AWS Alibaba Azure GCPの仮想サーバー性能比較 - Qiita
https://qiita.com/ushijimay/items/28b51fbc14573cf7f9be
AWS EC2 と GCE(Google Compute Engine)を徹底的にベンチマークしてみた | あぱーブログ
https://blog.apar.jp/web/7042/
AWS、GCP、さくらのクラウド でUnixBench CPU性能比較 - Qiita
https://qiita.com/T-Yam/items/bc058bd055fe0b229d50
IaaSクラウドサーバーのベンチマーク(2016年9月版) | 稲葉サーバーデザイン
https://inaba-serverdesign.jp/blog/20160921/iaas_cloud_benchmark_201609.html
参考
kdlucas/byte-unixbench: Automatically exported from code.google.com/p/byte-unixbench
https://github.com/kdlucas/byte-unixbench
UnixBenchでベンチマーク - IDCF テックブログ
https://blog.idcf.jp/entry/cloud/unixbench/
UnixBenchでLinuxサーバのCPU性能を比較する
http://naoberry.com/tech/unixbench/
UnixBenchでDockerのベンチマークとってみた - Qiita
https://qiita.com/ariarijp/items/9434258faec356ebc76f
マシンタイプ | Compute Engine ドキュメント | Google Cloud
https://cloud.google.com/compute/docs/machine-types?hl=ja
リージョンとゾーン | Compute Engine ドキュメント | Google Cloud
https://cloud.google.com/compute/docs/regions-zones/?hl=ja#available
tutum/unixbench - Docker Hub
https://hub.docker.com/r/tutum/unixbench
AWS Fargate(サーバーやクラスターの管理が不要なコンテナの使用)| AWS
https://aws.amazon.com/jp/fargate/
UnixBench計測した - Qiita
https://qiita.com/tukiyo3/items/680888014256a1eb785a
FargateのvCPU性能と価格感等雑感 - Qiita
https://qiita.com/nabeken/items/69b47e2d346a61d34176
Linuxの性能をチェックするunixbenchの使い方:なんとなしの日記
http://babyp.blog55.fc2.com/blog-entry-822.html
[AWS vs GCP] EC2 vs GCE 〜CPU性能〜 - Qiita
https://qiita.com/endam/items/828b187385d96ff2a983
どちらが全体的に優秀なのか、AmazonとGoogleのクラウドのパフォーマンスを比較した結果 - GIGAZINE
https://gigazine.net/news/20181217-aws-gcp-cloud-report/
AWS Alibaba Azure GCPの仮想サーバー性能比較 - Qiita
https://qiita.com/ushijimay/items/28b51fbc14573cf7f9be
AWS EC2 と GCE(Google Compute Engine)を徹底的にベンチマークしてみた | あぱーブログ
https://blog.apar.jp/web/7042/
AWS、GCP、さくらのクラウド でUnixBench CPU性能比較 - Qiita
https://qiita.com/T-Yam/items/bc058bd055fe0b229d50
IaaSクラウドサーバーのベンチマーク(2016年9月版) | 稲葉サーバーデザイン
https://inaba-serverdesign.jp/blog/20160921/iaas_cloud_benchmark_201609.html
AWS CodeBuildでUnity ML-Agentsを動作させる(v0.9.1対応) - Qiita
https://qiita.com/kai_kou/items/2201db5d761cf450fb90
おまけ
環境のセットアップ方法や実行時のログなどを置いておきます。
セットアップ
ざっくりと各環境での実行までの手順となります。
AWS EC2
# Dockerインストール
> sudo yum install -y docker
> sudo service docker start
> sudo usermod -a -G docker ec2-user
# 再ログイン
> exit
> docker --version
Docker version 18.06.1-ce, build e68fc7a215d7133c34aa18e3b72b4a21fd0c6136
GCP Conpute Engine
> curl -fsSL https://get.docker.com -o get-docker.sh
> sudo sh get-docker.sh
> sudo systemctl start docker
> docker --version
Docker version 19.03.4, build 9013bf583a
AWS CodeBuild
下記を参考にしてCodeBuildのプロジェクトを作成する。
AWS CodeBuildでUnity ML-Agentsを動作させる(v0.9.1対応) - Qiita
https://qiita.com/kai_kou/items/2201db5d761cf450fb90
version: 0.2
phases:
install:
runtime-versions:
docker: 18
build:
commands:
- cd /app/UnixBench
# - ./Run
- cat /proc/cpuinfo
上記buildspec.yaml
を用意してコマンド実行する。
> aws codebuild start-build \
--region ap-northeast-1 \
--project-name <作成したプロジェクトの名前> \
--timeout-in-minutes-override 60 \
--buildspec-override file://buildspec.yaml \
--image-override tutum/unixbench \
--compute-type-override BUILD_GENERAL1_SMALL
# コンピューティングタイプ
# - BUILD_GENERAL1_SMALL
# - BUILD_GENERAL1_MEDIUM
# - BUILD_GENERAL1_LARGE
GCP Cloud Build
steps:
- name: 'tutum/unixbench'
dir: /app/UnixBench
entrypoint: 'bash'
args: ['-c', 'cat /proc/cpuinfo']
- name: 'tutum/unixbench'
dir: /app/UnixBench
timeout: 3600s
options:
machineType: UNSPECIFIED
# マシンタイプ
# UNSPECIFIED (n1-standard-1)
# N1_HIGHCPU_8
# N1_HIGHCPU_32
上記cloudbuild.yaml
を用意してコマンド実行する。
> gcloud builds submit \
--config cloudbuild-unixbench.yaml \
--no-source \
--async
AWS Fargate
Fargate用のクラスタと、以下のJSONを参考にしてFargate互換のタスク定義を作成してタスク実行する。
※ CPUとメモリはタスクの新しいリビジョンを作成して変更。
{
"ipcMode": null,
"executionRoleArn": "arn:aws:iam::<AWS ACCOUNT ID>:role/ecsTaskExecutionRole",
"containerDefinitions": [
{
"dnsSearchDomains": null,
"logConfiguration": {
"logDriver": "awslogs",
"secretOptions": null,
"options": {
"awslogs-group": "/ecs/unix-bench-fargate-task",
"awslogs-region": "ap-northeast-1",
"awslogs-stream-prefix": "ecs"
}
},
"entryPoint": [
"bash",
"-c"
],
"portMappings": [],
"command": [
"cat /proc/cpuinfo"
],
"linuxParameters": null,
"cpu": 0,
"environment": [],
"resourceRequirements": null,
"ulimits": null,
"dnsServers": null,
"mountPoints": [],
"workingDirectory": null,
"secrets": null,
"dockerSecurityOptions": null,
"memory": null,
"memoryReservation": null,
"volumesFrom": [],
"stopTimeout": null,
"image": "tutum/unixbench",
"startTimeout": null,
"firelensConfiguration": null,
"dependsOn": null,
"disableNetworking": null,
"interactive": null,
"healthCheck": null,
"essential": false,
"links": null,
"hostname": null,
"extraHosts": null,
"pseudoTerminal": null,
"user": null,
"readonlyRootFilesystem": null,
"dockerLabels": null,
"systemControls": null,
"privileged": null,
"name": "cpuinfo"
},
{
"dnsSearchDomains": null,
"logConfiguration": {
"logDriver": "awslogs",
"secretOptions": null,
"options": {
"awslogs-group": "/ecs/unix-bench-fargate-task",
"awslogs-region": "ap-northeast-1",
"awslogs-stream-prefix": "ecs"
}
},
"entryPoint": null,
"portMappings": [],
"command": null,
"linuxParameters": null,
"cpu": 0,
"environment": [],
"resourceRequirements": null,
"ulimits": null,
"dnsServers": null,
"mountPoints": [],
"workingDirectory": "/app/UnixBench",
"secrets": null,
"dockerSecurityOptions": null,
"memory": null,
"memoryReservation": null,
"volumesFrom": [],
"stopTimeout": null,
"image": "tutum/unixbench",
"startTimeout": null,
"firelensConfiguration": null,
"dependsOn": [
{
"containerName": "cpuinfo",
"condition": "SUCCESS"
}
],
"disableNetworking": null,
"interactive": null,
"healthCheck": null,
"essential": true,
"links": null,
"hostname": null,
"extraHosts": null,
"pseudoTerminal": null,
"user": null,
"readonlyRootFilesystem": null,
"dockerLabels": null,
"systemControls": null,
"privileged": null,
"name": "run"
}
],
"placementConstraints": [],
"memory": "1024",
"taskRoleArn": null,
"family": "unix-bench-fargate-task",
"pidMode": null,
"requiresCompatibilities": [
"FARGATE"
],
"networkMode": "awsvpc",
"cpu": "512",
"inferenceAccelerators": null,
"proxyConfiguration": null,
"volumes": [],
"tags": []
}
計測ログ
計測時のログとなります。
すっごく長いので縮めておきます。
AWS EC2
t2.small
$ docker info
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 1
Total Memory: 1.945GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz
stepping : 2
microcode : 0x43
cpu MHz : 2400.004
cache size : 30720 KB
physical id : 0
siblings : 1
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4800.09
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: 95011afc1d84: GNU/Linux
OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz (4800.1 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
03:54:05 up 1 min, 0 users, load average: 0.05, 0.02, 0.00; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 03:54:05 - 04:22:08
1 CPU in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 30945978.6 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4003.1 MWIPS (9.8 s, 7 samples)
Execl Throughput 4116.7 lps (29.6 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 500677.4 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 130062.4 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1522916.5 KBps (30.0 s, 2 samples)
Pipe Throughput 626857.0 lps (10.0 s, 7 samples)
Pipe-based Context Switching 171768.9 lps (10.0 s, 7 samples)
Process Creation 10507.8 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 7869.0 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1024.9 lpm (60.0 s, 2 samples)
System Call Overhead 394912.9 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 30945978.6 2651.8
Double-Precision Whetstone 55.0 4003.1 727.8
Execl Throughput 43.0 4116.7 957.4
File Copy 1024 bufsize 2000 maxblocks 3960.0 500677.4 1264.3
File Copy 256 bufsize 500 maxblocks 1655.0 130062.4 785.9
File Copy 4096 bufsize 8000 maxblocks 5800.0 1522916.5 2625.7
Pipe Throughput 12440.0 626857.0 503.9
Pipe-based Context Switching 4000.0 171768.9 429.4
Process Creation 126.0 10507.8 834.0
Shell Scripts (1 concurrent) 42.4 7869.0 1855.9
Shell Scripts (8 concurrent) 6.0 1024.9 1708.1
System Call Overhead 15000.0 394912.9 263.3
========
System Benchmarks Index Score 973.7
t2.medium
$ docker info
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 3.851GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz
stepping : 2
microcode : 0x43
cpu MHz : 2399.915
cache size : 30720 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4800.17
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz
stepping : 2
microcode : 0x43
cpu MHz : 2399.915
cache size : 30720 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4800.17
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
------------------------------------------------------------------------
Benchmark Run: Tue Oct 29 2019 06:16:21 - 06:44:28
2 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 31255357.8 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4505.6 MWIPS (10.6 s, 7 samples)
Execl Throughput 3816.9 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 496757.3 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 128935.9 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1538545.9 KBps (30.0 s, 2 samples)
Pipe Throughput 621635.5 lps (10.0 s, 7 samples)
Pipe-based Context Switching 34023.1 lps (10.0 s, 7 samples)
Process Creation 6844.3 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 8686.0 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1619.2 lpm (60.0 s, 2 samples)
System Call Overhead 397473.0 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 31255357.8 2678.3
Double-Precision Whetstone 55.0 4505.6 819.2
Execl Throughput 43.0 3816.9 887.6
File Copy 1024 bufsize 2000 maxblocks 3960.0 496757.3 1254.4
File Copy 256 bufsize 500 maxblocks 1655.0 128935.9 779.1
File Copy 4096 bufsize 8000 maxblocks 5800.0 1538545.9 2652.7
Pipe Throughput 12440.0 621635.5 499.7
Pipe-based Context Switching 4000.0 34023.1 85.1
Process Creation 126.0 6844.3 543.2
Shell Scripts (1 concurrent) 42.4 8686.0 2048.6
Shell Scripts (8 concurrent) 6.0 1619.2 2698.6
System Call Overhead 15000.0 397473.0 265.0
========
System Benchmarks Index Score 863.0
------------------------------------------------------------------------
Benchmark Run: Tue Oct 29 2019 06:44:28 - 07:12:37
2 CPUs in system; running 2 parallel copies of tests
Dhrystone 2 using register variables 62735214.9 lps (10.0 s, 7 samples)
Double-Precision Whetstone 8923.4 MWIPS (10.7 s, 7 samples)
Execl Throughput 7170.9 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 916919.1 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 238366.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2664924.4 KBps (30.0 s, 2 samples)
Pipe Throughput 1237848.0 lps (10.0 s, 7 samples)
Pipe-based Context Switching 304878.6 lps (10.0 s, 7 samples)
Process Creation 14953.4 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 11446.8 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1749.5 lpm (60.0 s, 2 samples)
System Call Overhead 765273.2 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 62735214.9 5375.8
Double-Precision Whetstone 55.0 8923.4 1622.4
Execl Throughput 43.0 7170.9 1667.6
File Copy 1024 bufsize 2000 maxblocks 3960.0 916919.1 2315.5
File Copy 256 bufsize 500 maxblocks 1655.0 238366.5 1440.3
File Copy 4096 bufsize 8000 maxblocks 5800.0 2664924.4 4594.7
Pipe Throughput 12440.0 1237848.0 995.1
Pipe-based Context Switching 4000.0 304878.6 762.2
Process Creation 126.0 14953.4 1186.8
Shell Scripts (1 concurrent) 42.4 11446.8 2699.7
Shell Scripts (8 concurrent) 6.0 1749.5 2915.8
System Call Overhead 15000.0 765273.2 510.2
========
System Benchmarks Index Score 1746.5
t2.2xlarge
$ docker info
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 8
Total Memory: 31.41GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz
stepping : 2
microcode : 0x43
cpu MHz : 2394.682
cache size : 30720 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 8
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4789.07
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:52:39 - 03:20:41
8 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 33943423.7 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4351.3 MWIPS (9.8 s, 7 samples)
Execl Throughput 4237.1 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 542618.4 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 138892.4 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1890891.3 KBps (30.0 s, 2 samples)
Pipe Throughput 674198.0 lps (10.0 s, 7 samples)
Pipe-based Context Switching 36166.4 lps (10.0 s, 7 samples)
Process Creation 6944.1 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 10301.7 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 3992.9 lpm (60.0 s, 2 samples)
System Call Overhead 429673.0 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 33943423.7 2908.6
Double-Precision Whetstone 55.0 4351.3 791.1
Execl Throughput 43.0 4237.1 985.4
File Copy 1024 bufsize 2000 maxblocks 3960.0 542618.4 1370.2
File Copy 256 bufsize 500 maxblocks 1655.0 138892.4 839.2
File Copy 4096 bufsize 8000 maxblocks 5800.0 1890891.3 3260.2
Pipe Throughput 12440.0 674198.0 542.0
Pipe-based Context Switching 4000.0 36166.4 90.4
Process Creation 126.0 6944.1 551.1
Shell Scripts (1 concurrent) 42.4 10301.7 2429.7
Shell Scripts (8 concurrent) 6.0 3992.9 6654.9
System Call Overhead 15000.0 429673.0 286.4
========
System Benchmarks Index Score 1005.1
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 03:20:41 - 03:48:46
8 CPUs in system; running 8 parallel copies of tests
Dhrystone 2 using register variables 247318013.5 lps (10.0 s, 7 samples)
Double-Precision Whetstone 32094.1 MWIPS (9.8 s, 7 samples)
Execl Throughput 24508.6 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 1323948.6 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 349898.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 3962521.4 KBps (30.0 s, 2 samples)
Pipe Throughput 4930084.8 lps (10.0 s, 7 samples)
Pipe-based Context Switching 1174661.4 lps (10.0 s, 7 samples)
Process Creation 37322.6 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 37191.5 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 5984.6 lpm (60.0 s, 2 samples)
System Call Overhead 3008828.6 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 247318013.5 21192.6
Double-Precision Whetstone 55.0 32094.1 5835.3
Execl Throughput 43.0 24508.6 5699.7
File Copy 1024 bufsize 2000 maxblocks 3960.0 1323948.6 3343.3
File Copy 256 bufsize 500 maxblocks 1655.0 349898.5 2114.2
File Copy 4096 bufsize 8000 maxblocks 5800.0 3962521.4 6831.9
Pipe Throughput 12440.0 4930084.8 3963.1
Pipe-based Context Switching 4000.0 1174661.4 2936.7
Process Creation 126.0 37322.6 2962.1
Shell Scripts (1 concurrent) 42.4 37191.5 8771.6
Shell Scripts (8 concurrent) 6.0 5984.6 9974.3
System Call Overhead 15000.0 3008828.6 2005.9
========
System Benchmarks Index Score 4929.6
c5.large
$ docker info
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 3.618GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 3398.180
cache size : 25344 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.01
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 3414.705
cache size : 25344 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.01
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: 2bac389e2fbb: GNU/Linux
OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
04:28:28 up 1 min, 0 users, load average: 0.07, 0.04, 0.01; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 04:28:28 - 04:56:41
2 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 41522907.7 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4362.6 MWIPS (11.2 s, 7 samples)
Execl Throughput 5223.1 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 654344.6 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 169949.0 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1996926.0 KBps (30.0 s, 2 samples)
Pipe Throughput 830655.2 lps (10.0 s, 7 samples)
Pipe-based Context Switching 74304.7 lps (10.0 s, 7 samples)
Process Creation 12421.8 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 11220.5 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1793.7 lpm (60.0 s, 2 samples)
System Call Overhead 551076.0 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 41522907.7 3558.1
Double-Precision Whetstone 55.0 4362.6 793.2
Execl Throughput 43.0 5223.1 1214.7
File Copy 1024 bufsize 2000 maxblocks 3960.0 654344.6 1652.4
File Copy 256 bufsize 500 maxblocks 1655.0 169949.0 1026.9
File Copy 4096 bufsize 8000 maxblocks 5800.0 1996926.0 3443.0
Pipe Throughput 12440.0 830655.2 667.7
Pipe-based Context Switching 4000.0 74304.7 185.8
Process Creation 126.0 12421.8 985.9
Shell Scripts (1 concurrent) 42.4 11220.5 2646.3
Shell Scripts (8 concurrent) 6.0 1793.7 2989.5
System Call Overhead 15000.0 551076.0 367.4
========
System Benchmarks Index Score 1177.7
------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 04:56:41 - 05:24:43
2 CPUs in system; running 2 parallel copies of tests
Dhrystone 2 using register variables 51887669.4 lps (10.0 s, 7 samples)
Double-Precision Whetstone 8733.7 MWIPS (9.9 s, 7 samples)
Execl Throughput 7190.5 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 850874.9 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 220727.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2787336.1 KBps (30.0 s, 2 samples)
Pipe Throughput 1116134.5 lps (10.0 s, 7 samples)
Pipe-based Context Switching 270850.1 lps (10.0 s, 7 samples)
Process Creation 16543.9 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 13120.1 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1827.2 lpm (60.0 s, 2 samples)
System Call Overhead 728913.9 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 51887669.4 4446.2
Double-Precision Whetstone 55.0 8733.7 1587.9
Execl Throughput 43.0 7190.5 1672.2
File Copy 1024 bufsize 2000 maxblocks 3960.0 850874.9 2148.7
File Copy 256 bufsize 500 maxblocks 1655.0 220727.5 1333.7
File Copy 4096 bufsize 8000 maxblocks 5800.0 2787336.1 4805.8
Pipe Throughput 12440.0 1116134.5 897.2
Pipe-based Context Switching 4000.0 270850.1 677.1
Process Creation 126.0 16543.9 1313.0
Shell Scripts (1 concurrent) 42.4 13120.1 3094.4
Shell Scripts (8 concurrent) 6.0 1827.2 3045.3
System Call Overhead 15000.0 728913.9 485.9
========
System Benchmarks Index Score 1702.7
c5.xlarge
$ docker info
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 7.446GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 3372.044
cache size : 25344 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.01
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 3398.003
cache size : 25344 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.01
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 3401.153
cache size : 25344 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.01
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 3426.809
cache size : 25344 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.01
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: 768763ede93e: GNU/Linux
OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) Platinum 8124M CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
07:06:04 up 3 min, 0 users, load average: 0.13, 0.06, 0.01; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 07:06:04 - 07:34:17
4 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 41538631.2 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4362.5 MWIPS (11.2 s, 7 samples)
Execl Throughput 5052.5 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 632610.4 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 170124.4 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1688876.5 KBps (30.0 s, 2 samples)
Pipe Throughput 831829.7 lps (10.0 s, 7 samples)
Pipe-based Context Switching 68962.8 lps (10.0 s, 7 samples)
Process Creation 10559.0 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 12545.7 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 2830.0 lpm (60.0 s, 2 samples)
System Call Overhead 550539.6 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 41538631.2 3559.4
Double-Precision Whetstone 55.0 4362.5 793.2
Execl Throughput 43.0 5052.5 1175.0
File Copy 1024 bufsize 2000 maxblocks 3960.0 632610.4 1597.5
File Copy 256 bufsize 500 maxblocks 1655.0 170124.4 1027.9
File Copy 4096 bufsize 8000 maxblocks 5800.0 1688876.5 2911.9
Pipe Throughput 12440.0 831829.7 668.7
Pipe-based Context Switching 4000.0 68962.8 172.4
Process Creation 126.0 10559.0 838.0
Shell Scripts (1 concurrent) 42.4 12545.7 2958.9
Shell Scripts (8 concurrent) 6.0 2830.0 4716.7
System Call Overhead 15000.0 550539.6 367.0
========
System Benchmarks Index Score 1187.3
------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 07:34:17 - 08:02:19
4 CPUs in system; running 4 parallel copies of tests
Dhrystone 2 using register variables 103304403.0 lps (10.0 s, 7 samples)
Double-Precision Whetstone 17398.6 MWIPS (10.0 s, 7 samples)
Execl Throughput 11988.8 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 1154003.6 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 322494.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 3277828.0 KBps (30.0 s, 2 samples)
Pipe Throughput 2203745.3 lps (10.0 s, 7 samples)
Pipe-based Context Switching 524941.5 lps (10.0 s, 7 samples)
Process Creation 24336.1 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 22128.9 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 3203.6 lpm (60.0 s, 2 samples)
System Call Overhead 1385777.2 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 103304403.0 8852.1
Double-Precision Whetstone 55.0 17398.6 3163.4
Execl Throughput 43.0 11988.8 2788.1
File Copy 1024 bufsize 2000 maxblocks 3960.0 1154003.6 2914.2
File Copy 256 bufsize 500 maxblocks 1655.0 322494.5 1948.6
File Copy 4096 bufsize 8000 maxblocks 5800.0 3277828.0 5651.4
Pipe Throughput 12440.0 2203745.3 1771.5
Pipe-based Context Switching 4000.0 524941.5 1312.4
Process Creation 126.0 24336.1 1931.4
Shell Scripts (1 concurrent) 42.4 22128.9 5219.1
Shell Scripts (8 concurrent) 6.0 3203.6 5339.3
System Call Overhead 15000.0 1385777.2 923.9
========
System Benchmarks Index Score 2852.0
c5.2xlarge
$ docker info
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 8
Total Memory: 15.21GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping : 7
microcode : 0x500002c
cpu MHz : 3602.479
cache size : 36608 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 4
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping : 7
microcode : 0x500002c
cpu MHz : 3601.723
cache size : 36608 KB
physical id : 0
siblings : 8
core id : 1
cpu cores : 4
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping : 7
microcode : 0x500002c
cpu MHz : 3601.042
cache size : 36608 KB
physical id : 0
siblings : 8
core id : 2
cpu cores : 4
apicid : 4
initial apicid : 4
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping : 7
microcode : 0x500002c
cpu MHz : 3601.934
cache size : 36608 KB
physical id : 0
siblings : 8
core id : 3
cpu cores : 4
apicid : 6
initial apicid : 6
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 4
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping : 7
microcode : 0x500002c
cpu MHz : 3600.828
cache size : 36608 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 4
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 5
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping : 7
microcode : 0x500002c
cpu MHz : 3600.257
cache size : 36608 KB
physical id : 0
siblings : 8
core id : 1
cpu cores : 4
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 6
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping : 7
microcode : 0x500002c
cpu MHz : 3599.981
cache size : 36608 KB
physical id : 0
siblings : 8
core id : 2
cpu cores : 4
apicid : 5
initial apicid : 5
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 7
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping : 7
microcode : 0x500002c
cpu MHz : 3600.425
cache size : 36608 KB
physical id : 0
siblings : 8
core id : 3
cpu cores : 4
apicid : 7
initial apicid : 7
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 6000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: 54923d3f3f42: GNU/Linux
OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 4: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 5: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 6: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 7: Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz (6000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
06:03:46 up 26 min, 0 users, load average: 0.04, 0.01, 0.00; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 06:03:46 - 06:32:15
8 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 44004072.0 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4074.3 MWIPS (12.8 s, 7 samples)
Execl Throughput 5293.8 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 598197.2 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 161087.9 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1794664.2 KBps (30.0 s, 2 samples)
Pipe Throughput 787369.6 lps (10.0 s, 7 samples)
Pipe-based Context Switching 70064.6 lps (10.0 s, 7 samples)
Process Creation 10810.5 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 13493.6 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 4423.0 lpm (60.0 s, 2 samples)
System Call Overhead 516911.1 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 44004072.0 3770.7
Double-Precision Whetstone 55.0 4074.3 740.8
Execl Throughput 43.0 5293.8 1231.1
File Copy 1024 bufsize 2000 maxblocks 3960.0 598197.2 1510.6
File Copy 256 bufsize 500 maxblocks 1655.0 161087.9 973.3
File Copy 4096 bufsize 8000 maxblocks 5800.0 1794664.2 3094.2
Pipe Throughput 12440.0 787369.6 632.9
Pipe-based Context Switching 4000.0 70064.6 175.2
Process Creation 126.0 10810.5 858.0
Shell Scripts (1 concurrent) 42.4 13493.6 3182.5
Shell Scripts (8 concurrent) 6.0 4423.0 7371.7
System Call Overhead 15000.0 516911.1 344.6
========
System Benchmarks Index Score 1230.3
------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 06:32:15 - 07:00:19
8 CPUs in system; running 8 parallel copies of tests
Dhrystone 2 using register variables 238879814.5 lps (10.0 s, 7 samples)
Double-Precision Whetstone 37067.8 MWIPS (10.0 s, 7 samples)
Execl Throughput 23583.4 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 1107975.3 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 296325.2 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 3347685.8 KBps (30.0 s, 2 samples)
Pipe Throughput 4313703.7 lps (10.0 s, 7 samples)
Pipe-based Context Switching 1062537.7 lps (10.0 s, 7 samples)
Process Creation 44143.4 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 40015.9 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 6171.7 lpm (60.0 s, 2 samples)
System Call Overhead 2622021.4 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 238879814.5 20469.6
Double-Precision Whetstone 55.0 37067.8 6739.6
Execl Throughput 43.0 23583.4 5484.5
File Copy 1024 bufsize 2000 maxblocks 3960.0 1107975.3 2797.9
File Copy 256 bufsize 500 maxblocks 1655.0 296325.2 1790.5
File Copy 4096 bufsize 8000 maxblocks 5800.0 3347685.8 5771.9
Pipe Throughput 12440.0 4313703.7 3467.6
Pipe-based Context Switching 4000.0 1062537.7 2656.3
Process Creation 126.0 44143.4 3503.4
Shell Scripts (1 concurrent) 42.4 40015.9 9437.7
Shell Scripts (8 concurrent) 6.0 6171.7 10286.2
System Call Overhead 15000.0 2622021.4 1748.0
========
System Benchmarks Index Score 4712.0
c5.4xlarge
$ docker info
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 16
Total Memory: 30.63GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8275CL CPU @ 3.00GHz
stepping : 7
microcode : 0x500002c
cpu MHz : 3602.015
cache size : 36608 KB
physical id : 0
siblings : 16
core id : 0
cpu cores : 8
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5999.99
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 05:29:19 - 05:57:47
16 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 44043236.9 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4076.5 MWIPS (12.8 s, 7 samples)
Execl Throughput 5408.5 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 617417.5 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 161781.3 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2014798.0 KBps (30.0 s, 2 samples)
Pipe Throughput 789530.6 lps (10.0 s, 7 samples)
Pipe-based Context Switching 71475.6 lps (10.0 s, 7 samples)
Process Creation 10191.4 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 14143.5 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 5653.2 lpm (60.0 s, 2 samples)
System Call Overhead 515450.4 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 44043236.9 3774.1
Double-Precision Whetstone 55.0 4076.5 741.2
Execl Throughput 43.0 5408.5 1257.8
File Copy 1024 bufsize 2000 maxblocks 3960.0 617417.5 1559.1
File Copy 256 bufsize 500 maxblocks 1655.0 161781.3 977.5
File Copy 4096 bufsize 8000 maxblocks 5800.0 2014798.0 3473.8
Pipe Throughput 12440.0 789530.6 634.7
Pipe-based Context Switching 4000.0 71475.6 178.7
Process Creation 126.0 10191.4 808.8
Shell Scripts (1 concurrent) 42.4 14143.5 3335.7
Shell Scripts (8 concurrent) 6.0 5653.2 9422.1
System Call Overhead 15000.0 515450.4 343.6
========
System Benchmarks Index Score 1275.0
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 05:57:47 - 06:25:52
16 CPUs in system; running 16 parallel copies of tests
Dhrystone 2 using register variables 468653376.0 lps (10.0 s, 7 samples)
Double-Precision Whetstone 73527.4 MWIPS (10.1 s, 7 samples)
Execl Throughput 42320.7 lps (29.5 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 1080726.7 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 286272.0 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 3540014.1 KBps (30.0 s, 2 samples)
Pipe Throughput 8693885.6 lps (10.0 s, 7 samples)
Pipe-based Context Switching 2137921.0 lps (10.0 s, 7 samples)
Process Creation 62024.1 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 75200.0 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 10889.3 lpm (60.0 s, 2 samples)
System Call Overhead 4923966.8 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 468653376.0 40158.8
Double-Precision Whetstone 55.0 73527.4 13368.6
Execl Throughput 43.0 42320.7 9842.0
File Copy 1024 bufsize 2000 maxblocks 3960.0 1080726.7 2729.1
File Copy 256 bufsize 500 maxblocks 1655.0 286272.0 1729.7
File Copy 4096 bufsize 8000 maxblocks 5800.0 3540014.1 6103.5
Pipe Throughput 12440.0 8693885.6 6988.7
Pipe-based Context Switching 4000.0 2137921.0 5344.8
Process Creation 126.0 62024.1 4922.5
Shell Scripts (1 concurrent) 42.4 75200.0 17735.9
Shell Scripts (8 concurrent) 6.0 10889.3 18148.8
System Call Overhead 15000.0 4923966.8 3282.6
========
System Benchmarks Index Score 7457.3
t3.small
$ docker info
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 1.91GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: fb4d5c1b4ea1: GNU/Linux
OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
02:01:45 up 1 min, 0 users, load average: 0.76, 0.29, 0.10; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Wed Nov 06 2019 02:01:45 - 02:29:49
2 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 32362720.6 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4401.9 MWIPS (9.8 s, 7 samples)
Execl Throughput 4565.0 lps (29.8 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 532376.6 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 148008.2 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1468925.0 KBps (30.0 s, 2 samples)
Pipe Throughput 729270.3 lps (10.0 s, 7 samples)
Pipe-based Context Switching 43488.8 lps (10.0 s, 7 samples)
Process Creation 9061.6 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 8981.4 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1234.9 lpm (60.1 s, 2 samples)
System Call Overhead 487965.3 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 32362720.6 2773.2
Double-Precision Whetstone 55.0 4401.9 800.3
Execl Throughput 43.0 4565.0 1061.6
File Copy 1024 bufsize 2000 maxblocks 3960.0 532376.6 1344.4
File Copy 256 bufsize 500 maxblocks 1655.0 148008.2 894.3
File Copy 4096 bufsize 8000 maxblocks 5800.0 1468925.0 2532.6
Pipe Throughput 12440.0 729270.3 586.2
Pipe-based Context Switching 4000.0 43488.8 108.7
Process Creation 126.0 9061.6 719.2
Shell Scripts (1 concurrent) 42.4 8981.4 2118.3
Shell Scripts (8 concurrent) 6.0 1234.9 2058.2
System Call Overhead 15000.0 487965.3 325.3
========
System Benchmarks Index Score 938.4
------------------------------------------------------------------------
Benchmark Run: Wed Nov 06 2019 02:29:49 - 03:05:56
2 CPUs in system; running 2 parallel copies of tests
Dhrystone 2 using register variables 12153352.9 lps (10.0 s, 7 samples)
Double-Precision Whetstone 7999.3 MWIPS (9.9 s, 7 samples)
Execl Throughput 1389.8 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 159635.5 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 42621.7 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 453455.3 KBps (30.0 s, 2 samples)
Pipe Throughput 259141.2 lps (10.0 s, 7 samples)
Pipe-based Context Switching 62763.6 lps (10.0 s, 7 samples)
Process Creation 3221.7 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 2558.5 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 319.7 lpm (60.2 s, 2 samples)
System Call Overhead 173480.3 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 12153352.9 1041.4
Double-Precision Whetstone 55.0 7999.3 1454.4
Execl Throughput 43.0 1389.8 323.2
File Copy 1024 bufsize 2000 maxblocks 3960.0 159635.5 403.1
File Copy 256 bufsize 500 maxblocks 1655.0 42621.7 257.5
File Copy 4096 bufsize 8000 maxblocks 5800.0 453455.3 781.8
Pipe Throughput 12440.0 259141.2 208.3
Pipe-based Context Switching 4000.0 62763.6 156.9
Process Creation 126.0 3221.7 255.7
Shell Scripts (1 concurrent) 42.4 2558.5 603.4
Shell Scripts (8 concurrent) 6.0 319.7 532.8
System Call Overhead 15000.0 173480.3 115.7
========
System Benchmarks Index Score 389.9
t3.xlarge
$ docker info
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 15.48GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: cbea9215ec91: GNU/Linux
OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
00:54:21 up 3 min, 0 users, load average: 0.02, 0.05, 0.02; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Wed Nov 06 2019 00:54:21 - 01:22:23
4 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 33245158.3 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4471.0 MWIPS (9.8 s, 7 samples)
Execl Throughput 4817.5 lps (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 599747.9 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 156840.8 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1842691.6 KBps (30.0 s, 2 samples)
Pipe Throughput 757407.0 lps (10.0 s, 7 samples)
Pipe-based Context Switching 41490.6 lps (10.0 s, 7 samples)
Process Creation 8905.7 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 10955.0 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 2611.8 lpm (60.0 s, 2 samples)
System Call Overhead 503680.0 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 33245158.3 2848.8
Double-Precision Whetstone 55.0 4471.0 812.9
Execl Throughput 43.0 4817.5 1120.4
File Copy 1024 bufsize 2000 maxblocks 3960.0 599747.9 1514.5
File Copy 256 bufsize 500 maxblocks 1655.0 156840.8 947.7
File Copy 4096 bufsize 8000 maxblocks 5800.0 1842691.6 3177.1
Pipe Throughput 12440.0 757407.0 608.8
Pipe-based Context Switching 4000.0 41490.6 103.7
Process Creation 126.0 8905.7 706.8
Shell Scripts (1 concurrent) 42.4 10955.0 2583.7
Shell Scripts (8 concurrent) 6.0 2611.8 4353.1
System Call Overhead 15000.0 503680.0 335.8
========
System Benchmarks Index Score 1059.2
------------------------------------------------------------------------
Benchmark Run: Wed Nov 06 2019 01:22:23 - 01:50:28
4 CPUs in system; running 4 parallel copies of tests
Dhrystone 2 using register variables 95050449.0 lps (10.0 s, 7 samples)
Double-Precision Whetstone 16129.0 MWIPS (9.9 s, 7 samples)
Execl Throughput 11530.2 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 1009853.7 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 279019.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 3171110.2 KBps (30.0 s, 2 samples)
Pipe Throughput 2039814.7 lps (10.0 s, 7 samples)
Pipe-based Context Switching 258994.5 lps (10.0 s, 7 samples)
Process Creation 10524.7 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 10002.5 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1300.6 lpm (60.2 s, 2 samples)
System Call Overhead 695766.4 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 95050449.0 8144.9
Double-Precision Whetstone 55.0 16129.0 2932.5
Execl Throughput 43.0 11530.2 2681.5
File Copy 1024 bufsize 2000 maxblocks 3960.0 1009853.7 2550.1
File Copy 256 bufsize 500 maxblocks 1655.0 279019.5 1685.9
File Copy 4096 bufsize 8000 maxblocks 5800.0 3171110.2 5467.4
Pipe Throughput 12440.0 2039814.7 1639.7
Pipe-based Context Switching 4000.0 258994.5 647.5
Process Creation 126.0 10524.7 835.3
Shell Scripts (1 concurrent) 42.4 10002.5 2359.1
Shell Scripts (8 concurrent) 6.0 1300.6 2167.7
System Call Overhead 15000.0 695766.4 463.8
========
System Benchmarks Index Score 1957.6
t3.2xlarge
$ docker info
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 1
Server Version: 18.06.1-ce
Storage Driver: overlay2
Backing Filesystem: xfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 468a545b9edcd5932818eb9de8e72413e616e86e
runc version: 69663f0bd4b60df09991c08812a60108003fa340
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.14.138-114.102.amzn2.x86_64
Operating System: Amazon Linux 2
OSType: linux
Architecture: x86_64
CPUs: 8
Total Memory: 31.07GiB
Name: ip-172-31-46-248.ap-northeast-1.compute.internal
ID: AICQ:OKMC:P6SV:EZU4:OQI7:GKGQ:GLZG:6OMM:JMY2:RQBW:OWY6:E6XQ
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 4
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 1
cpu cores : 4
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 2
cpu cores : 4
apicid : 4
initial apicid : 4
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 3
cpu cores : 4
apicid : 6
initial apicid : 6
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 4
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 4
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 5
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 1
cpu cores : 4
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 6
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 2
cpu cores : 4
apicid : 5
initial apicid : 5
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 7
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 2500.000
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 3
cpu cores : 4
apicid : 7
initial apicid : 7
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5000.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: 2deb25a5b907: GNU/Linux
OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 4: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 5: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 6: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 7: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
03:27:55 up 1 min, 0 users, load average: 0.37, 0.17, 0.06; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 03:27:55 - 03:55:57
8 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 32465826.7 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4408.1 MWIPS (9.8 s, 7 samples)
Execl Throughput 4669.1 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 567097.1 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 151815.0 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1564961.3 KBps (30.0 s, 2 samples)
Pipe Throughput 738038.1 lps (10.0 s, 7 samples)
Pipe-based Context Switching 33380.4 lps (10.0 s, 7 samples)
Process Creation 7143.9 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 9918.6 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 3779.3 lpm (60.0 s, 2 samples)
System Call Overhead 498028.1 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 32465826.7 2782.0
Double-Precision Whetstone 55.0 4408.1 801.5
Execl Throughput 43.0 4669.1 1085.8
File Copy 1024 bufsize 2000 maxblocks 3960.0 567097.1 1432.1
File Copy 256 bufsize 500 maxblocks 1655.0 151815.0 917.3
File Copy 4096 bufsize 8000 maxblocks 5800.0 1564961.3 2698.2
Pipe Throughput 12440.0 738038.1 593.3
Pipe-based Context Switching 4000.0 33380.4 83.5
Process Creation 126.0 7143.9 567.0
Shell Scripts (1 concurrent) 42.4 9918.6 2339.3
Shell Scripts (8 concurrent) 6.0 3779.3 6298.9
System Call Overhead 15000.0 498028.1 332.0
========
System Benchmarks Index Score 1013.8
------------------------------------------------------------------------
Benchmark Run: Tue Nov 05 2019 03:55:57 - 04:24:05
8 CPUs in system; running 8 parallel copies of tests
Dhrystone 2 using register variables 187960624.0 lps (10.0 s, 7 samples)
Double-Precision Whetstone 31710.1 MWIPS (9.9 s, 7 samples)
Execl Throughput 20764.2 lps (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 954567.2 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 265332.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2827252.3 KBps (30.0 s, 2 samples)
Pipe Throughput 3979973.6 lps (10.0 s, 7 samples)
Pipe-based Context Switching 942253.1 lps (10.0 s, 7 samples)
Process Creation 37394.3 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 18546.3 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 2408.7 lpm (60.1 s, 2 samples)
System Call Overhead 1927960.1 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 187960624.0 16106.3
Double-Precision Whetstone 55.0 31710.1 5765.5
Execl Throughput 43.0 20764.2 4828.9
File Copy 1024 bufsize 2000 maxblocks 3960.0 954567.2 2410.5
File Copy 256 bufsize 500 maxblocks 1655.0 265332.5 1603.2
File Copy 4096 bufsize 8000 maxblocks 5800.0 2827252.3 4874.6
Pipe Throughput 12440.0 3979973.6 3199.3
Pipe-based Context Switching 4000.0 942253.1 2355.6
Process Creation 126.0 37394.3 2967.8
Shell Scripts (1 concurrent) 42.4 18546.3 4374.1
Shell Scripts (8 concurrent) 6.0 2408.7 4014.4
System Call Overhead 15000.0 1927960.1 1285.3
========
System Benchmarks Index Score 3568.5
CodeBuild
build.general1.small
AWS マネジメントコンソールで確認(するのが早い)
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping : 2
microcode : 0x43
cpu MHz : 2899.896
cache size : 25600 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5800.14
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:44:55 - 03:12:59
2 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 36880307.3 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4688.4 MWIPS (10.0 s, 7 samples)
Execl Throughput 4621.9 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 655807.7 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 168419.2 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2060660.8 KBps (30.0 s, 2 samples)
Pipe Throughput 845716.8 lps (10.0 s, 7 samples)
Pipe-based Context Switching 47212.6 lps (10.0 s, 7 samples)
Process Creation 7995.6 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 9626.7 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1486.7 lpm (60.0 s, 2 samples)
System Call Overhead 567780.1 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 36880307.3 3160.3
Double-Precision Whetstone 55.0 4688.4 852.4
Execl Throughput 43.0 4621.9 1074.9
File Copy 1024 bufsize 2000 maxblocks 3960.0 655807.7 1656.1
File Copy 256 bufsize 500 maxblocks 1655.0 168419.2 1017.6
File Copy 4096 bufsize 8000 maxblocks 5800.0 2060660.8 3552.9
Pipe Throughput 12440.0 845716.8 679.8
Pipe-based Context Switching 4000.0 47212.6 118.0
Process Creation 126.0 7995.6 634.6
Shell Scripts (1 concurrent) 42.4 9626.7 2270.5
Shell Scripts (8 concurrent) 6.0 1486.7 2477.8
System Call Overhead 15000.0 567780.1 378.5
========
System Benchmarks Index Score 1054.0
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 03:12:59 - 03:41:07
2 CPUs in system; running 2 parallel copies of tests
Dhrystone 2 using register variables 43837772.7 lps (10.0 s, 7 samples)
Double-Precision Whetstone 8116.2 MWIPS (10.0 s, 7 samples)
Execl Throughput 5789.6 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 811946.4 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 209011.0 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2373898.3 KBps (30.0 s, 2 samples)
Pipe Throughput 1062657.8 lps (10.0 s, 7 samples)
Pipe-based Context Switching 236394.6 lps (10.0 s, 7 samples)
Process Creation 12030.2 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 11033.7 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1528.9 lpm (60.0 s, 2 samples)
System Call Overhead 711209.7 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 43837772.7 3756.5
Double-Precision Whetstone 55.0 8116.2 1475.7
Execl Throughput 43.0 5789.6 1346.4
File Copy 1024 bufsize 2000 maxblocks 3960.0 811946.4 2050.4
File Copy 256 bufsize 500 maxblocks 1655.0 209011.0 1262.9
File Copy 4096 bufsize 8000 maxblocks 5800.0 2373898.3 4092.9
Pipe Throughput 12440.0 1062657.8 854.2
Pipe-based Context Switching 4000.0 236394.6 591.0
Process Creation 126.0 12030.2 954.8
Shell Scripts (1 concurrent) 42.4 11033.7 2602.3
Shell Scripts (8 concurrent) 6.0 1528.9 2548.1
System Call Overhead 15000.0 711209.7 474.1
========
System Benchmarks Index Score 1490.1
build.general1.medium
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping : 2
microcode : 0x43
cpu MHz : 2900.072
cache size : 25600 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5800.20
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:56:18 - 03:24:22
4 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 37042891.4 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4687.8 MWIPS (9.9 s, 7 samples)
Execl Throughput 4869.6 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 642096.6 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 165562.2 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2120868.5 KBps (30.0 s, 2 samples)
Pipe Throughput 831962.9 lps (10.0 s, 7 samples)
Pipe-based Context Switching 38591.2 lps (10.0 s, 7 samples)
Process Creation 8478.4 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 12208.9 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 2686.7 lpm (60.0 s, 2 samples)
System Call Overhead 551373.6 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 37042891.4 3174.2
Double-Precision Whetstone 55.0 4687.8 852.3
Execl Throughput 43.0 4869.6 1132.5
File Copy 1024 bufsize 2000 maxblocks 3960.0 642096.6 1621.5
File Copy 256 bufsize 500 maxblocks 1655.0 165562.2 1000.4
File Copy 4096 bufsize 8000 maxblocks 5800.0 2120868.5 3656.7
Pipe Throughput 12440.0 831962.9 668.8
Pipe-based Context Switching 4000.0 38591.2 96.5
Process Creation 126.0 8478.4 672.9
Shell Scripts (1 concurrent) 42.4 12208.9 2879.5
Shell Scripts (8 concurrent) 6.0 2686.7 4477.8
System Call Overhead 15000.0 551373.6 367.6
========
System Benchmarks Index Score 1116.2
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 03:24:22 - 03:52:29
4 CPUs in system; running 4 parallel copies of tests
Dhrystone 2 using register variables 87893541.5 lps (10.0 s, 7 samples)
Double-Precision Whetstone 16250.2 MWIPS (10.0 s, 7 samples)
Execl Throughput 11552.4 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 927068.6 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 236688.1 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 3031883.9 KBps (30.0 s, 2 samples)
Pipe Throughput 2105841.3 lps (10.0 s, 7 samples)
Pipe-based Context Switching 460718.6 lps (10.0 s, 7 samples)
Process Creation 21576.7 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 20830.6 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 3056.8 lpm (60.0 s, 2 samples)
System Call Overhead 1348812.7 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 87893541.5 7531.6
Double-Precision Whetstone 55.0 16250.2 2954.6
Execl Throughput 43.0 11552.4 2686.6
File Copy 1024 bufsize 2000 maxblocks 3960.0 927068.6 2341.1
File Copy 256 bufsize 500 maxblocks 1655.0 236688.1 1430.1
File Copy 4096 bufsize 8000 maxblocks 5800.0 3031883.9 5227.4
Pipe Throughput 12440.0 2105841.3 1692.8
Pipe-based Context Switching 4000.0 460718.6 1151.8
Process Creation 126.0 21576.7 1712.4
Shell Scripts (1 concurrent) 42.4 20830.6 4912.9
Shell Scripts (8 concurrent) 6.0 3056.8 5094.6
System Call Overhead 15000.0 1348812.7 899.2
========
System Benchmarks Index Score 2558.4
build.general1.large
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping : 2
microcode : 0x43
cpu MHz : 2899.926
cache size : 25600 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 4
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5800.14
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:56:39 - 03:24:42
8 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 37164856.9 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4697.0 MWIPS (9.9 s, 7 samples)
Execl Throughput 4723.5 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 655966.3 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 169142.8 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2144758.5 KBps (30.0 s, 2 samples)
Pipe Throughput 847124.2 lps (10.0 s, 7 samples)
Pipe-based Context Switching 40702.0 lps (10.0 s, 7 samples)
Process Creation 8017.4 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 12395.5 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 3989.1 lpm (60.0 s, 2 samples)
System Call Overhead 569997.9 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 37164856.9 3184.6
Double-Precision Whetstone 55.0 4697.0 854.0
Execl Throughput 43.0 4723.5 1098.5
File Copy 1024 bufsize 2000 maxblocks 3960.0 655966.3 1656.5
File Copy 256 bufsize 500 maxblocks 1655.0 169142.8 1022.0
File Copy 4096 bufsize 8000 maxblocks 5800.0 2144758.5 3697.9
Pipe Throughput 12440.0 847124.2 681.0
Pipe-based Context Switching 4000.0 40702.0 101.8
Process Creation 126.0 8017.4 636.3
Shell Scripts (1 concurrent) 42.4 12395.5 2923.5
Shell Scripts (8 concurrent) 6.0 3989.1 6648.5
System Call Overhead 15000.0 569997.9 380.0
========
System Benchmarks Index Score 1162.5
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 03:24:42 - 03:52:47
8 CPUs in system; running 8 parallel copies of tests
Dhrystone 2 using register variables 173879768.6 lps (10.0 s, 7 samples)
Double-Precision Whetstone 32455.1 MWIPS (10.0 s, 7 samples)
Execl Throughput 20199.0 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 899782.1 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 240332.4 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2896177.2 KBps (30.0 s, 2 samples)
Pipe Throughput 4249392.9 lps (10.0 s, 7 samples)
Pipe-based Context Switching 905567.1 lps (10.0 s, 7 samples)
Process Creation 34890.9 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 36271.3 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 5402.3 lpm (60.0 s, 2 samples)
System Call Overhead 2674683.8 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 173879768.6 14899.7
Double-Precision Whetstone 55.0 32455.1 5900.9
Execl Throughput 43.0 20199.0 4697.4
File Copy 1024 bufsize 2000 maxblocks 3960.0 899782.1 2272.2
File Copy 256 bufsize 500 maxblocks 1655.0 240332.4 1452.2
File Copy 4096 bufsize 8000 maxblocks 5800.0 2896177.2 4993.4
Pipe Throughput 12440.0 4249392.9 3415.9
Pipe-based Context Switching 4000.0 905567.1 2263.9
Process Creation 126.0 34890.9 2769.1
Shell Scripts (1 concurrent) 42.4 36271.3 8554.5
Shell Scripts (8 concurrent) 6.0 5402.3 9003.8
System Call Overhead 15000.0 2674683.8 1783.1
========
System Benchmarks Index Score 4059.2
ECS - Fargate
0.25 x vCPU, Memory 0.5 GB
> aws logs get-log-events \
--region ap-northeast-1 \
--log-group-name /ecs/unix-bench-fargate-task \
--log-stream-name ecs/cpuinfo/<タスクID> \
--query "events[].[message]" \
--output text
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 79
model name : Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz
stepping : 1
microcode : 0xb000038
cpu MHz : 2299.923
cache size : 46080 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4600.12
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 79
model name : Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz
stepping : 1
microcode : 0xb000038
cpu MHz : 2299.923
cache size : 46080 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4600.12
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
> aws logs get-log-events \
--region ap-northeast-1 \
--log-group-name /ecs/unix-bench-fargate-task \
--log-stream-name ecs/run/<タスクID> \
--query "events[].[message]" \
--output text
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: ip-172-31-14-80.ap-northeast-1.compute.internal: GNU/Linux
OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz (4600.1 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU E5-2686 v4 @ 2.30GHz (4600.1 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
05:02:55 up 1 min, 0 users, load average: 0.21, 0.06, 0.02; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:02:55 - 05:37:36
2 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 7801772.5 lps (10.1 s, 7 samples)
Double-Precision Whetstone 4508.1 MWIPS (10.6 s, 7 samples)
Execl Throughput 949.9 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 112761.4 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 29769.0 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 335409.7 KBps (30.0 s, 2 samples)
Pipe Throughput 153927.4 lps (10.0 s, 7 samples)
Pipe-based Context Switching 6912.6 lps (10.0 s, 7 samples)
Process Creation 1572.7 lps (30.1 s, 2 samples)
Shell Scripts (1 concurrent) 1691.2 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 226.3 lpm (60.2 s, 2 samples)
System Call Overhead 99125.1 lps (10.1 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 7801772.5 668.5
Double-Precision Whetstone 55.0 4508.1 819.6
Execl Throughput 43.0 949.9 220.9
File Copy 1024 bufsize 2000 maxblocks 3960.0 112761.4 284.8
File Copy 256 bufsize 500 maxblocks 1655.0 29769.0 179.9
File Copy 4096 bufsize 8000 maxblocks 5800.0 335409.7 578.3
Pipe Throughput 12440.0 153927.4 123.7
Pipe-based Context Switching 4000.0 6912.6 17.3
Process Creation 126.0 1572.7 124.8
Shell Scripts (1 concurrent) 42.4 1691.2 398.9
Shell Scripts (8 concurrent) 6.0 226.3 377.1
System Call Overhead 15000.0 99125.1 66.1
========
System Benchmarks Index Score 214.5
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:37:36 - 06:20:57
2 CPUs in system; running 2 parallel copies of tests
Dhrystone 2 using register variables 7807285.8 lps (10.1 s, 7 samples)
Double-Precision Whetstone 8974.7 MWIPS (10.6 s, 7 samples)
Execl Throughput 901.9 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 101552.2 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 26668.0 KBps (30.1 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 300822.1 KBps (30.0 s, 2 samples)
Pipe Throughput 153599.7 lps (10.1 s, 7 samples)
Pipe-based Context Switching 28153.4 lps (10.1 s, 7 samples)
Process Creation 1695.3 lps (30.1 s, 2 samples)
Shell Scripts (1 concurrent) 1683.6 lpm (60.1 s, 2 samples)
Shell Scripts (8 concurrent) 226.4 lpm (60.3 s, 2 samples)
System Call Overhead 95960.9 lps (10.1 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 7807285.8 669.0
Double-Precision Whetstone 55.0 8974.7 1631.8
Execl Throughput 43.0 901.9 209.7
File Copy 1024 bufsize 2000 maxblocks 3960.0 101552.2 256.4
File Copy 256 bufsize 500 maxblocks 1655.0 26668.0 161.1
File Copy 4096 bufsize 8000 maxblocks 5800.0 300822.1 518.7
Pipe Throughput 12440.0 153599.7 123.5
Pipe-based Context Switching 4000.0 28153.4 70.4
Process Creation 126.0 1695.3 134.5
Shell Scripts (1 concurrent) 42.4 1683.6 397.1
Shell Scripts (8 concurrent) 6.0 226.4 377.3
System Call Overhead 15000.0 95960.9 64.0
========
System Benchmarks Index Score 248.3
0.5 x vCPU, Memory 1 GB
> aws logs get-log-events \
--region ap-northeast-1 \
--log-group-name /ecs/unix-bench-fargate-task \
--log-stream-name ecs/cpuinfo/<タスクID> \
--query "events[].[message]" \
--output text
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping : 2
microcode : 0x43
cpu MHz : 2893.668
cache size : 25600 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5786.73
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping : 2
microcode : 0x43
cpu MHz : 2893.668
cache size : 25600 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5786.73
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
> aws logs get-log-events \
--region ap-northeast-1 \
--log-group-name /ecs/unix-bench-fargate-task \
--log-stream-name ecs/run/<タスクID> \
--query "events[].[message]" \
--output text
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: ip-172-31-13-70.ap-northeast-1.compute.internal: GNU/Linux
OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5786.7 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5786.7 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
05:26:46 up 3 min, 0 users, load average: 0.92, 0.25, 0.08; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:26:46 - 05:56:49
2 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 18319698.5 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4737.1 MWIPS (9.8 s, 7 samples)
Execl Throughput 2286.8 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 274635.0 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 70545.2 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 901333.9 KBps (30.0 s, 2 samples)
Pipe Throughput 363406.0 lps (10.0 s, 7 samples)
Pipe-based Context Switching 15090.6 lps (10.0 s, 7 samples)
Process Creation 3714.5 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 3922.7 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 421.9 lpm (60.1 s, 2 samples)
System Call Overhead 230248.6 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 18319698.5 1569.8
Double-Precision Whetstone 55.0 4737.1 861.3
Execl Throughput 43.0 2286.8 531.8
File Copy 1024 bufsize 2000 maxblocks 3960.0 274635.0 693.5
File Copy 256 bufsize 500 maxblocks 1655.0 70545.2 426.3
File Copy 4096 bufsize 8000 maxblocks 5800.0 901333.9 1554.0
Pipe Throughput 12440.0 363406.0 292.1
Pipe-based Context Switching 4000.0 15090.6 37.7
Process Creation 126.0 3714.5 294.8
Shell Scripts (1 concurrent) 42.4 3922.7 925.2
Shell Scripts (8 concurrent) 6.0 421.9 703.2
System Call Overhead 15000.0 230248.6 153.5
========
System Benchmarks Index Score 466.8
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:56:49 - 06:31:11
2 CPUs in system; running 2 parallel copies of tests
Dhrystone 2 using register variables 11483641.7 lps (10.1 s, 7 samples)
Double-Precision Whetstone 8186.4 MWIPS (9.9 s, 7 samples)
Execl Throughput 1541.1 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 178702.8 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 45765.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 594792.4 KBps (30.0 s, 2 samples)
Pipe Throughput 235027.5 lps (10.1 s, 7 samples)
Pipe-based Context Switching 51461.7 lps (10.0 s, 7 samples)
Process Creation 3398.8 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 3337.9 lpm (60.1 s, 2 samples)
Shell Scripts (8 concurrent) 406.7 lpm (60.1 s, 2 samples)
System Call Overhead 150623.0 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 11483641.7 984.0
Double-Precision Whetstone 55.0 8186.4 1488.4
Execl Throughput 43.0 1541.1 358.4
File Copy 1024 bufsize 2000 maxblocks 3960.0 178702.8 451.3
File Copy 256 bufsize 500 maxblocks 1655.0 45765.5 276.5
File Copy 4096 bufsize 8000 maxblocks 5800.0 594792.4 1025.5
Pipe Throughput 12440.0 235027.5 188.9
Pipe-based Context Switching 4000.0 51461.7 128.7
Process Creation 126.0 3398.8 269.7
Shell Scripts (1 concurrent) 42.4 3337.9 787.2
Shell Scripts (8 concurrent) 6.0 406.7 677.8
System Call Overhead 15000.0 150623.0 100.4
========
System Benchmarks Index Score 411.5
1 x vCPU, Memory 2 GB
> aws logs get-log-events \
--region ap-northeast-1 \
--log-group-name /ecs/unix-bench-fargate-task \
--log-stream-name ecs/cpuinfo/<タスクID> \
--query "events[].[message]" \
--output text
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping : 2
microcode : 0x43
cpu MHz : 2899.814
cache size : 25600 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5800.18
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping : 2
microcode : 0x43
cpu MHz : 2899.814
cache size : 25600 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5800.18
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
> aws logs get-log-events \
--region ap-northeast-1 \
--log-group-name /ecs/unix-bench-fargate-task \
--log-stream-name ecs/run/<タスクID> \
--query "events[].[message]" \
--output text
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: ip-172-31-4-45.ap-northeast-1.compute.internal: GNU/Linux
OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5800.2 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5800.2 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
04:37:33 up 2 min, 0 users, load average: 0.80, 0.22, 0.07; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 04:37:33 - 05:05:38
2 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 36644230.0 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4701.9 MWIPS (9.9 s, 7 samples)
Execl Throughput 4435.2 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 550379.0 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 142656.9 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1690958.1 KBps (30.0 s, 2 samples)
Pipe Throughput 723670.9 lps (10.0 s, 7 samples)
Pipe-based Context Switching 30224.3 lps (10.0 s, 7 samples)
Process Creation 7406.0 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 7848.3 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 843.4 lpm (60.0 s, 2 samples)
System Call Overhead 467682.3 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 36644230.0 3140.0
Double-Precision Whetstone 55.0 4701.9 854.9
Execl Throughput 43.0 4435.2 1031.4
File Copy 1024 bufsize 2000 maxblocks 3960.0 550379.0 1389.8
File Copy 256 bufsize 500 maxblocks 1655.0 142656.9 862.0
File Copy 4096 bufsize 8000 maxblocks 5800.0 1690958.1 2915.4
Pipe Throughput 12440.0 723670.9 581.7
Pipe-based Context Switching 4000.0 30224.3 75.6
Process Creation 126.0 7406.0 587.8
Shell Scripts (1 concurrent) 42.4 7848.3 1851.0
Shell Scripts (8 concurrent) 6.0 843.4 1405.6
System Call Overhead 15000.0 467682.3 311.8
========
System Benchmarks Index Score 875.5
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:05:38 - 05:35:48
2 CPUs in system; running 2 parallel copies of tests
Dhrystone 2 using register variables 22685463.0 lps (10.0 s, 7 samples)
Double-Precision Whetstone 8184.1 MWIPS (9.9 s, 7 samples)
Execl Throughput 2974.0 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 353754.2 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 91243.0 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1157957.1 KBps (30.0 s, 2 samples)
Pipe Throughput 471235.1 lps (10.0 s, 7 samples)
Pipe-based Context Switching 105718.4 lps (10.0 s, 7 samples)
Process Creation 6833.6 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 6681.6 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 809.7 lpm (60.1 s, 2 samples)
System Call Overhead 303979.9 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 22685463.0 1943.9
Double-Precision Whetstone 55.0 8184.1 1488.0
Execl Throughput 43.0 2974.0 691.6
File Copy 1024 bufsize 2000 maxblocks 3960.0 353754.2 893.3
File Copy 256 bufsize 500 maxblocks 1655.0 91243.0 551.3
File Copy 4096 bufsize 8000 maxblocks 5800.0 1157957.1 1996.5
Pipe Throughput 12440.0 471235.1 378.8
Pipe-based Context Switching 4000.0 105718.4 264.3
Process Creation 126.0 6833.6 542.3
Shell Scripts (1 concurrent) 42.4 6681.6 1575.8
Shell Scripts (8 concurrent) 6.0 809.7 1349.5
System Call Overhead 15000.0 303979.9 202.7
========
System Benchmarks Index Score 773.7
2 x vCPU, Memory 4 GB
> aws logs get-log-events \
--region ap-northeast-1 \
--log-group-name /ecs/unix-bench-fargate-task \
--log-stream-name ecs/cpuinfo/<タスクID> \
--query "events[].[message]" \
--output text
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping : 2
microcode : 0x43
cpu MHz : 2900.110
cache size : 25600 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5800.08
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping : 2
microcode : 0x43
cpu MHz : 2900.110
cache size : 25600 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5800.08
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping : 2
microcode : 0x43
cpu MHz : 2900.110
cache size : 25600 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5800.08
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 63
model name : Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz
stepping : 2
microcode : 0x43
cpu MHz : 2900.110
cache size : 25600 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm cpuid_fault invpcid_single pti fsgsbase bmi1 avx2 smep bmi2 erms invpcid xsaveopt
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 5800.08
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
> aws logs get-log-events \
--region ap-northeast-1 \
--log-group-name /ecs/unix-bench-fargate-task \
--log-stream-name ecs/run/<タスクID> \
--query "events[].[message]" \
--output text
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: ip-172-31-0-202.ap-northeast-1.compute.internal: GNU/Linux
OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5800.1 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5800.1 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5800.1 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) CPU E5-2666 v3 @ 2.90GHz (5800.1 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
04:38:32 up 2 min, 0 users, load average: 0.42, 0.12, 0.04; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 04:38:32 - 05:06:33
4 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 36978609.4 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4691.7 MWIPS (9.9 s, 7 samples)
Execl Throughput 4626.1 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 558868.8 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 143375.0 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1852404.6 KBps (30.0 s, 2 samples)
Pipe Throughput 719962.1 lps (10.0 s, 7 samples)
Pipe-based Context Switching 39919.7 lps (10.0 s, 7 samples)
Process Creation 8626.2 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 10751.8 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1733.6 lpm (60.0 s, 2 samples)
System Call Overhead 461438.7 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 36978609.4 3168.7
Double-Precision Whetstone 55.0 4691.7 853.0
Execl Throughput 43.0 4626.1 1075.8
File Copy 1024 bufsize 2000 maxblocks 3960.0 558868.8 1411.3
File Copy 256 bufsize 500 maxblocks 1655.0 143375.0 866.3
File Copy 4096 bufsize 8000 maxblocks 5800.0 1852404.6 3193.8
Pipe Throughput 12440.0 719962.1 578.7
Pipe-based Context Switching 4000.0 39919.7 99.8
Process Creation 126.0 8626.2 684.6
Shell Scripts (1 concurrent) 42.4 10751.8 2535.8
Shell Scripts (8 concurrent) 6.0 1733.6 2889.3
System Call Overhead 15000.0 461438.7 307.6
========
System Benchmarks Index Score 1001.0
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:06:33 - 05:36:43
4 CPUs in system; running 4 parallel copies of tests
Dhrystone 2 using register variables 46414046.7 lps (10.0 s, 7 samples)
Double-Precision Whetstone 16371.1 MWIPS (9.9 s, 7 samples)
Execl Throughput 5873.1 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 483990.6 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 123723.9 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1639609.9 KBps (30.0 s, 2 samples)
Pipe Throughput 1002851.5 lps (10.0 s, 7 samples)
Pipe-based Context Switching 196746.3 lps (10.0 s, 7 samples)
Process Creation 12666.8 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 13185.9 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1614.4 lpm (60.1 s, 2 samples)
System Call Overhead 576605.6 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 46414046.7 3977.2
Double-Precision Whetstone 55.0 16371.1 2976.6
Execl Throughput 43.0 5873.1 1365.8
File Copy 1024 bufsize 2000 maxblocks 3960.0 483990.6 1222.2
File Copy 256 bufsize 500 maxblocks 1655.0 123723.9 747.6
File Copy 4096 bufsize 8000 maxblocks 5800.0 1639609.9 2826.9
Pipe Throughput 12440.0 1002851.5 806.2
Pipe-based Context Switching 4000.0 196746.3 491.9
Process Creation 126.0 12666.8 1005.3
Shell Scripts (1 concurrent) 42.4 13185.9 3109.9
Shell Scripts (8 concurrent) 6.0 1614.4 2690.6
System Call Overhead 15000.0 576605.6 384.4
========
System Benchmarks Index Score 1393.4
4 x vCPU, Memory 8 GB
> aws logs get-log-events \
--region ap-northeast-1 \
--log-group-name /ecs/unix-bench-fargate-task \
--log-stream-name ecs/cpuinfo/<タスクID> \
--query "events[].[message]" \
--output text
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 3100.155
cache size : 33792 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4999.99
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 3099.357
cache size : 33792 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4999.99
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 3099.855
cache size : 33792 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4999.99
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz
stepping : 4
microcode : 0x2000065
cpu MHz : 3099.941
cache size : 33792 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4999.99
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
? aws logs get-log-events \
--region ap-northeast-1 \
--log-group-name /ecs/unix-bench-fargate-task \
--log-stream-name ecs/run/<タスクID> \
--query "events[].[message]" \
--output text
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: ip-172-31-9-193.ap-northeast-1.compute.internal: GNU/Linux
OS: GNU/Linux -- 4.14.138-114.102.amzn2.x86_64 -- #1 SMP Thu Aug 15 15:29:58 UTC 2019
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) Platinum 8175M CPU @ 2.50GHz (5000.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
04:39:18 up 5 min, 0 users, load average: 0.46, 0.11, 0.04; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 04:39:18 - 05:07:19
4 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 37780526.7 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4552.9 MWIPS (9.8 s, 7 samples)
Execl Throughput 4787.9 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 557542.0 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 146042.4 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1808140.2 KBps (30.0 s, 2 samples)
Pipe Throughput 757991.9 lps (10.0 s, 7 samples)
Pipe-based Context Switching 66039.0 lps (10.0 s, 7 samples)
Process Creation 9755.8 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 11173.8 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 2422.2 lpm (60.0 s, 2 samples)
System Call Overhead 503092.2 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 37780526.7 3237.4
Double-Precision Whetstone 55.0 4552.9 827.8
Execl Throughput 43.0 4787.9 1113.5
File Copy 1024 bufsize 2000 maxblocks 3960.0 557542.0 1407.9
File Copy 256 bufsize 500 maxblocks 1655.0 146042.4 882.4
File Copy 4096 bufsize 8000 maxblocks 5800.0 1808140.2 3117.5
Pipe Throughput 12440.0 757991.9 609.3
Pipe-based Context Switching 4000.0 66039.0 165.1
Process Creation 126.0 9755.8 774.3
Shell Scripts (1 concurrent) 42.4 11173.8 2635.3
Shell Scripts (8 concurrent) 6.0 2422.2 4037.0
System Call Overhead 15000.0 503092.2 335.4
========
System Benchmarks Index Score 1102.1
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:07:19 - 05:35:38
4 CPUs in system; running 4 parallel copies of tests
Dhrystone 2 using register variables 92820784.9 lps (10.0 s, 7 samples)
Double-Precision Whetstone 16158.3 MWIPS (9.8 s, 7 samples)
Execl Throughput 11898.1 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 828620.5 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 215750.3 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2623089.5 KBps (30.0 s, 2 samples)
Pipe Throughput 1963761.0 lps (10.0 s, 7 samples)
Pipe-based Context Switching 447899.3 lps (10.0 s, 7 samples)
Process Creation 15708.8 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 18262.2 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 2869.6 lpm (60.0 s, 2 samples)
System Call Overhead 1258013.5 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 92820784.9 7953.8
Double-Precision Whetstone 55.0 16158.3 2937.9
Execl Throughput 43.0 11898.1 2767.0
File Copy 1024 bufsize 2000 maxblocks 3960.0 828620.5 2092.5
File Copy 256 bufsize 500 maxblocks 1655.0 215750.3 1303.6
File Copy 4096 bufsize 8000 maxblocks 5800.0 2623089.5 4522.6
Pipe Throughput 12440.0 1963761.0 1578.6
Pipe-based Context Switching 4000.0 447899.3 1119.7
Process Creation 126.0 15708.8 1246.7
Shell Scripts (1 concurrent) 42.4 18262.2 4307.1
Shell Scripts (8 concurrent) 6.0 2869.6 4782.7
System Call Overhead 15000.0 1258013.5 838.7
========
System Benchmarks Index Score 2363.4
GCP
n1-standard-1
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: 9adb72a7c5e4: GNU/Linux
OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
06:18:07 up 3 min, 0 users, load average: 0.56, 0.17, 0.05; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Tue Oct 29 2019 06:18:07 - 06:46:16
1 CPU in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 32150790.5 lps (10.0 s, 7 samples)
Double-Precision Whetstone 3941.3 MWIPS (9.8 s, 7 samples)
Execl Throughput 3732.0 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 393675.3 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 111040.7 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1159724.1 KBps (30.0 s, 2 samples)
Pipe Throughput 583436.4 lps (10.0 s, 7 samples)
Pipe-based Context Switching 102390.5 lps (10.0 s, 7 samples)
Process Creation 8754.7 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 6989.7 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 879.8 lpm (60.0 s, 2 samples)
System Call Overhead 168077.2 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 32150790.5 2755.0
Double-Precision Whetstone 55.0 3941.3 716.6
Execl Throughput 43.0 3732.0 867.9
File Copy 1024 bufsize 2000 maxblocks 3960.0 393675.3 994.1
File Copy 256 bufsize 500 maxblocks 1655.0 111040.7 670.9
File Copy 4096 bufsize 8000 maxblocks 5800.0 1159724.1 1999.5
Pipe Throughput 12440.0 583436.4 469.0
Pipe-based Context Switching 4000.0 102390.5 256.0
Process Creation 126.0 8754.7 694.8
Shell Scripts (1 concurrent) 42.4 6989.7 1648.5
Shell Scripts (8 concurrent) 6.0 879.8 1466.3
System Call Overhead 15000.0 168077.2 112.1
========
System Benchmarks Index Score 781.2
n1-highcpu-2
$ sudo docker info
Client:
Debug Mode: false
Server:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 19.03.4
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.0-11-amd64
Operating System: Debian GNU/Linux 9 (stretch)
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 1.759GiB
Name: kai-unix-bnch
ID: IWXY:SXXR:FVUZ:CSQQ:K6R6:OCOB:IO3A:IKJZ:6M6A:RCDH:QZ5E:QWNQ
Docker Root Dir: /var/lib/docker
Debug Mode: false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 79
model name : Intel(R) Xeon(R) CPU @ 2.20GHz
stepping : 0
microcode : 0x1
cpu MHz : 2199.998
cache size : 56320 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4399.99
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 79
model name : Intel(R) Xeon(R) CPU @ 2.20GHz
stepping : 0
microcode : 0x1
cpu MHz : 2199.998
cache size : 56320 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4399.99
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: 98292300ba0c: GNU/Linux
OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
04:06:23 up 7 min, 0 users, load average: 0.24, 0.13, 0.06; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 04:06:23 - 04:34:31
2 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 27871325.0 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4547.7 MWIPS (10.4 s, 7 samples)
Execl Throughput 2585.7 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 397606.1 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 106161.4 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1193155.7 KBps (30.0 s, 2 samples)
Pipe Throughput 541103.1 lps (10.0 s, 7 samples)
Pipe-based Context Switching 54532.0 lps (10.0 s, 7 samples)
Process Creation 4153.7 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 6570.1 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1103.7 lpm (60.0 s, 2 samples)
System Call Overhead 167687.2 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 27871325.0 2388.3
Double-Precision Whetstone 55.0 4547.7 826.9
Execl Throughput 43.0 2585.7 601.3
File Copy 1024 bufsize 2000 maxblocks 3960.0 397606.1 1004.1
File Copy 256 bufsize 500 maxblocks 1655.0 106161.4 641.5
File Copy 4096 bufsize 8000 maxblocks 5800.0 1193155.7 2057.2
Pipe Throughput 12440.0 541103.1 435.0
Pipe-based Context Switching 4000.0 54532.0 136.3
Process Creation 126.0 4153.7 329.7
Shell Scripts (1 concurrent) 42.4 6570.1 1549.6
Shell Scripts (8 concurrent) 6.0 1103.7 1839.5
System Call Overhead 15000.0 167687.2 111.8
========
System Benchmarks Index Score 680.2
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 04:34:31 - 05:02:35
2 CPUs in system; running 2 parallel copies of tests
Dhrystone 2 using register variables 34556773.0 lps (10.0 s, 7 samples)
Double-Precision Whetstone 7548.4 MWIPS (9.7 s, 7 samples)
Execl Throughput 4310.8 lps (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 529410.1 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 139554.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1635185.5 KBps (30.0 s, 2 samples)
Pipe Throughput 716141.4 lps (10.0 s, 7 samples)
Pipe-based Context Switching 66644.7 lps (10.0 s, 7 samples)
Process Creation 9155.2 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 8475.8 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1119.2 lpm (60.1 s, 2 samples)
System Call Overhead 254269.9 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 34556773.0 2961.2
Double-Precision Whetstone 55.0 7548.4 1372.4
Execl Throughput 43.0 4310.8 1002.5
File Copy 1024 bufsize 2000 maxblocks 3960.0 529410.1 1336.9
File Copy 256 bufsize 500 maxblocks 1655.0 139554.5 843.2
File Copy 4096 bufsize 8000 maxblocks 5800.0 1635185.5 2819.3
Pipe Throughput 12440.0 716141.4 575.7
Pipe-based Context Switching 4000.0 66644.7 166.6
Process Creation 126.0 9155.2 726.6
Shell Scripts (1 concurrent) 42.4 8475.8 1999.0
Shell Scripts (8 concurrent) 6.0 1119.2 1865.3
System Call Overhead 15000.0 254269.9 169.5
========
System Benchmarks Index Score 954.3
n1-highcpu-8
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:56:33 - 03:24:40
8 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 27236782.9 lps (10.0 s, 7 samples)
Double-Precision Whetstone 3754.4 MWIPS (9.9 s, 7 samples)
Execl Throughput 2291.8 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 386162.8 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 106128.0 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1111336.5 KBps (30.0 s, 2 samples)
Pipe Throughput 561820.9 lps (10.0 s, 7 samples)
Pipe-based Context Switching 51627.6 lps (10.0 s, 7 samples)
Process Creation 4516.2 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 7282.4 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 3035.4 lpm (60.0 s, 2 samples)
System Call Overhead 166550.5 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 27236782.9 2333.9
Double-Precision Whetstone 55.0 3754.4 682.6
Execl Throughput 43.0 2291.8 533.0
File Copy 1024 bufsize 2000 maxblocks 3960.0 386162.8 975.2
File Copy 256 bufsize 500 maxblocks 1655.0 106128.0 641.3
File Copy 4096 bufsize 8000 maxblocks 5800.0 1111336.5 1916.1
Pipe Throughput 12440.0 561820.9 451.6
Pipe-based Context Switching 4000.0 51627.6 129.1
Process Creation 126.0 4516.2 358.4
Shell Scripts (1 concurrent) 42.4 7282.4 1717.6
Shell Scripts (8 concurrent) 6.0 3035.4 5058.9
System Call Overhead 15000.0 166550.5 111.0
========
System Benchmarks Index Score 723.3
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 03:24:40 - 03:52:50
8 CPUs in system; running 8 parallel copies of tests
Dhrystone 2 using register variables 137271586.5 lps (10.0 s, 7 samples)
Double-Precision Whetstone 25563.5 MWIPS (9.9 s, 7 samples)
Execl Throughput 16485.8 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 704057.8 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 191735.4 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2148953.6 KBps (30.0 s, 2 samples)
Pipe Throughput 3163007.9 lps (10.0 s, 7 samples)
Pipe-based Context Switching 282669.7 lps (10.0 s, 7 samples)
Process Creation 34951.7 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 32939.2 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 4435.6 lpm (60.1 s, 2 samples)
System Call Overhead 1026702.7 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 137271586.5 11762.8
Double-Precision Whetstone 55.0 25563.5 4647.9
Execl Throughput 43.0 16485.8 3833.9
File Copy 1024 bufsize 2000 maxblocks 3960.0 704057.8 1777.9
File Copy 256 bufsize 500 maxblocks 1655.0 191735.4 1158.5
File Copy 4096 bufsize 8000 maxblocks 5800.0 2148953.6 3705.1
Pipe Throughput 12440.0 3163007.9 2542.6
Pipe-based Context Switching 4000.0 282669.7 706.7
Process Creation 126.0 34951.7 2773.9
Shell Scripts (1 concurrent) 42.4 32939.2 7768.7
Shell Scripts (8 concurrent) 6.0 4435.6 7392.6
System Call Overhead 15000.0 1026702.7 684.5
========
System Benchmarks Index Score 2870.8
c2-standard-4
$ sudo docker info
Client:
Debug Mode: false
Server:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 19.03.4
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.0-11-amd64
Operating System: Debian GNU/Linux 9 (stretch)
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 15.68GiB
Name: kai-unix-bench
ID: YQPG:NXOK:QEFS:L6A3:52HD:4HRG:XVDP:JJ2T:QDIS:5YVX:UMWM:NHMG
Docker Root Dir: /var/lib/docker
Debug Mode: false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: No swap limit support
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.284
cache size : 25344 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.56
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.284
cache size : 25344 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.56
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.284
cache size : 25344 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.56
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.284
cache size : 25344 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.56
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: b0f6160842bb: GNU/Linux
OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
04:22:23 up 0 min, 0 users, load average: 0.23, 0.07, 0.02; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 04:22:23 - 04:51:02
4 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 45642794.6 lps (10.0 s, 7 samples)
Double-Precision Whetstone 3922.9 MWIPS (14.0 s, 7 samples)
Execl Throughput 3899.9 lps (29.8 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 616165.1 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 165499.4 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1709600.3 KBps (30.0 s, 2 samples)
Pipe Throughput 852426.8 lps (10.0 s, 7 samples)
Pipe-based Context Switching 56940.6 lps (10.0 s, 7 samples)
Process Creation 9493.1 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 12793.8 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 3110.3 lpm (60.0 s, 2 samples)
System Call Overhead 445511.3 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 45642794.6 3911.1
Double-Precision Whetstone 55.0 3922.9 713.3
Execl Throughput 43.0 3899.9 907.0
File Copy 1024 bufsize 2000 maxblocks 3960.0 616165.1 1556.0
File Copy 256 bufsize 500 maxblocks 1655.0 165499.4 1000.0
File Copy 4096 bufsize 8000 maxblocks 5800.0 1709600.3 2947.6
Pipe Throughput 12440.0 852426.8 685.2
Pipe-based Context Switching 4000.0 56940.6 142.4
Process Creation 126.0 9493.1 753.4
Shell Scripts (1 concurrent) 42.4 12793.8 3017.4
Shell Scripts (8 concurrent) 6.0 3110.3 5183.9
System Call Overhead 15000.0 445511.3 297.0
========
System Benchmarks Index Score 1121.6
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 04:51:02 - 05:19:28
4 CPUs in system; running 4 parallel copies of tests
Dhrystone 2 using register variables 123198472.2 lps (10.0 s, 7 samples)
Double-Precision Whetstone 15944.7 MWIPS (12.2 s, 7 samples)
Execl Throughput 11645.3 lps (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 926814.5 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 250898.8 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2783281.6 KBps (30.0 s, 2 samples)
Pipe Throughput 2378260.0 lps (10.0 s, 7 samples)
Pipe-based Context Switching 370253.6 lps (10.0 s, 7 samples)
Process Creation 30769.9 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 27293.6 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 3514.6 lpm (60.0 s, 2 samples)
System Call Overhead 1178518.1 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 123198472.2 10556.9
Double-Precision Whetstone 55.0 15944.7 2899.0
Execl Throughput 43.0 11645.3 2708.2
File Copy 1024 bufsize 2000 maxblocks 3960.0 926814.5 2340.4
File Copy 256 bufsize 500 maxblocks 1655.0 250898.8 1516.0
File Copy 4096 bufsize 8000 maxblocks 5800.0 2783281.6 4798.8
Pipe Throughput 12440.0 2378260.0 1911.8
Pipe-based Context Switching 4000.0 370253.6 925.6
Process Creation 126.0 30769.9 2442.1
Shell Scripts (1 concurrent) 42.4 27293.6 6437.2
Shell Scripts (8 concurrent) 6.0 3514.6 5857.7
System Call Overhead 15000.0 1178518.1 785.7
========
System Benchmarks Index Score 2742.0
c2-standard-8(vCPU x 8、メモリ 32 GB)
$ sudo docker info
Client:
Debug Mode: false
Server:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 19.03.4
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.0-11-amd64
Operating System: Debian GNU/Linux 9 (stretch)
OSType: linux
Architecture: x86_64
CPUs: 8
Total Memory: 31.42GiB
Name: kai-unix-bench2
ID: 2IWY:63XX:VINK:FBP2:PFGS:XPI5:IBSX:4MQ7:5I3T:FGHG:KGGH:PMJN
Docker Root Dir: /var/lib/docker
Debug Mode: false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: No swap limit support
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.268
cache size : 25344 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 4
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.53
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.268
cache size : 25344 KB
physical id : 0
siblings : 8
core id : 1
cpu cores : 4
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.53
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.268
cache size : 25344 KB
physical id : 0
siblings : 8
core id : 2
cpu cores : 4
apicid : 4
initial apicid : 4
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.53
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.268
cache size : 25344 KB
physical id : 0
siblings : 8
core id : 3
cpu cores : 4
apicid : 6
initial apicid : 6
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.53
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 4
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.268
cache size : 25344 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 4
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.53
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 5
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.268
cache size : 25344 KB
physical id : 0
siblings : 8
core id : 1
cpu cores : 4
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.53
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 6
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.268
cache size : 25344 KB
physical id : 0
siblings : 8
core id : 2
cpu cores : 4
apicid : 5
initial apicid : 5
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.53
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 7
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.268
cache size : 25344 KB
physical id : 0
siblings : 8
core id : 3
cpu cores : 4
apicid : 7
initial apicid : 7
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.53
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: 4794baadc80d: GNU/Linux
OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 4: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 5: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 6: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 7: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
04:22:25 up 1 min, 0 users, load average: 0.23, 0.08, 0.03; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 04:22:25 - 04:51:05
8 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 45654345.7 lps (10.0 s, 7 samples)
Double-Precision Whetstone 3924.3 MWIPS (14.0 s, 7 samples)
Execl Throughput 3917.9 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 626664.5 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 166134.0 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1778053.5 KBps (30.0 s, 2 samples)
Pipe Throughput 853558.6 lps (10.0 s, 7 samples)
Pipe-based Context Switching 55814.2 lps (10.0 s, 7 samples)
Process Creation 9286.7 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 13339.8 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 4820.5 lpm (60.0 s, 2 samples)
System Call Overhead 448576.8 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 45654345.7 3912.1
Double-Precision Whetstone 55.0 3924.3 713.5
Execl Throughput 43.0 3917.9 911.1
File Copy 1024 bufsize 2000 maxblocks 3960.0 626664.5 1582.5
File Copy 256 bufsize 500 maxblocks 1655.0 166134.0 1003.8
File Copy 4096 bufsize 8000 maxblocks 5800.0 1778053.5 3065.6
Pipe Throughput 12440.0 853558.6 686.1
Pipe-based Context Switching 4000.0 55814.2 139.5
Process Creation 126.0 9286.7 737.0
Shell Scripts (1 concurrent) 42.4 13339.8 3146.2
Shell Scripts (8 concurrent) 6.0 4820.5 8034.2
System Call Overhead 15000.0 448576.8 299.1
========
System Benchmarks Index Score 1170.4
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 04:51:05 - 05:19:33
8 CPUs in system; running 8 parallel copies of tests
Dhrystone 2 using register variables 239506379.6 lps (10.0 s, 7 samples)
Double-Precision Whetstone 31562.1 MWIPS (12.4 s, 7 samples)
Execl Throughput 21248.2 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 869352.0 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 245677.6 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2710699.9 KBps (30.0 s, 2 samples)
Pipe Throughput 4798487.2 lps (10.0 s, 7 samples)
Pipe-based Context Switching 694300.8 lps (10.0 s, 7 samples)
Process Creation 53713.1 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 49238.0 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 6601.5 lpm (60.0 s, 2 samples)
System Call Overhead 2329651.1 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 239506379.6 20523.3
Double-Precision Whetstone 55.0 31562.1 5738.6
Execl Throughput 43.0 21248.2 4941.4
File Copy 1024 bufsize 2000 maxblocks 3960.0 869352.0 2195.3
File Copy 256 bufsize 500 maxblocks 1655.0 245677.6 1484.5
File Copy 4096 bufsize 8000 maxblocks 5800.0 2710699.9 4673.6
Pipe Throughput 12440.0 4798487.2 3857.3
Pipe-based Context Switching 4000.0 694300.8 1735.8
Process Creation 126.0 53713.1 4262.9
Shell Scripts (1 concurrent) 42.4 49238.0 11612.7
Shell Scripts (8 concurrent) 6.0 6601.5 11002.5
System Call Overhead 15000.0 2329651.1 1553.1
========
System Benchmarks Index Score 4382.6
c2-standard-16(vCPU x 16、メモリ 64 GB)
$ sudo docker info
Client:
Debug Mode: false
Server:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 1
Server Version: 19.03.4
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.0-11-amd64
Operating System: Debian GNU/Linux 9 (stretch)
OSType: linux
Architecture: x86_64
CPUs: 16
Total Memory: 62.92GiB
Name: kai-unix-bench
ID: YQPG:NXOK:QEFS:L6A3:52HD:4HRG:XVDP:JJ2T:QDIS:5YVX:UMWM:NHMG
Docker Root Dir: /var/lib/docker
Debug Mode: false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: No swap limit support
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 0
cpu cores : 8
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 1
cpu cores : 8
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 2
cpu cores : 8
apicid : 4
initial apicid : 4
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 3
cpu cores : 8
apicid : 6
initial apicid : 6
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 4
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 4
cpu cores : 8
apicid : 8
initial apicid : 8
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 5
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 5
cpu cores : 8
apicid : 10
initial apicid : 10
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 6
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 6
cpu cores : 8
apicid : 12
initial apicid : 12
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 7
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 7
cpu cores : 8
apicid : 14
initial apicid : 14
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 8
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 0
cpu cores : 8
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 9
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 1
cpu cores : 8
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 10
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 2
cpu cores : 8
apicid : 5
initial apicid : 5
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 11
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 3
cpu cores : 8
apicid : 7
initial apicid : 7
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 12
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 4
cpu cores : 8
apicid : 9
initial apicid : 9
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 13
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 5
cpu cores : 8
apicid : 11
initial apicid : 11
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 14
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 6
cpu cores : 8
apicid : 13
initial apicid : 13
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 15
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 3100.252
cache size : 25344 KB
physical id : 0
siblings : 16
core id : 7
cpu cores : 8
apicid : 15
initial apicid : 15
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 6200.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: ca7ec7124a50: GNU/Linux
OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 4: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 5: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 6: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 7: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 8: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 9: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 10: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 11: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 12: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 13: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 14: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 15: Intel(R) Xeon(R) CPU (6200.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
05:27:28 up 2 min, 0 users, load average: 0.08, 0.10, 0.04; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 05:27:28 - 05:56:08
16 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 45616386.1 lps (10.0 s, 7 samples)
Double-Precision Whetstone 3923.1 MWIPS (14.0 s, 7 samples)
Execl Throughput 3801.9 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 618642.3 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 165368.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1841377.2 KBps (30.0 s, 2 samples)
Pipe Throughput 849263.5 lps (10.0 s, 7 samples)
Pipe-based Context Switching 55483.4 lps (10.0 s, 7 samples)
Process Creation 9053.9 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 13001.3 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 6054.4 lpm (60.0 s, 2 samples)
System Call Overhead 445344.6 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 45616386.1 3908.9
Double-Precision Whetstone 55.0 3923.1 713.3
Execl Throughput 43.0 3801.9 884.2
File Copy 1024 bufsize 2000 maxblocks 3960.0 618642.3 1562.2
File Copy 256 bufsize 500 maxblocks 1655.0 165368.5 999.2
File Copy 4096 bufsize 8000 maxblocks 5800.0 1841377.2 3174.8
Pipe Throughput 12440.0 849263.5 682.7
Pipe-based Context Switching 4000.0 55483.4 138.7
Process Creation 126.0 9053.9 718.6
Shell Scripts (1 concurrent) 42.4 13001.3 3066.3
Shell Scripts (8 concurrent) 6.0 6054.4 10090.7
System Call Overhead 15000.0 445344.6 296.9
========
System Benchmarks Index Score 1184.6
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 05:56:08 - 06:24:37
16 CPUs in system; running 16 parallel copies of tests
Dhrystone 2 using register variables 484392273.1 lps (10.0 s, 7 samples)
Double-Precision Whetstone 63395.2 MWIPS (12.3 s, 7 samples)
Execl Throughput 36962.4 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 887379.8 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 237144.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2567584.0 KBps (30.0 s, 2 samples)
Pipe Throughput 9559977.9 lps (10.0 s, 7 samples)
Pipe-based Context Switching 1124154.5 lps (10.0 s, 7 samples)
Process Creation 78948.3 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 91028.6 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 12361.8 lpm (60.0 s, 2 samples)
System Call Overhead 4470778.5 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 484392273.1 41507.5
Double-Precision Whetstone 55.0 63395.2 11526.4
Execl Throughput 43.0 36962.4 8595.9
File Copy 1024 bufsize 2000 maxblocks 3960.0 887379.8 2240.9
File Copy 256 bufsize 500 maxblocks 1655.0 237144.5 1432.9
File Copy 4096 bufsize 8000 maxblocks 5800.0 2567584.0 4426.9
Pipe Throughput 12440.0 9559977.9 7684.9
Pipe-based Context Switching 4000.0 1124154.5 2810.4
Process Creation 126.0 78948.3 6265.7
Shell Scripts (1 concurrent) 42.4 91028.6 21469.0
Shell Scripts (8 concurrent) 6.0 12361.8 20603.1
System Call Overhead 15000.0 4470778.5 2980.5
========
System Benchmarks Index Score 6836.8
n2-standard-2(vCPU x 2、メモリ 8 GB)
$ sudo docker info
Client:
Debug Mode: false
Server:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 19.03.4
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.0-11-amd64
Operating System: Debian GNU/Linux 9 (stretch)
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 7.801GiB
Name: kai-unix-bench2
ID: CRD6:NB4R:O42M:UIDT:YYSV:HG2D:EOZJ:SJLL:DGUA:DHXA:DIAI:NCH2
Docker Root Dir: /var/lib/docker
Debug Mode: false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: No swap limit support
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.252
cache size : 33792 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.252
cache size : 33792 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.50
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: 03d9c1191916: GNU/Linux
OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU (5600.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU (5600.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
05:36:09 up 8 min, 0 users, load average: 0.23, 0.07, 0.02; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 05:36:09 - 06:04:28
2 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 40758735.8 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4374.7 MWIPS (11.2 s, 7 samples)
Execl Throughput 3657.1 lps (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 550477.1 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 148620.2 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1545659.3 KBps (30.0 s, 2 samples)
Pipe Throughput 767733.7 lps (10.0 s, 7 samples)
Pipe-based Context Switching 59190.0 lps (10.0 s, 7 samples)
Process Creation 7733.5 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 9875.1 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1623.7 lpm (60.0 s, 2 samples)
System Call Overhead 401485.8 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 40758735.8 3492.6
Double-Precision Whetstone 55.0 4374.7 795.4
Execl Throughput 43.0 3657.1 850.5
File Copy 1024 bufsize 2000 maxblocks 3960.0 550477.1 1390.1
File Copy 256 bufsize 500 maxblocks 1655.0 148620.2 898.0
File Copy 4096 bufsize 8000 maxblocks 5800.0 1545659.3 2664.9
Pipe Throughput 12440.0 767733.7 617.1
Pipe-based Context Switching 4000.0 59190.0 148.0
Process Creation 126.0 7733.5 613.8
Shell Scripts (1 concurrent) 42.4 9875.1 2329.0
Shell Scripts (8 concurrent) 6.0 1623.7 2706.1
System Call Overhead 15000.0 401485.8 267.7
========
System Benchmarks Index Score 975.6
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 06:04:28 - 06:32:32
2 CPUs in system; running 2 parallel copies of tests
Dhrystone 2 using register variables 54978596.9 lps (10.0 s, 7 samples)
Double-Precision Whetstone 8772.1 MWIPS (9.9 s, 7 samples)
Execl Throughput 6145.1 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 741159.4 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 201076.0 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2131663.4 KBps (30.0 s, 2 samples)
Pipe Throughput 1082614.4 lps (10.0 s, 7 samples)
Pipe-based Context Switching 167341.0 lps (10.0 s, 7 samples)
Process Creation 16098.9 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 12915.1 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 1679.5 lpm (60.0 s, 2 samples)
System Call Overhead 548059.6 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 54978596.9 4711.1
Double-Precision Whetstone 55.0 8772.1 1594.9
Execl Throughput 43.0 6145.1 1429.1
File Copy 1024 bufsize 2000 maxblocks 3960.0 741159.4 1871.6
File Copy 256 bufsize 500 maxblocks 1655.0 201076.0 1215.0
File Copy 4096 bufsize 8000 maxblocks 5800.0 2131663.4 3675.3
Pipe Throughput 12440.0 1082614.4 870.3
Pipe-based Context Switching 4000.0 167341.0 418.4
Process Creation 126.0 16098.9 1277.7
Shell Scripts (1 concurrent) 42.4 12915.1 3046.0
Shell Scripts (8 concurrent) 6.0 1679.5 2799.2
System Call Overhead 15000.0 548059.6 365.4
========
System Benchmarks Index Score 1500.3
n2-highcpu-4(vCPU x 4、メモリ 4 GB)
$ docker info
Client:
Debug Mode: false
Server:
ERROR: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get http://%2Fvar%2Frun%2Fdocker.sock/v1.40/info: dial unix /var/run/docker.sock: connect: permission denied
errors pretty printing info
kai@kai-unix-bench:~$ sudo docker info
Client:
Debug Mode: false
Server:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 19.03.4
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.0-11-amd64
Operating System: Debian GNU/Linux 9 (stretch)
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 3.863GiB
Name: kai-unix-bench
ID: SVB7:URB2:3L2E:U3BB:RX3H:FV4D:GEQV:DHE3:CJZP:UNXU:7EQM:LZBD
Docker Root Dir: /var/lib/docker
Debug Mode: false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: No swap limit support
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.242
cache size : 33792 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.48
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.242
cache size : 33792 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.48
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.242
cache size : 33792 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.48
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.242
cache size : 33792 KB
physical id : 0
siblings : 4
core id : 1
cpu cores : 2
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.48
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: a307ec71ba88: GNU/Linux
OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU (5600.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU (5600.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) CPU (5600.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) CPU (5600.5 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
06:32:01 up 3 min, 0 users, load average: 0.21, 0.11, 0.04; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 06:32:01 - 07:00:19
4 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 40815319.8 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4358.7 MWIPS (11.2 s, 7 samples)
Execl Throughput 3328.4 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 560442.4 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 148636.9 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1727564.4 KBps (30.0 s, 2 samples)
Pipe Throughput 767128.4 lps (10.0 s, 7 samples)
Pipe-based Context Switching 56424.5 lps (10.0 s, 7 samples)
Process Creation 8138.8 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 10954.1 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 2812.7 lpm (60.0 s, 2 samples)
System Call Overhead 401615.0 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 40815319.8 3497.5
Double-Precision Whetstone 55.0 4358.7 792.5
Execl Throughput 43.0 3328.4 774.0
File Copy 1024 bufsize 2000 maxblocks 3960.0 560442.4 1415.3
File Copy 256 bufsize 500 maxblocks 1655.0 148636.9 898.1
File Copy 4096 bufsize 8000 maxblocks 5800.0 1727564.4 2978.6
Pipe Throughput 12440.0 767128.4 616.7
Pipe-based Context Switching 4000.0 56424.5 141.1
Process Creation 126.0 8138.8 645.9
Shell Scripts (1 concurrent) 42.4 10954.1 2583.5
Shell Scripts (8 concurrent) 6.0 2812.7 4687.8
System Call Overhead 15000.0 401615.0 267.7
========
System Benchmarks Index Score 1033.2
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 07:00:19 - 07:28:24
4 CPUs in system; running 4 parallel copies of tests
Dhrystone 2 using register variables 109797338.8 lps (10.0 s, 7 samples)
Double-Precision Whetstone 17515.8 MWIPS (10.0 s, 7 samples)
Execl Throughput 11166.1 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 873690.8 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 230500.1 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2673820.9 KBps (30.0 s, 2 samples)
Pipe Throughput 2148508.3 lps (10.0 s, 7 samples)
Pipe-based Context Switching 320939.9 lps (10.0 s, 7 samples)
Process Creation 29319.7 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 25153.6 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 3261.7 lpm (60.0 s, 2 samples)
System Call Overhead 1070915.0 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 109797338.8 9408.5
Double-Precision Whetstone 55.0 17515.8 3184.7
Execl Throughput 43.0 11166.1 2596.8
File Copy 1024 bufsize 2000 maxblocks 3960.0 873690.8 2206.3
File Copy 256 bufsize 500 maxblocks 1655.0 230500.1 1392.8
File Copy 4096 bufsize 8000 maxblocks 5800.0 2673820.9 4610.0
Pipe Throughput 12440.0 2148508.3 1727.1
Pipe-based Context Switching 4000.0 320939.9 802.3
Process Creation 126.0 29319.7 2327.0
Shell Scripts (1 concurrent) 42.4 25153.6 5932.4
Shell Scripts (8 concurrent) 6.0 3261.7 5436.2
System Call Overhead 15000.0 1070915.0 713.9
========
System Benchmarks Index Score 2566.9
n2-highcpu-8(vCPU x 8、メモリ 8 GB)
$ sudo docker info
Client:
Debug Mode: false
Server:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 19.03.4
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.0-11-amd64
Operating System: Debian GNU/Linux 9 (stretch)
OSType: linux
Architecture: x86_64
CPUs: 8
Total Memory: 7.8GiB
Name: kai-unix-bench2
ID: 2IKD:QBCD:L24X:UQRD:DMKW:IM7W:YBV5:QDM5:KTON:37VA:4DNY:4KBW
Docker Root Dir: /var/lib/docker
Debug Mode: false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: No swap limit support
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.202
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 4
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.202
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 1
cpu cores : 4
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.202
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 2
cpu cores : 4
apicid : 4
initial apicid : 4
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.202
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 3
cpu cores : 4
apicid : 6
initial apicid : 6
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 4
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.202
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 4
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 5
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.202
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 1
cpu cores : 4
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 6
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.202
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 2
cpu cores : 4
apicid : 5
initial apicid : 5
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 7
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.202
cache size : 33792 KB
physical id : 0
siblings : 8
core id : 3
cpu cores : 4
apicid : 7
initial apicid : 7
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: f3a6ab5f6673: GNU/Linux
OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 4: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 5: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 6: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 7: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
07:15:09 up 4 min, 0 users, load average: 0.24, 0.09, 0.02; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 07:15:09 - 07:43:28
8 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 40809259.7 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4366.2 MWIPS (11.2 s, 7 samples)
Execl Throughput 3348.7 lps (29.8 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 562935.5 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 145924.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1901698.1 KBps (30.0 s, 2 samples)
Pipe Throughput 764448.0 lps (10.0 s, 7 samples)
Pipe-based Context Switching 59917.8 lps (10.0 s, 7 samples)
Process Creation 8396.2 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 11943.3 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 4387.4 lpm (60.0 s, 2 samples)
System Call Overhead 400332.0 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 40809259.7 3496.9
Double-Precision Whetstone 55.0 4366.2 793.9
Execl Throughput 43.0 3348.7 778.8
File Copy 1024 bufsize 2000 maxblocks 3960.0 562935.5 1421.6
File Copy 256 bufsize 500 maxblocks 1655.0 145924.5 881.7
File Copy 4096 bufsize 8000 maxblocks 5800.0 1901698.1 3278.8
Pipe Throughput 12440.0 764448.0 614.5
Pipe-based Context Switching 4000.0 59917.8 149.8
Process Creation 126.0 8396.2 666.4
Shell Scripts (1 concurrent) 42.4 11943.3 2816.8
Shell Scripts (8 concurrent) 6.0 4387.4 7312.4
System Call Overhead 15000.0 400332.0 266.9
========
System Benchmarks Index Score 1095.7
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 07:43:28 - 08:11:35
8 CPUs in system; running 8 parallel copies of tests
Dhrystone 2 using register variables 218227359.0 lps (10.0 s, 7 samples)
Double-Precision Whetstone 35109.3 MWIPS (10.0 s, 7 samples)
Execl Throughput 20952.6 lps (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 868383.1 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 226164.7 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2845353.3 KBps (30.0 s, 2 samples)
Pipe Throughput 4321888.0 lps (10.0 s, 7 samples)
Pipe-based Context Switching 623528.4 lps (10.0 s, 7 samples)
Process Creation 52415.6 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 46100.3 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 6283.0 lpm (60.0 s, 2 samples)
System Call Overhead 2103423.3 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 218227359.0 18699.9
Double-Precision Whetstone 55.0 35109.3 6383.5
Execl Throughput 43.0 20952.6 4872.7
File Copy 1024 bufsize 2000 maxblocks 3960.0 868383.1 2192.9
File Copy 256 bufsize 500 maxblocks 1655.0 226164.7 1366.6
File Copy 4096 bufsize 8000 maxblocks 5800.0 2845353.3 4905.8
Pipe Throughput 12440.0 4321888.0 3474.2
Pipe-based Context Switching 4000.0 623528.4 1558.8
Process Creation 126.0 52415.6 4160.0
Shell Scripts (1 concurrent) 42.4 46100.3 10872.7
Shell Scripts (8 concurrent) 6.0 6283.0 10471.7
System Call Overhead 15000.0 2103423.3 1402.3
========
System Benchmarks Index Score 4207.2
n2-highcpu-16(vCPU x 16、メモリ 16 GB)
$ sudo docker info
Client:
Debug Mode: false
Server:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 1
Server Version: 19.03.4
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.0-11-amd64
Operating System: Debian GNU/Linux 9 (stretch)
OSType: linux
Architecture: x86_64
CPUs: 16
Total Memory: 15.67GiB
Name: kai-unix-bench2
ID: 2IKD:QBCD:L24X:UQRD:DMKW:IM7W:YBV5:QDM5:KTON:37VA:4DNY:4KBW
Docker Root Dir: /var/lib/docker
Debug Mode: false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: No swap limit support
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 0
cpu cores : 8
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 1
cpu cores : 8
apicid : 2
initial apicid : 2
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 2
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 2
cpu cores : 8
apicid : 4
initial apicid : 4
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 3
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 3
cpu cores : 8
apicid : 6
initial apicid : 6
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 4
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 4
cpu cores : 8
apicid : 8
initial apicid : 8
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 5
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 5
cpu cores : 8
apicid : 10
initial apicid : 10
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 6
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 6
cpu cores : 8
apicid : 12
initial apicid : 12
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 7
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 7
cpu cores : 8
apicid : 14
initial apicid : 14
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 8
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 0
cpu cores : 8
apicid : 1
initial apicid : 1
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 9
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 1
cpu cores : 8
apicid : 3
initial apicid : 3
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 10
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 2
cpu cores : 8
apicid : 5
initial apicid : 5
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 11
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 3
cpu cores : 8
apicid : 7
initial apicid : 7
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 12
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 4
cpu cores : 8
apicid : 9
initial apicid : 9
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 13
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 5
cpu cores : 8
apicid : 11
initial apicid : 11
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 14
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 6
cpu cores : 8
apicid : 13
initial apicid : 13
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
processor : 15
vendor_id : GenuineIntel
cpu family : 6
model : 85
model name : Intel(R) Xeon(R) CPU
stepping : 7
microcode : 0x1
cpu MHz : 2800.204
cache size : 33792 KB
physical id : 0
siblings : 16
core id : 7
cpu cores : 8
apicid : 15
initial apicid : 15
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves arat md_clear arch_capabilities
bugs : spectre_v1 spectre_v2 spec_store_bypass mds swapgs
bogomips : 5600.40
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: 1b2f98d60630: GNU/Linux
OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 4: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 5: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 6: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 7: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 8: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 9: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 10: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 11: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 12: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 13: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 14: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 15: Intel(R) Xeon(R) CPU (5600.4 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
08:25:17 up 9 min, 0 users, load average: 0.29, 0.08, 0.02; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 08:25:17 - 08:53:33
16 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 40830420.7 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4367.8 MWIPS (11.2 s, 7 samples)
Execl Throughput 3167.1 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 566607.0 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 148615.7 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1876624.3 KBps (30.0 s, 2 samples)
Pipe Throughput 765398.3 lps (10.0 s, 7 samples)
Pipe-based Context Switching 59809.1 lps (10.0 s, 7 samples)
Process Creation 7892.1 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 11276.5 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 5409.1 lpm (60.0 s, 2 samples)
System Call Overhead 402683.8 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 40830420.7 3498.8
Double-Precision Whetstone 55.0 4367.8 794.1
Execl Throughput 43.0 3167.1 736.5
File Copy 1024 bufsize 2000 maxblocks 3960.0 566607.0 1430.8
File Copy 256 bufsize 500 maxblocks 1655.0 148615.7 898.0
File Copy 4096 bufsize 8000 maxblocks 5800.0 1876624.3 3235.6
Pipe Throughput 12440.0 765398.3 615.3
Pipe-based Context Switching 4000.0 59809.1 149.5
Process Creation 126.0 7892.1 626.4
Shell Scripts (1 concurrent) 42.4 11276.5 2659.6
Shell Scripts (8 concurrent) 6.0 5409.1 9015.1
System Call Overhead 15000.0 402683.8 268.5
========
System Benchmarks Index Score 1100.5
------------------------------------------------------------------------
Benchmark Run: Fri Nov 01 2019 08:53:33 - 09:21:40
16 CPUs in system; running 16 parallel copies of tests
Dhrystone 2 using register variables 435657084.7 lps (10.0 s, 7 samples)
Double-Precision Whetstone 70198.5 MWIPS (10.0 s, 7 samples)
Execl Throughput 35231.1 lps (29.9 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 868676.9 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 230135.7 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2780796.2 KBps (30.0 s, 2 samples)
Pipe Throughput 8594813.3 lps (10.0 s, 7 samples)
Pipe-based Context Switching 1039416.1 lps (10.0 s, 7 samples)
Process Creation 76808.3 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 83810.2 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 11476.0 lpm (60.0 s, 2 samples)
System Call Overhead 4044239.1 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 435657084.7 37331.4
Double-Precision Whetstone 55.0 70198.5 12763.4
Execl Throughput 43.0 35231.1 8193.3
File Copy 1024 bufsize 2000 maxblocks 3960.0 868676.9 2193.6
File Copy 256 bufsize 500 maxblocks 1655.0 230135.7 1390.5
File Copy 4096 bufsize 8000 maxblocks 5800.0 2780796.2 4794.5
Pipe Throughput 12440.0 8594813.3 6909.0
Pipe-based Context Switching 4000.0 1039416.1 2598.5
Process Creation 126.0 76808.3 6095.9
Shell Scripts (1 concurrent) 42.4 83810.2 19766.6
Shell Scripts (8 concurrent) 6.0 11476.0 19126.7
System Call Overhead 15000.0 4044239.1 2696.2
========
System Benchmarks Index Score 6561.6
Cloud Build
n1-standard-1
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 79
model name : Intel(R) Xeon(R) CPU @ 2.20GHz
stepping : 0
microcode : 0x1
cpu MHz : 2200.000
cache size : 56320 KB
physical id : 0
siblings : 1
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti ssbd ibrs ibpb stibp fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4400.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:49:20 - 03:17:25
1 CPU in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 32081786.9 lps (10.0 s, 7 samples)
Double-Precision Whetstone 3943.8 MWIPS (9.8 s, 7 samples)
Execl Throughput 3521.7 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 470639.3 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 134472.9 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1187058.4 KBps (30.0 s, 2 samples)
Pipe Throughput 730911.5 lps (10.0 s, 7 samples)
Pipe-based Context Switching 167807.7 lps (10.0 s, 7 samples)
Process Creation 8355.9 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 6915.6 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 903.5 lpm (60.0 s, 2 samples)
System Call Overhead 542352.4 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 32081786.9 2749.1
Double-Precision Whetstone 55.0 3943.8 717.0
Execl Throughput 43.0 3521.7 819.0
File Copy 1024 bufsize 2000 maxblocks 3960.0 470639.3 1188.5
File Copy 256 bufsize 500 maxblocks 1655.0 134472.9 812.5
File Copy 4096 bufsize 8000 maxblocks 5800.0 1187058.4 2046.7
Pipe Throughput 12440.0 730911.5 587.5
Pipe-based Context Switching 4000.0 167807.7 419.5
Process Creation 126.0 8355.9 663.2
Shell Scripts (1 concurrent) 42.4 6915.6 1631.0
Shell Scripts (8 concurrent) 6.0 903.5 1505.9
System Call Overhead 15000.0 542352.4 361.6
========
System Benchmarks Index Score 937.9
n1-highcpu-8
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 79
model name : Intel(R) Xeon(R) CPU @ 2.20GHz
stepping : 0
microcode : 0x1
cpu MHz : 2200.000
cache size : 56320 KB
physical id : 0
siblings : 8
core id : 0
cpu cores : 4
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti ssbd ibrs ibpb stibp fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4400.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:59:25 - 03:27:30
8 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 32051363.0 lps (10.0 s, 7 samples)
Double-Precision Whetstone 3939.0 MWIPS (9.8 s, 7 samples)
Execl Throughput 3287.1 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 478043.4 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 130190.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1190306.6 KBps (30.0 s, 2 samples)
Pipe Throughput 713234.1 lps (10.0 s, 7 samples)
Pipe-based Context Switching 56767.3 lps (10.0 s, 7 samples)
Process Creation 5384.2 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 8539.5 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 3202.3 lpm (60.0 s, 2 samples)
System Call Overhead 537622.7 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 32051363.0 2746.5
Double-Precision Whetstone 55.0 3939.0 716.2
Execl Throughput 43.0 3287.1 764.4
File Copy 1024 bufsize 2000 maxblocks 3960.0 478043.4 1207.2
File Copy 256 bufsize 500 maxblocks 1655.0 130190.5 786.6
File Copy 4096 bufsize 8000 maxblocks 5800.0 1190306.6 2052.3
Pipe Throughput 12440.0 713234.1 573.3
Pipe-based Context Switching 4000.0 56767.3 141.9
Process Creation 126.0 5384.2 427.3
Shell Scripts (1 concurrent) 42.4 8539.5 2014.0
Shell Scripts (8 concurrent) 6.0 3202.3 5337.2
System Call Overhead 15000.0 537622.7 358.4
========
System Benchmarks Index Score 925.0
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 03:27:30 - 03:55:38
8 CPUs in system; running 8 parallel copies of tests
Dhrystone 2 using register variables 163756790.9 lps (10.0 s, 7 samples)
Double-Precision Whetstone 27400.8 MWIPS (9.9 s, 7 samples)
Execl Throughput 17300.5 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 689169.5 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 187183.9 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1983710.9 KBps (30.0 s, 2 samples)
Pipe Throughput 3723610.3 lps (10.0 s, 7 samples)
Pipe-based Context Switching 796010.0 lps (10.0 s, 7 samples)
Process Creation 30477.5 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 31650.3 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 4783.8 lpm (60.0 s, 2 samples)
System Call Overhead 2649811.3 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 163756790.9 14032.3
Double-Precision Whetstone 55.0 27400.8 4982.0
Execl Throughput 43.0 17300.5 4023.4
File Copy 1024 bufsize 2000 maxblocks 3960.0 689169.5 1740.3
File Copy 256 bufsize 500 maxblocks 1655.0 187183.9 1131.0
File Copy 4096 bufsize 8000 maxblocks 5800.0 1983710.9 3420.2
Pipe Throughput 12440.0 3723610.3 2993.3
Pipe-based Context Switching 4000.0 796010.0 1990.0
Process Creation 126.0 30477.5 2418.8
Shell Scripts (1 concurrent) 42.4 31650.3 7464.7
Shell Scripts (8 concurrent) 6.0 4783.8 7972.9
System Call Overhead 15000.0 2649811.3 1766.5
========
System Benchmarks Index Score 3452.5
n1-highcpu-16
$ sudo docker info
Client:
Debug Mode: false
Server:
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 1
Server Version: 19.03.4
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.0-11-amd64
Operating System: Debian GNU/Linux 9 (stretch)
OSType: linux
Architecture: x86_64
CPUs: 16
Total Memory: 14.1GiB
Name: kai-unix-bnch
ID: IWXY:SXXR:FVUZ:CSQQ:K6R6:OCOB:IO3A:IKJZ:6M6A:RCDH:QZ5E:QWNQ
Docker Root Dir: /var/lib/docker
Debug Mode: false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: No swap limit support
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 79
model name : Intel(R) Xeon(R) CPU @ 2.20GHz
stepping : 0
microcode : 0x1
cpu MHz : 2200.000
cache size : 56320 KB
physical id : 0
siblings : 16
core id : 0
cpu cores : 8
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp kaiser fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4400.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
========================================================================
BYTE UNIX Benchmarks (Version 5.1.3)
System: 60c5caaade1e: GNU/Linux
OS: GNU/Linux -- 4.9.0-11-amd64 -- #1 SMP Debian 4.9.189-3+deb9u1 (2019-09-20)
Machine: x86_64 (x86_64)
Language: en_US.utf8 (charmap="ANSI_X3.4-1968", collate="ANSI_X3.4-1968")
CPU 0: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 1: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 2: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 3: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 4: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 5: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 6: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 7: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 8: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 9: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 10: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 11: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 12: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 13: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 14: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
CPU 15: Intel(R) Xeon(R) CPU @ 2.20GHz (4400.0 bogomips)
Hyper-Threading, x86-64, MMX, Physical Address Ext, SYSENTER/SYSEXIT, SYSCALL/SYSRET
05:24:54 up 11 min, 0 users, load average: 0.09, 0.02, 0.01; runlevel unknown
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:24:54 - 05:53:02
16 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 28020460.6 lps (10.0 s, 7 samples)
Double-Precision Whetstone 4498.8 MWIPS (10.5 s, 7 samples)
Execl Throughput 2378.6 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 398337.1 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 105516.4 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1162185.5 KBps (30.0 s, 2 samples)
Pipe Throughput 547333.2 lps (10.0 s, 7 samples)
Pipe-based Context Switching 59927.4 lps (10.0 s, 7 samples)
Process Creation 5199.5 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 7343.6 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 3639.1 lpm (60.0 s, 2 samples)
System Call Overhead 168727.5 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 28020460.6 2401.1
Double-Precision Whetstone 55.0 4498.8 818.0
Execl Throughput 43.0 2378.6 553.2
File Copy 1024 bufsize 2000 maxblocks 3960.0 398337.1 1005.9
File Copy 256 bufsize 500 maxblocks 1655.0 105516.4 637.6
File Copy 4096 bufsize 8000 maxblocks 5800.0 1162185.5 2003.8
Pipe Throughput 12440.0 547333.2 440.0
Pipe-based Context Switching 4000.0 59927.4 149.8
Process Creation 126.0 5199.5 412.7
Shell Scripts (1 concurrent) 42.4 7343.6 1732.0
Shell Scripts (8 concurrent) 6.0 3639.1 6065.2
System Call Overhead 15000.0 168727.5 112.5
========
System Benchmarks Index Score 772.1
------------------------------------------------------------------------
Benchmark Run: Thu Oct 31 2019 05:53:02 - 06:21:07
16 CPUs in system; running 16 parallel copies of tests
Dhrystone 2 using register variables 273725677.1 lps (10.0 s, 7 samples)
Double-Precision Whetstone 59866.6 MWIPS (9.7 s, 7 samples)
Execl Throughput 25456.7 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 673943.6 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 167978.3 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1826337.3 KBps (30.0 s, 2 samples)
Pipe Throughput 5637617.7 lps (10.0 s, 7 samples)
Pipe-based Context Switching 485065.1 lps (10.0 s, 7 samples)
Process Creation 45260.4 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 57704.9 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 7852.9 lpm (60.1 s, 2 samples)
System Call Overhead 1959521.6 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 273725677.1 23455.5
Double-Precision Whetstone 55.0 59866.6 10884.8
Execl Throughput 43.0 25456.7 5920.2
File Copy 1024 bufsize 2000 maxblocks 3960.0 673943.6 1701.9
File Copy 256 bufsize 500 maxblocks 1655.0 167978.3 1015.0
File Copy 4096 bufsize 8000 maxblocks 5800.0 1826337.3 3148.9
Pipe Throughput 12440.0 5637617.7 4531.8
Pipe-based Context Switching 4000.0 485065.1 1212.7
Process Creation 126.0 45260.4 3592.1
Shell Scripts (1 concurrent) 42.4 57704.9 13609.6
Shell Scripts (8 concurrent) 6.0 7852.9 13088.2
System Call Overhead 15000.0 1959521.6 1306.3
========
System Benchmarks Index Score 4279.8
n1-highcpu-32
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 79
model name : Intel(R) Xeon(R) CPU @ 2.20GHz
stepping : 0
microcode : 0x1
cpu MHz : 2200.000
cache size : 56320 KB
physical id : 0
siblings : 32
core id : 0
cpu cores : 16
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single pti ssbd ibrs ibpb stibp fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap xsaveopt arat md_clear arch_capabilities
bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs
bogomips : 4400.00
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
------------------------------------------------------------------------
Benchmark Run: Wed Oct 30 2019 02:59:45 - 03:27:50
32 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 32204148.1 lps (10.0 s, 7 samples)
Double-Precision Whetstone 3951.6 MWIPS (9.8 s, 7 samples)
Execl Throughput 3350.1 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 516372.0 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 136907.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 1350650.2 KBps (30.0 s, 2 samples)
Pipe Throughput 732752.3 lps (10.0 s, 7 samples)
Pipe-based Context Switching 59827.3 lps (10.0 s, 7 samples)
Process Creation 5072.4 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 8947.5 lpm (60.0 s, 2 samples)
Shell Scripts (8 concurrent) 4480.1 lpm (60.0 s, 2 samples)
System Call Overhead 542458.1 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 32204148.1 2759.6
Double-Precision Whetstone 55.0 3951.6 718.5
Execl Throughput 43.0 3350.1 779.1
File Copy 1024 bufsize 2000 maxblocks 3960.0 516372.0 1304.0
File Copy 256 bufsize 500 maxblocks 1655.0 136907.5 827.2
File Copy 4096 bufsize 8000 maxblocks 5800.0 1350650.2 2328.7
Pipe Throughput 12440.0 732752.3 589.0
Pipe-based Context Switching 4000.0 59827.3 149.6
Process Creation 126.0 5072.4 402.6
Shell Scripts (1 concurrent) 42.4 8947.5 2110.3
Shell Scripts (8 concurrent) 6.0 4480.1 7466.8
System Call Overhead 15000.0 542458.1 361.6
========
System Benchmarks Index Score 979.9
Local
手元のMacBookProでも計測していたのでおまけ。
> system_profiler SPHardwareDataType
Hardware:
Hardware Overview:
Model Name: MacBook Pro
Model Identifier: MacBookPro15,1
Processor Name: Intel Core i9
Processor Speed: 2.4 GHz
Number of Processors: 1
Total Number of Cores: 8
L2 Cache (per Core): 256 KB
L3 Cache: 16 MB
Hyper-Threading Technology: Enabled
Memory: 32 GB
Boot ROM Version: 1037.0.78.0.0 (iBridge: 17.16.10572.0.0,0)
> docker info
Client:
Debug Mode: false
Server:
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 23
Server Version: 19.03.4
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: b34a5c8af56e510852c35414db4c1f4fa6172339
runc version: 3e425f80a8c931f88e6d94a8c831b9d5aa481657
init version: fec3683
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.184-linuxkit
Operating System: Docker Desktop
OSType: linux
Architecture: x86_64
CPUs: 12
Total Memory: 7.785GiB
Name: docker-desktop
ID: 2V3A:WWTT:Y3KR:XDDZ:JXI7:O54C:KCSB:WRWD:RZX3:37VK:B7S5:WQCN
Docker Root Dir: /var/lib/docker
Debug Mode: true
File Descriptors: 30
Goroutines: 46
System Time: 2019-10-30T05:17:34.5791598Z
EventsListeners: 2
HTTP Proxy: gateway.docker.internal:3128
HTTPS Proxy: gateway.docker.internal:3129
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
Product License: Community Engine
------------------------------------------------------------------------
Benchmark Run: Tue Oct 29 2019 06:11:49 - 06:40:40
12 CPUs in system; running 1 parallel copy of tests
Dhrystone 2 using register variables 50057880.5 lps (10.0 s, 7 samples)
Double-Precision Whetstone 3902.0 MWIPS (14.9 s, 7 samples)
Execl Throughput 2776.5 lps (30.0 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 832721.5 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 210569.7 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 2128921.2 KBps (30.0 s, 2 samples)
Pipe Throughput 1279789.0 lps (10.0 s, 7 samples)
Pipe-based Context Switching 138260.2 lps (10.0 s, 7 samples)
Process Creation 5447.1 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 10225.7 lpm (59.9 s, 2 samples)
Shell Scripts (8 concurrent) 3606.8 lpm (59.9 s, 2 samples)
System Call Overhead 1030707.5 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 50057880.5 4289.4
Double-Precision Whetstone 55.0 3902.0 709.5
Execl Throughput 43.0 2776.5 645.7
File Copy 1024 bufsize 2000 maxblocks 3960.0 832721.5 2102.8
File Copy 256 bufsize 500 maxblocks 1655.0 210569.7 1272.3
File Copy 4096 bufsize 8000 maxblocks 5800.0 2128921.2 3670.6
Pipe Throughput 12440.0 1279789.0 1028.8
Pipe-based Context Switching 4000.0 138260.2 345.7
Process Creation 126.0 5447.1 432.3
Shell Scripts (1 concurrent) 42.4 10225.7 2411.7
Shell Scripts (8 concurrent) 6.0 3606.8 6011.3
System Call Overhead 15000.0 1030707.5 687.1
========
System Benchmarks Index Score 1326.0
------------------------------------------------------------------------
Benchmark Run: Tue Oct 29 2019 06:40:40 - 07:09:20
12 CPUs in system; running 12 parallel copies of tests
Dhrystone 2 using register variables 331115657.8 lps (10.0 s, 7 samples)
Double-Precision Whetstone 44449.0 MWIPS (12.6 s, 7 samples)
Execl Throughput 26264.0 lps (29.8 s, 2 samples)
File Copy 1024 bufsize 2000 maxblocks 1032922.9 KBps (30.0 s, 2 samples)
File Copy 256 bufsize 500 maxblocks 257109.5 KBps (30.0 s, 2 samples)
File Copy 4096 bufsize 8000 maxblocks 3568358.6 KBps (30.0 s, 2 samples)
Pipe Throughput 9677677.9 lps (10.0 s, 7 samples)
Pipe-based Context Switching 531561.9 lps (10.0 s, 7 samples)
Process Creation 27864.0 lps (30.0 s, 2 samples)
Shell Scripts (1 concurrent) 50654.8 lpm (59.9 s, 2 samples)
Shell Scripts (8 concurrent) 6502.9 lpm (60.0 s, 2 samples)
System Call Overhead 8085787.7 lps (10.0 s, 7 samples)
System Benchmarks Index Values BASELINE RESULT INDEX
Dhrystone 2 using register variables 116700.0 331115657.8 28373.2
Double-Precision Whetstone 55.0 44449.0 8081.6
Execl Throughput 43.0 26264.0 6107.9
File Copy 1024 bufsize 2000 maxblocks 3960.0 1032922.9 2608.4
File Copy 256 bufsize 500 maxblocks 1655.0 257109.5 1553.5
File Copy 4096 bufsize 8000 maxblocks 5800.0 3568358.6 6152.3
Pipe Throughput 12440.0 9677677.9 7779.5
Pipe-based Context Switching 4000.0 531561.9 1328.9
Process Creation 126.0 27864.0 2211.4
Shell Scripts (1 concurrent) 42.4 50654.8 11946.9
Shell Scripts (8 concurrent) 6.0 6502.9 10838.1
System Call Overhead 15000.0 8085787.7 5390.5
========
System Benchmarks Index Score 5355.9