339d32cc7ca9ae4bf61fb9829cf3a2935f4422b0,perfkitbenchmarker/windows_packages/ntttcp.py,,RunNtttcp,#Any#Any#Any#Any#,57
Before Change
args = [((vm, shared_options + options), {}) for vm, options in
zip([sending_vm, receiving_vm], [client_options, server_options])]
vm_util.RunThreaded(_RunNtttcp, args)
cat_command = "cd {ntttcp_exe_dir}; cat xml.txt".format(
ntttcp_exe_dir=ntttcp_exe_dir)
stdout, _ = sending_vm.RemoteCommand(cat_command)
After Change
sending_vm.RemoteCommand(
rm_command, ignore_failure=True, suppress_warning=True)
process_args = [(_RunNtttcp, (sending_vm, sending_options), {}),
(_RunNtttcp, (receiving_vm, receiving_options), {})]
background_tasks.RunParallelProcesses(process_args, 200)
cat_command = "cd {ntttcp_exe_dir}; cat xml.txt".format(
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: 339d32cc7ca9ae4bf61fb9829cf3a2935f4422b0
Time: 2018-08-07
Author: saksena@google.com
File Name: perfkitbenchmarker/windows_packages/ntttcp.py
Class Name:
Method Name: RunNtttcp
Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: fb6899b90b6bb5d86451f65e210d8527828ba329
Time: 2019-03-26
Author: yuyanting@google.com
File Name: perfkitbenchmarker/linux_benchmarks/aerospike_certification_tool_benchmark.py
Class Name:
Method Name: Run
Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: 67caff311dc7dfbdd6e3e56c4eeb551cf445f9c2
Time: 2016-10-17
Author: ehankland@google.com
File Name: perfkitbenchmarker/linux_benchmarks/cluster_boot_benchmark.py
Class Name:
Method Name: Run