We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cfba9f1 + 1dc8d25 commit 14320deCopy full SHA for 14320de
source/adapters/level_zero/common.hpp
@@ -287,18 +287,6 @@ template <class T> struct ZesStruct : public T {
287
}
288
};
289
290
-// Trace an internal PI call; returns in case of an error.
291
-#define UR_CALL(Call) \
292
- { \
293
- if (PrintTrace) \
294
- fprintf(stderr, "UR ---> %s\n", #Call); \
295
- ur_result_t Result = (Call); \
296
297
- fprintf(stderr, "UR <--- %s(%s)\n", #Call, getUrResultString(Result)); \
298
- if (Result != UR_RESULT_SUCCESS) \
299
- return Result; \
300
- }
301
-
302
// This function will ensure compatibility with both Linux and Windows for
303
// setting environment variables.
304
bool setEnvVar(const char *name, const char *value);
0 commit comments