Skip to content

Commit 5031e1f

Browse files
remove use of cache from example
1 parent 68f7ce6 commit 5031e1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/hip/vector_add.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ def tune():
3030
tune_params = OrderedDict()
3131
tune_params["block_size_x"] = [128+64*i for i in range(15)]
3232

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

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

4141

4242
if __name__ == "__main__":
43-
tune()
43+
tune()

0 commit comments

Comments
 (0)