Skip to content

Commit

Permalink
Move root level TARGETS into subdirectories (#946)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #946

Moving unit tests, samples, and stress test binaries into their respective subdirectories to make libkineto/TARGETS cleaner.

Reviewed By: davidberard98

Differential Revision: D58441051

Pulled By: aaronenyeshi

fbshipit-source-id: 0f7f62e6d14fc5f6d4f6b5b4e57cf0760046602e
  • Loading branch information
aaronenyeshi authored and facebook-github-bot committed Jun 12, 2024
1 parent a6f8020 commit db1f25e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion libkineto/test/CuptiRangeProfilerApiTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@
#include <array>
#include <set>

// TODO(T90238193)
// @lint-ignore-every CLANGTIDY facebook-hte-RelativeInclude
#include "include/libkineto.h"
#include "include/Config.h"
#include "src/CuptiRangeProfilerApi.h"

#include "src/Logger.h"
#include "test/CuptiRangeProfilerTestUtil.h"
#include "CuptiRangeProfilerTestUtil.h"

using namespace KINETO_NAMESPACE;

Expand Down
4 changes: 3 additions & 1 deletion libkineto/test/CuptiRangeProfilerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#include <fcntl.h>
#endif

// TODO(T90238193)
// @lint-ignore-every CLANGTIDY facebook-hte-RelativeInclude
#include "include/libkineto.h"
#include "include/Config.h"
#include "include/output_base.h"
Expand All @@ -26,7 +28,7 @@
#include "src/output_membuf.h"
#include "src/Logger.h"

#include "test/CuptiRangeProfilerTestUtil.h"
#include "CuptiRangeProfilerTestUtil.h"

using namespace KINETO_NAMESPACE;

Expand Down

0 comments on commit db1f25e

Please sign in to comment.