You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
emankov
changed the title
hipify-clang's include semantics change based on the existence of -o
[HIPIFY] hipify-clang's include semantics change based on the existence of -oOct 16, 2017
STR:
test.h
test.cpp
containing only#include "test.h"
hipify-clang test.cpp -- -x cuda --cuda-path=<whatever>
- works correctlyhipify-clang -o test.hip test.cpp -- -x cuda --cuda-path=<whatever>
- works correctlyhipify-clang -o /any/other/directory/test.hip test.cpp -- -x cuda --cuda-path=<whatever>
- Fails:It seems that the output path is being used to resolve includes, and hence relative includes fail if you set an output path in a different directory.
The text was updated successfully, but these errors were encountered: