This PR adds the following HIP output files to `.gitignore`:
```
*_hip.cpp
*_hip.h
*.hip
*.cuh
*hip_layers.h
```
---------
Co-authored-by: Michael Wyatt <michaelwyatt@microsoft.com>
The file was re-organized in da652d0[^1] with better documentation, but
that unfortunately made the syntax invalid. According to the gitignore
documentation:[^2]
> A line starting with # serves as a comment. Put a backslash ("`\`") in
> front of the first hash for patterns that begin with a hash.
I needed to move the comments for Git to parse the file properly. To
maintain readability, I added an extra `#` to the comments at the top of
each section.
[^1]:
da652d0e0b
[^2]: https://git-scm.com/docs/gitignore/2.43.0#_pattern_format
Co-authored-by: Logan Adams <114770087+loadams@users.noreply.github.com>
Refine and clarify the .gitignore file by adding more descriptive
comments to explain the purpose of each rule. This improves the
readability and maintainability of the file.
- Added comments to explain each ignore rule
- Improved documentation for better understanding
---------
Co-authored-by: Logan Adams <loadams@microsoft.com>
Co-authored-by: Logan Adams <114770087+loadams@users.noreply.github.com>