b1fad7915b
+ Source files are the first to go. It is needed for in-place hipification in order to avoid errors with included but already hipified header files. + More extensions support for batch processing.
9 línte
287 B
Bash
Comhad Infheidhmithe
9 línte
287 B
Bash
Comhad Infheidhmithe
#!/bin/bash
|
|
|
|
SEARCH_DIRS=$@
|
|
|
|
find $SEARCH_DIRS -name '*.cu'
|
|
find $SEARCH_DIRS -name '*.cpp' -o -name '*.cxx' -o -name '*.c' -o -name '*.cc'
|
|
find $SEARCH_DIRS -name '*.cuh'
|
|
find $SEARCH_DIRS -name '*.h' -o -name '*.hpp' -o -name '*.inc' -o -name '*.inl' -o -name '*.hxx' -o -name '*.hdl'
|