-
Notifications
You must be signed in to change notification settings - Fork 2.4k
[benchmark] Store the benchmark results as json files #3294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
6780346
[benchmark] Store the benchmark results as json files for performance…
yolo2themoon ae55a61
update
yolo2themoon 463a825
add ti.cuda to suite.supported_archs
yolo2themoon 3081e35
Merge branch 'master' into benchmark_json
yolo2themoon 54757c4
Merge branch 'master' into benchmark_json
yolo2themoon 0b9b371
rebase and trigger ci
yolo2themoon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,78 +1,147 @@ | ||
| import os | ||
| import time | ||
|
|
||
| from membound_cases import memory_bound_cases_list | ||
| from utils import (arch_name, dtype2str, geometric_mean, kibibyte, | ||
| md_table_header, size2str) | ||
| from utils import (arch_name, datatime_with_format, dtype2str, dump2json, | ||
| geometric_mean, md_table_header, scaled_repeat_times, | ||
| size2str) | ||
|
|
||
| import taichi as ti | ||
|
|
||
|
|
||
| class MemoryBound: | ||
| suite_name = 'memorybound' | ||
| supported_archs = [ti.cpu, ti.cuda] | ||
| supported_archs = [ti.x64, ti.cuda] | ||
| test_cases = memory_bound_cases_list | ||
| test_dtype_list = [ti.i32, ti.i64, ti.f32, ti.f64] | ||
| test_dsize_list = [(4**i) * kibibyte | ||
| for i in range(1, 10)] #[4KB,16KB...256MB] | ||
| test_dsize_list = [ | ||
| (4**i) * 1024 # kibibytes(KiB) = 1024 | ||
| for i in range(1, 10) # [4KB,16KB...256MB] | ||
| ] | ||
| basic_repeat_times = 10 | ||
| evaluator = [geometric_mean] | ||
|
|
||
| def __init__(self, arch): | ||
| self.arch = arch | ||
| self.cases_impl = [] | ||
| self._arch = arch | ||
| self._cases_impl = [] | ||
| for case in self.test_cases: | ||
| for dtype in self.test_dtype_list: | ||
| impl = CaseImpl(case, arch, dtype, self.test_dsize_list, | ||
| self.evaluator) | ||
| self.cases_impl.append(impl) | ||
| self._cases_impl.append(impl) | ||
|
|
||
| def run(self): | ||
| for case in self.cases_impl: | ||
| for case in self._cases_impl: | ||
| case.run() | ||
|
|
||
| def get_markdown_lines(self): | ||
| def save_as_json(self, arch_dir='./'): | ||
| #folder of suite | ||
| suite_path = os.path.join(arch_dir, self.suite_name) | ||
| os.makedirs(suite_path) | ||
| #json files | ||
| self._save_suite_info_as_json(suite_path) | ||
| self._save_cases_info_as_json(suite_path) | ||
|
|
||
| def save_as_markdown(self, arch_dir='./'): | ||
| current_time = datatime_with_format() | ||
| commit_hash = ti.core.get_commit_hash() #[:8] | ||
| file_name = f'{self.suite_name}.md' | ||
| file_path = os.path.join(arch_dir, file_name) | ||
| with open(file_path, 'w') as f: | ||
| lines = [ | ||
| f'commit_hash: {commit_hash}\n', f'datatime: {current_time}\n' | ||
| ] | ||
| lines += self._get_markdown_lines() | ||
| for line in lines: | ||
| print(line, file=f) | ||
|
|
||
| def _save_suite_info_as_json(self, suite_path='./'): | ||
| info_dict = { | ||
| 'cases': [func.__name__ for func in self.test_cases], | ||
| 'dtype': [dtype2str(dtype) for dtype in self.test_dtype_list], | ||
| 'dsize': [size for size in self.test_dsize_list], | ||
| 'repeat': [ | ||
| scaled_repeat_times(self._arch, size, self.basic_repeat_times) | ||
| for size in self.test_dsize_list | ||
| ], | ||
| 'evaluator': [func.__name__ for func in self.evaluator] | ||
| } | ||
| info_path = os.path.join(suite_path, '_info.json') | ||
| with open(info_path, 'w') as f: | ||
| print(dump2json(info_dict), file=f) | ||
|
|
||
| def _save_cases_info_as_json(self, suite_path='./'): | ||
| for case in self.test_cases: #for case [fill,saxpy,reduction] | ||
| results_dict = {} | ||
| for impl in self._cases_impl: #find [ti.i32, ti.i64, ti.f32, ti.f64] | ||
| if impl._name != case.__name__: | ||
| continue | ||
| result_name = dtype2str(impl._test_dtype) | ||
| results_dict[result_name] = impl.get_results_dict() | ||
| case_path = os.path.join(suite_path, (case.__name__ + '.json')) | ||
| with open(case_path, 'w') as f: | ||
| case_str = dump2json(results_dict) | ||
| print(case_str, file=f) | ||
|
|
||
| def _get_markdown_lines(self): | ||
| lines = [] | ||
| lines += md_table_header(self.suite_name, self.arch, | ||
| lines += md_table_header(self.suite_name, self._arch, | ||
| self.test_dsize_list, self.basic_repeat_times, | ||
| self.evaluator) | ||
|
|
||
| result_header = '|kernel elapsed time(ms)' + ''.join( | ||
| '|' for i in range( | ||
| len(self.test_dsize_list) + len(MemoryBound.evaluator))) | ||
| lines += [result_header] | ||
| for case in self.cases_impl: | ||
| for case in self._cases_impl: | ||
| lines += case.get_markdown_lines() | ||
| lines.append('') | ||
| return lines | ||
|
|
||
|
|
||
| class CaseImpl: | ||
| def __init__(self, func, arch, test_dtype, test_dsize_list, evaluator): | ||
| self.func = func | ||
| self.name = func.__name__ | ||
| self.arch = arch | ||
| self.test_dtype = test_dtype | ||
| self.test_dsize_list = test_dsize_list | ||
| self.min_time_in_us = [] #test results | ||
| self.evaluator = evaluator | ||
| self._func = func | ||
| self._name = func.__name__ | ||
| self._arch = arch | ||
| self._test_dtype = test_dtype | ||
| self._test_dsize_list = test_dsize_list | ||
| self._min_time_in_us = [] #test results | ||
| self._evaluator = evaluator | ||
|
|
||
| def run(self): | ||
| ti.init(kernel_profiler=True, arch=self.arch) | ||
| print("TestCase[%s.%s.%s]" % (self.func.__name__, arch_name( | ||
| self.arch), dtype2str[self.test_dtype])) | ||
| for test_dsize in self.test_dsize_list: | ||
| ti.init(kernel_profiler=True, arch=self._arch) | ||
| print("TestCase[%s.%s.%s]" % (self._func.__name__, arch_name( | ||
| self._arch), dtype2str(self._test_dtype))) | ||
| for test_dsize in self._test_dsize_list: | ||
| print("test_dsize = %s" % (size2str(test_dsize))) | ||
| self.min_time_in_us.append( | ||
| self.func(self.arch, self.test_dtype, test_dsize, | ||
| MemoryBound.basic_repeat_times)) | ||
| self._min_time_in_us.append( | ||
| self._func(self._arch, self._test_dtype, test_dsize, | ||
| MemoryBound.basic_repeat_times)) | ||
| time.sleep(0.2) | ||
| ti.reset() | ||
|
|
||
| def get_markdown_lines(self): | ||
| string = '|' + self.name + '.' + dtype2str[self.test_dtype] + '|' | ||
| string = '|' + self._name + '.' + dtype2str(self._test_dtype) + '|' | ||
| string += ''.join( | ||
| str(round(time, 4)) + '|' for time in self.min_time_in_us) | ||
| str(round(time, 4)) + '|' for time in self._min_time_in_us) | ||
| string += ''.join( | ||
| str(round(item(self.min_time_in_us), 4)) + '|' | ||
| for item in self.evaluator) | ||
| str(round(item(self._min_time_in_us), 4)) + '|' | ||
| for item in self._evaluator) | ||
| return [string] | ||
|
|
||
| def get_results_dict(self): | ||
| results_dict = {} | ||
| for i in range(len(self._test_dsize_list)): | ||
| dsize = self._test_dsize_list[i] | ||
| repeat = scaled_repeat_times(self._arch, dsize, | ||
| MemoryBound.basic_repeat_times) | ||
| elapsed_time = self._min_time_in_us[i] | ||
| item_name = size2str(dsize).replace('.0', '') | ||
| item_dict = { | ||
| 'dsize_byte': dsize, | ||
| 'repeat': repeat, | ||
| 'elapsed_time_ms': elapsed_time | ||
| } | ||
| results_dict[item_name] = item_dict | ||
| return results_dict |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.