From 2ad2fbbbfd8eca9d7eee537d592d558f3fecc211 Mon Sep 17 00:00:00 2001 From: Lev Kurilenko <113481193+lekurile@users.noreply.github.com> Date: Fri, 9 Feb 2024 14:43:54 -0800 Subject: [PATCH] Add HIP conversion file outputs to .gitignore (#5111) This PR adds the following HIP output files to `.gitignore`: ``` *_hip.cpp *_hip.h *.hip *.cuh *hip_layers.h ``` --------- Co-authored-by: Michael Wyatt --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index e284c4fd35a1..db6790886cb4 100644 --- a/.gitignore +++ b/.gitignore @@ -53,3 +53,10 @@ docs/code-docs/build ## Testing data # Saved checkpoints for testing tests/unit/saved_checkpoint/ + +# HIP files created during AMD compilation +*_hip.cpp +*_hip.h +*.hip +*.cuh +*hip_layers.h