summaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/whetstone.yaml
diff options
context:
space:
mode:
authorNauman_Ahad <Nauman_Ahad@dell.com>2015-11-09 11:59:54 +0500
committerNauman_Ahad <Nauman_Ahad@dell.com>2015-11-09 11:59:54 +0500
commit735123d3a10789e771f621f3a0d8a299903063a0 (patch)
tree7f76bd653298ff19bad59eb1fd8ec7a643bf90e0 /benchmarks/playbooks/whetstone.yaml
parent95bf8a8c96b2be94512e042f3f3c82edcbebf84d (diff)
Ansible compute benchmarks playbooks with system Info & result transform
Updated playbooks for SSL,DPI,Dhrystone,Whetstone Also included python scripts for system information collection(compute benchmarks) and result transformation into JSON files for the aforementioned compute benchmarks JIRA:QTIP-20 JIRA:QTIP-36 JIRA:QTIP-37 JIRA:QTIP-39 JIRA:QTIP-40 JIRA:QTIP-52 Change-Id: I3c099d71d8316c15f0619313bd4f9829a58f6e33 Signed-off-by: Nauman_Ahad <Nauman_Ahad@dell.com>
Diffstat (limited to 'benchmarks/playbooks/whetstone.yaml')
-rw-r--r--benchmarks/playbooks/whetstone.yaml79
1 files changed, 79 insertions, 0 deletions
diff --git a/benchmarks/playbooks/whetstone.yaml b/benchmarks/playbooks/whetstone.yaml
new file mode 100644
index 00000000..2e3159b8
--- /dev/null
+++ b/benchmarks/playbooks/whetstone.yaml
@@ -0,0 +1,79 @@
+ - hosts: 127.0.0.1
+ connection: local
+ tasks:
+ - name: making whetstone directory
+ file: path={{Dest_dir}}/whetstone state=directory
+ - name: making temporary whetstone directory
+ file: path={{Dest_dir}}/whetstone/whetstone_temp state=directory
+
+ - hosts: "{{role}}"
+
+ tasks:
+
+ - name: storing_home
+ shell: echo $HOME
+ register: home_dir
+ - name: cleaning tempT
+ shell: rm -rf $HOME/tempT
+ - name: cleaning_qtip_result
+ shell: rm -rf $HOME/qtip_result
+ - name: make directory
+ shell: mkdir $HOME/qtip_result
+ - include: ./sys_info_pbook.yaml
+ - name: Installing UnixBench dependencies if CentOS
+ shell: yum install git gcc patch perl-Time-HiRes -y
+ when: ansible_os_family == "RedHat"
+ - name: Installing UnixBench dependencies if Ubuntu
+ shell: apt-get install git gcc patch perl -y
+ when: ansible_os_family == "Debian"
+ - name: Clone unixbench
+ shell: git clone https://github.com/kdlucas/byte-unixbench.git $HOME/tempT
+ - name: make
+ shell: make --directory $HOME/tempT/UnixBench/
+ - name: downloading_patch
+ shell: cd $HOME/tempT/UnixBench/ && wget https://www.dropbox.com/s/11z85gfu0trkhus/fix-limitation.patch
+ - name: applying_patch
+ shell: cd $HOME/tempT/UnixBench/ && patch Run fix-limitation.patch
+ - name: Run Whetstone
+ shell: cd $HOME/tempT/UnixBench/&&./Run -v whetstone
+ - name: collecting and transforming result script copy
+ copy: src=./result_transform/ubench_transform.py dest={{home_dir.stdout}}/qtip_result/
+ - name: transforming result
+ shell: cd $HOME/qtip_result && python ubench_transform.py
+ - name: copying consolidated report script
+ copy: src=./result_transform/final_report.py dest={{home_dir.stdout}}/qtip_result/
+ - name: making consolidated report
+ shell: cd $HOME/qtip_result && python final_report.py Whetstone
+ - name: making directory
+ file: path={{home_dir.stdout}}/qtip_result/log state=directory
+ - name: copying result to temp directory
+ shell: cp -r $HOME/tempT/UnixBench/results/* $HOME/qtip_result/log/
+ - name: registering files
+ shell: (cd $HOME/qtip_result/; find . -maxdepth 1 -name "*.json") | cut -d'/' -f2
+ register: files_to_copy
+ - name: copy results
+ fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest={{Dest_dir}}/whetstone/whetstone_temp
+ with_items: files_to_copy.stdout_lines
+ - name: registering log files
+ shell: (cd $HOME/qtip_result/log/; find . -maxdepth 1 -name "*.log") | cut -d'/' -f2
+ register: copy_log_results
+ - name: copying log results
+ fetch: src={{home_dir.stdout}}/qtip_result/log/{{item}} dest={{Dest_dir}}/whetstone/whetstone_temp
+ with_items: copy_log_results.stdout_lines
+ - name: cleaning tempT
+ shell: rm -rf $HOME/tempT
+ - name: cleaning_qtip_result
+ shell: rm -rf $HOME/qtip_result
+
+
+ - hosts: 127.0.0.1
+ connection: local
+ tasks:
+ - name: extracting_json
+ shell: ( find {{Dest_dir}}/whetstone/whetstone_temp/ -name "*.json" | xargs cp -t {{Dest_dir}}/whetstone/)
+ - name: making_logs_folder
+ shell: mkdir -p {{Dest_dir}}/whetstone/logs
+ - name: extracting_log
+ shell: ( find {{Dest_dir}}/whetstone/whetstone_temp/ -name "*.log" | xargs cp -t {{Dest_dir}}/whetstone/logs)
+ - name: removing whetstone_temp
+ shell: rm -rf {{Dest_dir}}/whetstone/whetstone_temp