aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/ramspeed.yaml
diff options
context:
space:
mode:
authorNauman_Ahad <Nauman_Ahad@dell.com>2015-11-12 16:28:30 +0500
committerNauman_Ahad <Nauman_Ahad@dell.com>2015-11-19 15:11:00 +0500
commita6ed66db5fc4e100ccc4e32f4c336d2dca6688b4 (patch)
tree7e9a16a94d83fdcc1a30d1a88f7a6816fd8e01d0 /benchmarks/playbooks/ramspeed.yaml
parent735123d3a10789e771f621f3a0d8a299903063a0 (diff)
RAMSpeed Benchmarks Included along with Sys Info for Net testcases
RAMSpeed benchmark playbooks, result transformation scripts included. System Information also included for Network Testcases System Information Playbook checks for the type of testcase, and gathers benchmark relevant information only (No Network Info for Compute TestCase) JIRA: QTIP-54 JIRA: QTIP-38 Change-Id: I8612f06fedfaf7314552c06f388ea6c0cd23f1ee Signed-off-by: Nauman_Ahad <Nauman_Ahad@dell.com>
Diffstat (limited to 'benchmarks/playbooks/ramspeed.yaml')
-rw-r--r--benchmarks/playbooks/ramspeed.yaml82
1 files changed, 82 insertions, 0 deletions
diff --git a/benchmarks/playbooks/ramspeed.yaml b/benchmarks/playbooks/ramspeed.yaml
new file mode 100644
index 00000000..ce2ac25d
--- /dev/null
+++ b/benchmarks/playbooks/ramspeed.yaml
@@ -0,0 +1,82 @@
+ - hosts: 127.0.0.1
+ connection: local
+ tasks:
+ - name: making ramspeed directory
+ file: path={{Dest_dir}}/ramspeed state=directory
+ - name: making temporary ramspeed directory
+ file: path={{Dest_dir}}/ramspeed/ramspeed_temp state=directory
+
+
+ - hosts: "{{role}}"
+ tasks:
+
+ - name: checking_home directory
+ shell: echo $HOME
+ register: home_dir
+ - name: cleaning
+ shell: rm -rf $HOME/ramspeed
+ - name: cleaning previous results
+ shell: rm -rf $HOME/qtip_result
+ - name: making ramspeed temporary directory
+ shell: mkdir $HOME/ramspeed
+ - name: making results temporary directory
+ shell: mkdir $HOME/qtip_result
+ - include: ./sys_info_pbook.yaml
+ vars:
+ network: false
+ - name: Installing RAM_Speed dependencies when CentOS
+ shell: yum install wget gcc -y
+ when: ansible_os_family == "RedHat"
+ - name: Installing RAM_Speed dependencies when Ubuntu
+ shell: apt-get install wget gcc -y
+ when: ansible_os_family == "Debian"
+ - name: make dummy file
+ shell: touch $HOME/ramspeed/ramspeed.tar.gz
+ - name: Fetching RAM_Speed
+ shell: cd $HOME/ramspeed/ && wget -O ramspeed.tar.gz https://docs.google.com/uc?id=0B92Bp5LZTM7gRFctalZLMktTNDQ
+ - name: Untar RAM_SPeed
+ shell: cd $HOME/ramspeed/ && tar -zxvf ramspeed.tar.gz
+ - name: configure
+ shell: cd $HOME/ramspeed/ramsmp-3.5.0 && ./build.sh
+ - name: Benchmarking IntMem Bandwidth
+ shell: cd $HOME/ramspeed/ramsmp-3.5.0 && ./ramsmp -b 3 -l 5 -p 1 >> $HOME/qtip_result/Intmem
+ - name: Benchmarking FloatMem Bandwidth
+ shell: cd $HOME/ramspeed/ramsmp-3.5.0 && ./ramsmp -b 6 -l 5 -p 1 >> $HOME/qtip_result/Floatmem
+ - name: Fetching result transformation script
+ copy: src=./result_transform/ramspd/ramspd_transform.py dest={{home_dir.stdout}}/qtip_result
+ - name: Transforming result
+ shell: cd $HOME/qtip_result && python ramspd_transform.py
+ - name: copy report formation script
+ copy: src=./result_transform/final_report.py dest={{home_dir.stdout}}/qtip_result
+ - name: consolidating report
+ shell: cd $HOME/qtip_result && python final_report.py RamSpeed
+ - 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}}/ramspeed/ramspeed_temp
+ with_items: files_to_copy.stdout_lines
+ - name: registering log files
+ shell: (cd $HOME/qtip_result/; find . -maxdepth 1 -name "*.log") | cut -d'/' -f2
+ register: copy_log_results
+ - name: copying log results
+ fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest={{Dest_dir}}/ramspeed/ramspeed_temp
+ with_items: copy_log_results.stdout_lines
+
+
+ - name: copy results
+ fetch: src=/root/results/{{item}} dest={{Dest_dir}}/ssl
+ with_items: files_to_copy.stdout_lines
+
+ - hosts: 127.0.0.1
+ connection: local
+ tasks:
+ - name: extracting_json
+ shell: ( find {{Dest_dir}}/ramspeed/ramspeed_temp/ -name "*.json" | xargs cp -t {{Dest_dir}}/ramspeed/)
+ - name: making_logs_folder
+ shell: mkdir -p {{Dest_dir}}/ramspeed/logs
+ - name: extracting_log
+ shell: ( find {{Dest_dir}}/ramspeed/ramspeed_temp/ -name "*.log" | xargs cp -t {{Dest_dir}}/ramspeed/logs)
+ - name: removing ramspeed_log
+ shell: rm -rf {{Dest_dir}}/ramspeed/ramspeed_temp
+