Skip to content

Commit

Permalink
remove use of cache from example
Browse files Browse the repository at this point in the history
  • Loading branch information
benvanwerkhoven committed Jan 14, 2025
1 parent 68f7ce6 commit 5031e1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/hip/vector_add.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def tune():
tune_params = OrderedDict()
tune_params["block_size_x"] = [128+64*i for i in range(15)]

results, env = tune_kernel("vector_add", kernel_string, size, args, tune_params, lang="HIP",
cache="vector_add_cache.json", log=logging.DEBUG)
results, env = tune_kernel("vector_add", kernel_string, size, args, tune_params, lang="HIP",
log=logging.DEBUG)

# Store the metadata of this run
store_metadata_file("vector_add-metadata.json")
Expand All @@ -40,4 +40,4 @@ def tune():


if __name__ == "__main__":
tune()
tune()

0 comments on commit 5031e1f

Please sign in to comment.