dd44ae3295
* SWDEV-553053 Adding missing copyrights information
83 rindas
2.6 KiB
Python
83 rindas
2.6 KiB
Python
#!@Python3_EXECUTABLE@
|
|
|
|
# MIT License
|
|
#
|
|
# Copyright (c) 2024-2025 Advanced Micro Devices, Inc. All rights reserved.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
# THE SOFTWARE.
|
|
|
|
|
|
import os
|
|
import roctx
|
|
import random
|
|
|
|
from roctx.context_decorators import RoctxRange
|
|
|
|
_prefix = ""
|
|
|
|
|
|
@RoctxRange("fib")
|
|
def fib(n, nmin):
|
|
with RoctxRange(f"fib(n={n})" if n >= nmin else None):
|
|
return n if n < 2 else (fib(n - 1, nmin) + fib(n - 2, nmin))
|
|
|
|
|
|
@RoctxRange("sum")
|
|
def _sum(arr):
|
|
with RoctxRange(f"sum(nelem={len(arr)})"):
|
|
return sum(arr)
|
|
|
|
|
|
def inefficient(n):
|
|
roctx.rangePush(f"inefficient({n})")
|
|
a = 0
|
|
for i in range(n):
|
|
a += i
|
|
for j in range(n):
|
|
a += j
|
|
_len = a * n * n
|
|
_arr = [random.random() for _ in range(_len)]
|
|
_ret = _sum(_arr)
|
|
roctx.rangePop()
|
|
return _ret
|
|
|
|
|
|
def run(n):
|
|
idx = roctx.rangeStart(f"run({n})")
|
|
_ret_a = fib(n, max([n / 2, n - 10]))
|
|
_ret_b = inefficient(n)
|
|
roctx.rangeStop(idx)
|
|
return (_ret_a, _ret_b)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import argparse
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("-n", "--num-iterations", help="Number", type=int, default=3)
|
|
parser.add_argument("-v", "--value", help="Starting value", type=int, default=20)
|
|
args = parser.parse_args()
|
|
|
|
_prefix = os.path.basename(__file__)
|
|
roctx.mark(f"iterations: {args.num_iterations}")
|
|
for i in range(args.num_iterations):
|
|
with RoctxRange("main loop"):
|
|
ans_a, ans_b = run(args.value)
|
|
print(f"[{_prefix}] [{i}] result of run({args.value}) = {ans_a}, {ans_b}\n")
|