You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
457 B
11 lines
457 B
def main():
|
|
print("This is doing nothing!")
|
|
# test all for sizes 1KiB - 64kKiB / 64MiB increasing exponentially
|
|
# test ddr->ddr, ddr->hbm, hbm->hbm, hbm->ddr
|
|
# test for both-local, one-local, no-local engine
|
|
# test for single thread and multi thread on one engine
|
|
# test for single thread with other thread(s) working on disjoint set of node but possibly overlapping source/destination memory
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|