aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/dhrystone.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/playbooks/dhrystone.yaml')
-rw-r--r--benchmarks/playbooks/dhrystone.yaml112
1 files changed, 94 insertions, 18 deletions
diff --git a/benchmarks/playbooks/dhrystone.yaml b/benchmarks/playbooks/dhrystone.yaml
index d0e5f20d..82b24dd1 100644
--- a/benchmarks/playbooks/dhrystone.yaml
+++ b/benchmarks/playbooks/dhrystone.yaml
@@ -1,31 +1,107 @@
-
- - hosts: demo1
+ - hosts: 127.0.0.1
+ connection: local
+ tasks:
+ - name: making dhrystone directory
+ file: path={{workingdir}}/{{Dest_dir}}/dhrystone/dhrystone_temp state=directory
+ - name: making temporary dhrystone directory
+ file: path={{workingdir}}/{{Dest_dir}}/dhrystone/dhrystone_temp state=directory
+ - hosts: "{{role}}"
+ become: yes
+ remote_user: "{{username}}"
tasks:
- - name: cleaning
- file: path=/root/tempT state=absent
- - name: cleaning results
- file: path=/root/results state=absent
- - name: Installing UnixBench dependencies
- shell: yum install git gcc patch perl-Time-HiRes -y
+ - name: checking_home directory
+ shell: sudo echo $HOME
+ register: home_dir
+
+ - name: cleaning tempT
+ shell: sudo rm -rf $HOME/tempT
+
+ - name: cleaning_qtip_result
+ shell: sudo rm -rf $HOME/qtip_result
+
+ - name: make directory
+ shell: sudo mkdir $HOME/qtip_result
+
+ - include: ./sys_proxy_pbook.yaml
+
+ - include: ./sys_info_pbook.yaml
+ vars:
+ network: false
+
+ - name: Installing UnixBench dependencies if CentOS
+ shell: sudo yum install git gcc patch perl-Time-HiRes -y
+ when: ansible_os_family == "RedHat"
+
+ - name: Installing UnixBench dependencies if Ubuntu
+ shell: sudo apt-get install git gcc patch perl -y
+ when: ansible_os_family == "Debian"
+
+ - include: ./git_proxy_pbook.yaml
+
- name: Clone unixbench
- shell: git clone https://github.com/kdlucas/byte-unixbench.git /root/tempT
+ shell: git clone https://github.com/kdlucas/byte-unixbench.git $HOME/tempT
+
- name: make
- shell: make --directory /root/tempT/UnixBench/
+ shell: sudo make --directory $HOME/tempT/UnixBench/
+
- name: downloading_patch
- shell: cd /root/tempT/UnixBench/ && wget https://www.dropbox.com/s/11z85gfu0trkhus/fix-limitation.patch
+ shell: cd $HOME/tempT/UnixBench/ && sudo wget https://www.dropbox.com/s/11z85gfu0trkhus/fix-limitation.patch
+
- name: applying_patch
- shell: cd /root/tempT/UnixBench/ && patch Run fix-limitation.patch
+ shell: cd $HOME/tempT/UnixBench/ && sudo patch Run fix-limitation.patch
+
- name: Run dhrystone
- shell: cd /root/tempT/UnixBench/&&./Run -v dhrystone
+ shell: cd $HOME/tempT/UnixBench/&& sudo ./Run -v dhrystone
+
+ - 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/ && sudo 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 && sudo python final_report.py Dhrystone {{fname}}
+
- name: making directory
- file: path=/root/results state=directory
+ file: path={{home_dir.stdout}}/qtip_result/log state=directory
+
- name: copying result to temp directory
- shell: cp -r /root/tempT/UnixBench/results/* /root/results/
+ shell: sudo cp -r $HOME/tempT/UnixBench/results/* $HOME/qtip_result/log/
+
- name: registering files
- shell: (cd /root/results/; find . -maxdepth 1 -type f) | cut -d'/' -f2
+ shell: (cd $HOME/qtip_result/; find . -maxdepth 1 -name "*.json") | cut -d'/' -f2
register: files_to_copy
+
- name: copy results
- fetch: src=/root/results/{{item}} dest={{Dest_dir}}/dhrystone
- with_items: files_to_copy.stdout_lines
+ fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest={{workingdir}}/{{Dest_dir}}/dhrystone/dhrystone_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={{workingdir}}/{{Dest_dir}}/dhrystone/dhrystone_temp
+ with_items: copy_log_results.stdout_lines
+
+ - name: cleaning tempT
+ shell: sudo rm -rf $HOME/tempT
+
+ - name: cleaning_qtip_result
+ shell: sudo rm -rf $HOME/qtip_result
+
+
+ - hosts: 127.0.0.1
+ connection: local
+ tasks:
+ - name: extracting_json
+ shell: ( find {{workingdir}}/{{Dest_dir}}/dhrystone/dhrystone_temp/ -name "*.json" | xargs cp -t {{workingdir}}/{{Dest_dir}}/dhrystone/)
+ - name: making_logs_folder
+ shell: mkdir -p {{workingdir}}/{{Dest_dir}}/dhrystone/logs
+ - name: extracting_log
+ shell: ( find {{workingdir}}/{{Dest_dir}}/dhrystone/dhrystone_temp/ -name "*.log" | xargs cp -t {{workingdir}}/{{Dest_dir}}/dhrystone/logs)
+ - name: removing dhrystone_temp
+ shell: rm -rf {{workingdir}}/{{Dest_dir}}/dhrystone/dhrystone_temp