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 wiersze
287 B
Bash
Executable File
9 wiersze
287 B
Bash
Executable File
#!/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'
|