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.
6 líneas
322 B
Bash
Archivo Ejecutable
6 líneas
322 B
Bash
Archivo Ejecutable
#!/bin/bash
|
|
|
|
SEARCH_DIR=$1
|
|
|
|
find $SEARCH_DIR -not -name '*.cu' -and -not -name '*.cpp' -and -not -name '*.cxx' -and -not -name '*.c' -and -not -name '*.cc' -and -not -name '*.cuh' -and -not -name '*.h' -and -not -name '*.hpp' -and -not -name '*.inc' -and -not -name '*.inl' -and -not -name '*.hxx' -and -not -name '*.hdl'
|