1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
|
// (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary.
#include <fmt/format.h>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include <strings.h>
#include <time.h>
#include <chrono>
#ifdef __linux__
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#endif
#include "include/libkineto.h"
#include "include/Config.h"
#include "src/CuptiActivityProfiler.h"
#include "src/ActivityTrace.h"
#include "src/CuptiActivityApi.h"
#include "src/output_base.h"
#include "src/output_json.h"
#include "src/output_membuf.h"
#include "src/Logger.h"
#include "test/MockActivitySubProfiler.h"
using namespace std::chrono;
using namespace KINETO_NAMESPACE;
#define CUDA_LAUNCH_KERNEL CUPTI_RUNTIME_TRACE_CBID_cudaLaunchKernel_v7000
#define CUDA_MEMCPY CUPTI_RUNTIME_TRACE_CBID_cudaMemcpy_v3020
namespace {
const TraceSpan& defaultTraceSpan() {
static TraceSpan span(0, 0, "Unknown", "");
return span;
}
}
// Provides ability to easily create a few test CPU-side ops
struct MockCpuActivityBuffer : public CpuTraceBuffer {
MockCpuActivityBuffer(int64_t startTime, int64_t endTime) {
span = TraceSpan(startTime, endTime,"Test trace");
gpuOpCount = 0;
}
void addOp(std::string name, int64_t startTime, int64_t endTime, int64_t correlation) {
GenericTraceActivity op(span, ActivityType::CPU_OP, name);
op.startTime = startTime;
op.endTime = endTime;
op.resource = systemThreadId();
op.id = correlation;
emplace_activity(std::move(op));
span.opCount++;
}
};
// Provides ability to easily create a few test CUPTI ops
struct MockCuptiActivityBuffer {
void addCorrelationActivity(int64_t correlation, CUpti_ExternalCorrelationKind externalKind, int64_t externalId) {
auto& act = *(CUpti_ActivityExternalCorrelation*) malloc(sizeof(CUpti_ActivityExternalCorrelation));
act.kind = CUPTI_ACTIVITY_KIND_EXTERNAL_CORRELATION;
act.externalId = externalId;
act.externalKind = externalKind;
act.correlationId = correlation;
activities.push_back(reinterpret_cast<CUpti_Activity*>(&act));
}
void addRuntimeActivity(
CUpti_runtime_api_trace_cbid_enum cbid,
int64_t start_us, int64_t end_us, int64_t correlation) {
auto& act = createActivity<CUpti_ActivityAPI>(
start_us, end_us, correlation);
act.kind = CUPTI_ACTIVITY_KIND_RUNTIME;
act.cbid = cbid;
act.threadId = threadId();
activities.push_back(reinterpret_cast<CUpti_Activity*>(&act));
}
void addKernelActivity(
int64_t start_us, int64_t end_us, int64_t correlation) {
auto& act = createActivity<CUpti_ActivityKernel4>(
start_us, end_us, correlation);
act.kind = CUPTI_ACTIVITY_KIND_CONCURRENT_KERNEL;
act.deviceId = 0;
act.streamId = 1;
act.name = "kernel";
act.gridX = act.gridY = act.gridZ = 1;
act.blockX = act.blockY = act.blockZ = 1;
activities.push_back(reinterpret_cast<CUpti_Activity*>(&act));
}
void addMemcpyActivity(
int64_t start_us, int64_t end_us, int64_t correlation) {
auto& act = createActivity<CUpti_ActivityMemcpy>(
start_us, end_us, correlation);
act.kind = CUPTI_ACTIVITY_KIND_MEMCPY;
act.deviceId = 0;
act.streamId = 2;
act.copyKind = CUPTI_ACTIVITY_MEMCPY_KIND_HTOD;
act.srcKind = CUPTI_ACTIVITY_MEMORY_KIND_PINNED;
act.dstKind = CUPTI_ACTIVITY_MEMORY_KIND_DEVICE;
activities.push_back(reinterpret_cast<CUpti_Activity*>(&act));
}
template<class T>
T& createActivity(
int64_t start_us, int64_t end_us, int64_t correlation) {
T& act = *static_cast<T*>(malloc(sizeof(T)));
bzero(&act, sizeof(act));
act.start = start_us * 1000;
act.end = end_us * 1000;
act.correlationId = correlation;
return act;
}
~MockCuptiActivityBuffer() {
for (CUpti_Activity* act : activities) {
free(act);
}
}
std::vector<CUpti_Activity*> activities;
};
// Mock parts of the CuptiActivityApi
class MockCuptiActivities : public CuptiActivityApi {
public:
virtual const std::pair<int, int> processActivities(
CuptiActivityBufferMap&, /*unused*/
std::function<void(const CUpti_Activity*)> handler) override {
for (CUpti_Activity* act : activityBuffer->activities) {
handler(act);
}
return {activityBuffer->activities.size(), 100};
}
virtual std::unique_ptr<CuptiActivityBufferMap>
activityBuffers() override {
auto map = std::make_unique<CuptiActivityBufferMap>();
auto buf = std::make_unique<CuptiActivityBuffer>(100);
uint8_t* addr = buf->data();
(*map)[addr] = std::move(buf);
return map;
}
void bufferRequestedOverride(uint8_t** buffer, size_t* size, size_t* maxNumRecords) {
this->bufferRequested(buffer, size, maxNumRecords);
}
std::unique_ptr<MockCuptiActivityBuffer> activityBuffer;
};
// Common setup / teardown and helper functions
class CuptiActivityProfilerTest : public ::testing::Test {
protected:
void SetUp() override {
profiler_ = std::make_unique<CuptiActivityProfiler>(
cuptiActivities_, /*cpu only*/ false);
cfg_ = std::make_unique<Config>();
cfg_->validate(std::chrono::system_clock::now());
loggerFactory.addProtocol("file", [](const std::string& url) {
return std::unique_ptr<ActivityLogger>(new ChromeTraceLogger(url));
});
}
std::unique_ptr<Config> cfg_;
MockCuptiActivities cuptiActivities_;
std::unique_ptr<CuptiActivityProfiler> profiler_;
ActivityLoggerFactory loggerFactory;
};
void checkTracefile(const char* filename) {
#ifdef __linux__
// Check that the expected file was written and that it has some content
int fd = open(filename, O_RDONLY);
if (!fd) {
perror(filename);
}
EXPECT_TRUE(fd);
// Should expect at least 100 bytes
struct stat buf{};
fstat(fd, &buf);
EXPECT_GT(buf.st_size, 100);
close(fd);
#endif
}
TEST(CuptiActivityProfiler, AsyncTrace) {
std::vector<std::string> log_modules(
{"CuptiActivityProfiler.cpp", "output_json.cpp"});
SET_LOG_VERBOSITY_LEVEL(1, log_modules);
MockCuptiActivities activities;
CuptiActivityProfiler profiler(activities, /*cpu only*/ true);
char filename[] = "/tmp/libkineto_testXXXXXX.json";
mkstemps(filename, 5);
Config cfg;
int iter = 0;
int warmup = 5;
auto now = system_clock::now();
auto startTime = now + seconds(10);
bool success = cfg.parse(fmt::format(R"CFG(
ACTIVITIES_WARMUP_PERIOD_SECS = {}
ACTIVITIES_DURATION_SECS = 1
ACTIVITIES_LOG_FILE = {}
PROFILE_START_TIME = {}
)CFG", warmup, filename, duration_cast<milliseconds>(startTime.time_since_epoch()).count()));
EXPECT_TRUE(success);
EXPECT_FALSE(profiler.isActive());
auto logger = std::make_unique<ChromeTraceLogger>(cfg.activitiesLogFile());
// Usually configuration is done when now is startTime - warmup to kick off warmup
// but start right away in the test
profiler.configure(cfg, now);
profiler.setLogger(logger.get());
EXPECT_TRUE(profiler.isActive());
// fast forward in time and we have reached the startTime
now = startTime;
// Run the profiler
// Warmup
// performRunLoopStep is usually called by the controller loop and takes
// the current time and the controller's next wakeup time.
profiler.performRunLoopStep(
/* Current time */ now, /* Next wakeup time */ now);
auto next = now + milliseconds(1000);
// performRunLoopStep can also be called by an application thread to update iteration count
// since this config does not use iteration this should have no effect on the state
while (++iter < 20) {
profiler.performRunLoopStep(now, now, iter);
}
// Runloop should now be in collect state, so start workload
// Perform another runloop step, passing in the end profile time as current.
// This should terminate collection
profiler.performRunLoopStep(
/* Current time */ next, /* Next wakeup time */ next);
// One step needed for each of the Process and Finalize phases
// Doesn't really matter what times we pass in here.
EXPECT_TRUE(profiler.isActive());
auto nextnext = next + milliseconds(1000);
while (++iter < 40) {
profiler.performRunLoopStep(next, next, iter);
}
EXPECT_TRUE(profiler.isActive());
profiler.performRunLoopStep(nextnext,nextnext);
profiler.performRunLoopStep(nextnext,nextnext);
// Assert that tracing has completed
EXPECT_FALSE(profiler.isActive());
checkTracefile(filename);
}
TEST(CuptiActivityProfiler, AsyncTraceUsingIter) {
std::vector<std::string> log_modules(
{"CuptiActivityProfiler.cpp", "output_json.cpp"});
SET_LOG_VERBOSITY_LEVEL(1, log_modules);
auto runIterTest = [&](
int start_iter, int warmup_iters, int trace_iters) {
LOG(INFO ) << "Async Trace Test: start_iteration = " << start_iter
<< " warmup iterations = " << warmup_iters
<< " trace iterations = " << trace_iters;
MockCuptiActivities activities;
CuptiActivityProfiler profiler(activities, /*cpu only*/ true);
char filename[] = "/tmp/libkineto_testXXXXXX.json";
mkstemps(filename, 5);
Config cfg;
int iter = 0;
auto now = system_clock::now();
bool success = cfg.parse(fmt::format(R"CFG(
PROFILE_START_ITERATION = {}
ACTIVITIES_WARMUP_ITERATIONS={}
ACTIVITIES_ITERATIONS={}
ACTIVITIES_DURATION_SECS = 1
ACTIVITIES_LOG_FILE = {}
)CFG", start_iter, warmup_iters, trace_iters, filename));
EXPECT_TRUE(success);
EXPECT_FALSE(profiler.isActive());
auto logger = std::make_unique<ChromeTraceLogger>(cfg.activitiesLogFile());
// Usually configuration is done when now is startIter - warmup iter to kick off warmup
// but start right away in the test
while (iter < (start_iter - warmup_iters)) {
profiler.performRunLoopStep(now, now, iter++);
}
profiler.configure(cfg, now);
profiler.setLogger(logger.get());
EXPECT_TRUE(profiler.isActive());
// fast forward in time, mimicking what will happen in reality
now += seconds(10);
auto next = now + milliseconds(1000);
// this call to runloop step should not be effecting the state
profiler.performRunLoopStep(now, next);
EXPECT_TRUE(profiler.isActive());
// start trace collection
while (iter < start_iter) {
profiler.performRunLoopStep(now, next, iter++);
}
// Runloop should now be in collect state, so start workload
while (iter < (start_iter + trace_iters)) {
profiler.performRunLoopStep(now, next, iter++);
}
// One step is required for each of the Process and Finalize phases
// Doesn't really matter what times we pass in here.
if (iter >= (start_iter + trace_iters)) {
profiler.performRunLoopStep(now, next, iter++);
}
EXPECT_TRUE(profiler.isActive());
auto nextnext = next + milliseconds(1000);
profiler.performRunLoopStep(nextnext, nextnext);
profiler.performRunLoopStep(nextnext, nextnext);
// Assert that tracing has completed
EXPECT_FALSE(profiler.isActive());
checkTracefile(filename);
};
// start iter = 50, warmup iters = 5, trace iters = 10
runIterTest(50, 5, 10);
// should be able to start at 0 iteration
runIterTest(0, 0, 2);
runIterTest(0, 5, 5);
}
TEST_F(CuptiActivityProfilerTest, SyncTrace) {
using ::testing::Return;
using ::testing::ByMove;
// Verbose logging is useful for debugging
std::vector<std::string> log_modules(
{"CuptiActivityProfiler.cpp"});
SET_LOG_VERBOSITY_LEVEL(2, log_modules);
// Start and stop profiling
CuptiActivityProfiler profiler(cuptiActivities_, /*cpu only*/ false);
int64_t start_time_us = 100;
int64_t duration_us = 300;
auto start_time = time_point<system_clock>(microseconds(start_time_us));
profiler.configure(*cfg_, start_time);
profiler.startTrace(start_time);
profiler.stopTrace(start_time + microseconds(duration_us));
profiler.recordThreadInfo();
// Log some cpu ops
auto cpuOps = std::make_unique<MockCpuActivityBuffer>(
start_time_us, start_time_us + duration_us);
cpuOps->addOp("op1", 120, 150, 1);
cpuOps->addOp("op2", 130, 140, 2);
cpuOps->addOp("op3", 200, 250, 3);
profiler.transferCpuTrace(std::move(cpuOps));
// And some GPU ops
auto gpuOps = std::make_unique<MockCuptiActivityBuffer>();
gpuOps->addRuntimeActivity(CUDA_LAUNCH_KERNEL, 133, 138, 1);
gpuOps->addRuntimeActivity(CUDA_MEMCPY, 210, 220, 2);
gpuOps->addRuntimeActivity(CUDA_LAUNCH_KERNEL, 230, 245, 3);
gpuOps->addKernelActivity(150, 170, 1);
gpuOps->addMemcpyActivity(240, 250, 2);
gpuOps->addKernelActivity(260, 320, 3);
cuptiActivities_.activityBuffer = std::move(gpuOps);
// Have the profiler process them
auto logger = std::make_unique<MemoryTraceLogger>(*cfg_);
profiler.processTrace(*logger);
// Profiler can be reset at this point - logger owns the activities
profiler_->reset();
// Wrapper that allows iterating over the activities
ActivityTrace trace(std::move(logger), loggerFactory);
EXPECT_EQ(trace.activities()->size(), 9);
std::map<std::string, int> activityCounts;
std::map<int64_t, int> resourceIds;
for (auto& activity : *trace.activities()) {
activityCounts[activity->name()]++;
resourceIds[activity->resourceId()]++;
}
for (const auto& p : activityCounts) {
LOG(INFO) << p.first << ": " << p.second;
}
EXPECT_EQ(activityCounts["op1"], 1);
EXPECT_EQ(activityCounts["op2"], 1);
EXPECT_EQ(activityCounts["op3"], 1);
EXPECT_EQ(activityCounts["cudaLaunchKernel"], 2);
EXPECT_EQ(activityCounts["cudaMemcpy"], 1);
EXPECT_EQ(activityCounts["kernel"], 2);
EXPECT_EQ(activityCounts["Memcpy HtoD (Pinned -> Device)"], 1);
auto sysTid = systemThreadId();
// Ops and runtime events are on thread sysTid
EXPECT_EQ(resourceIds[sysTid], 6);
// Kernels are on stream 1, memcpy on stream 2
EXPECT_EQ(resourceIds[1], 2);
EXPECT_EQ(resourceIds[2], 1);
#ifdef __linux__
char filename[] = "/tmp/libkineto_testXXXXXX.json";
mkstemps(filename, 5);
trace.save(filename);
// Check that the expected file was written and that it has some content
int fd = open(filename, O_RDONLY);
if (!fd) {
perror(filename);
}
EXPECT_TRUE(fd);
// Should expect at least 100 bytes
struct stat buf{};
fstat(fd, &buf);
EXPECT_GT(buf.st_size, 100);
#endif
}
TEST_F(CuptiActivityProfilerTest, GpuUserAnnotationTest) {
// Verbose logging is useful for debugging
std::vector<std::string> log_modules(
{"CuptiActivityProfiler.cpp"});
SET_LOG_VERBOSITY_LEVEL(2, log_modules);
// Start and stop profiling
CuptiActivityProfiler profiler(cuptiActivities_, /*cpu only*/ false);
int64_t start_time_us = 100;
int64_t duration_us = 300;
auto start_time = time_point<system_clock>(microseconds(start_time_us));
profiler.configure(*cfg_, start_time);
profiler.startTrace(start_time);
profiler.stopTrace(start_time + microseconds(duration_us));
int64_t kernelLaunchTime = 120;
profiler.recordThreadInfo();
// set up CPU event
auto cpuOps = std::make_unique<MockCpuActivityBuffer>(
start_time_us, start_time_us + duration_us);
cpuOps->addOp("annotation", kernelLaunchTime, kernelLaunchTime + 10, 1);
profiler.transferCpuTrace(std::move(cpuOps));
// set up a couple of GPU events and correlate with above CPU event.
// CUPTI_EXTERNAL_CORRELATION_KIND_CUSTOM1 is used for user annotations.
auto gpuOps = std::make_unique<MockCuptiActivityBuffer>();
gpuOps->addCorrelationActivity(1, CUPTI_EXTERNAL_CORRELATION_KIND_CUSTOM1, 1);
gpuOps->addKernelActivity(kernelLaunchTime + 5, kernelLaunchTime + 10, 1);
gpuOps->addCorrelationActivity(1, CUPTI_EXTERNAL_CORRELATION_KIND_CUSTOM1, 1);
gpuOps->addKernelActivity(kernelLaunchTime + 15, kernelLaunchTime + 25, 1);
cuptiActivities_.activityBuffer = std::move(gpuOps);
// process trace
auto logger = std::make_unique<MemoryTraceLogger>(*cfg_);
profiler.processTrace(*logger);
ActivityTrace trace(std::move(logger), loggerFactory);
std::map<std::string, int> counts;
for (auto& activity : *trace.activities()) {
counts[activity->name()]++;
}
// We should now have an additional annotation activity created
// on the GPU timeline.
EXPECT_EQ(counts["annotation"], 2);
EXPECT_EQ(counts["kernel"], 2);
auto& annotation = trace.activities()->at(0);
auto& kernel1 = trace.activities()->at(1);
auto& kernel2 = trace.activities()->at(2);
auto& gpu_annotation = trace.activities()->at(3);
EXPECT_EQ(gpu_annotation->type(), ActivityType::GPU_USER_ANNOTATION);
EXPECT_EQ(gpu_annotation->timestamp(), kernel1->timestamp());
EXPECT_EQ(
gpu_annotation->duration(),
kernel2->timestamp() + kernel2->duration() - kernel1->timestamp());
EXPECT_EQ(gpu_annotation->deviceId(), kernel1->deviceId());
EXPECT_EQ(gpu_annotation->resourceId(), kernel1->resourceId());
EXPECT_EQ(gpu_annotation->correlationId(), annotation->correlationId());
EXPECT_EQ(gpu_annotation->name(), annotation->name());
}
TEST_F(CuptiActivityProfilerTest, SubActivityProfilers) {
using ::testing::Return;
using ::testing::ByMove;
// Verbose logging is useful for debugging
std::vector<std::string> log_modules(
{"CuptiActivityProfiler.cpp"});
SET_LOG_VERBOSITY_LEVEL(2, log_modules);
// Setup example events to test
GenericTraceActivity ev{defaultTraceSpan(), ActivityType::GLOW_RUNTIME, ""};
ev.device = 1;
ev.resource = 0;
int64_t start_time_us = 100;
int64_t duration_us = 1000;
auto start_time = time_point<system_clock>(microseconds(start_time_us));
std::deque<GenericTraceActivity> test_activities{3, ev};
test_activities[0].startTime = start_time_us;
test_activities[0].endTime = start_time_us + 5000;
test_activities[0].activityName = "SubGraph A execution";
test_activities[1].startTime = start_time_us;
test_activities[1].endTime = start_time_us + 2000;
test_activities[1].activityName = "Operator foo";
test_activities[2].startTime = start_time_us + 2500;
test_activities[2].endTime = start_time_us + 2900;
test_activities[2].activityName = "Operator bar";
auto mock_activity_profiler =
std::make_unique<MockActivityProfiler>(test_activities);
MockCuptiActivities activities;
CuptiActivityProfiler profiler(activities, /*cpu only*/ true);
profiler.addChildActivityProfiler(
std::move(mock_activity_profiler));
profiler.configure(*cfg_, start_time);
profiler.startTrace(start_time);
EXPECT_TRUE(profiler.isActive());
profiler.stopTrace(start_time + microseconds(duration_us));
EXPECT_TRUE(profiler.isActive());
char filename[] = "/tmp/libkineto_testXXXXXX.json";
mkstemps(filename, 5);
LOG(INFO) << "Logging to tmp file " << filename;
// process trace
auto logger = std::make_unique<MemoryTraceLogger>(*cfg_);
profiler.processTrace(*logger);
profiler.setLogger(logger.get());
ActivityTrace trace(std::move(logger), loggerFactory);
trace.save(filename);
const auto& traced_activites = trace.activities();
// Test we have all the events
EXPECT_EQ(traced_activites->size(), test_activities.size());
// Check that the expected file was written and that it has some content
int fd = open(filename, O_RDONLY);
if (!fd) {
perror(filename);
}
EXPECT_TRUE(fd);
// Should expect at least 100 bytes
struct stat buf{};
fstat(fd, &buf);
EXPECT_GT(buf.st_size, 100);
}
TEST_F(CuptiActivityProfilerTest, BufferSizeLimitTestWarmup) {
CuptiActivityProfiler profiler(cuptiActivities_, /*cpu only*/ false);
auto now = system_clock::now();
auto startTime = now + seconds(10);
int maxBufferSizeMB = 3;
auto startTimeEpoch = std::to_string(duration_cast<milliseconds>(startTime.time_since_epoch()).count());
std::string maxBufferSizeMBStr = std::to_string(maxBufferSizeMB);
cfg_->handleOption("ACTIVITIES_MAX_GPU_BUFFER_SIZE_MB", maxBufferSizeMBStr);
cfg_->handleOption("PROFILE_START_TIME", startTimeEpoch);
EXPECT_FALSE(profiler.isActive());
profiler.configure(*cfg_, now);
EXPECT_TRUE(profiler.isActive());
for (size_t i = 0; i < maxBufferSizeMB; i++) {
uint8_t* buf;
size_t gpuBufferSize;
size_t maxNumRecords;
cuptiActivities_.bufferRequestedOverride(&buf, &gpuBufferSize, &maxNumRecords);
}
// fast forward to startTime and profiler is now running
now = startTime;
profiler.performRunLoopStep(now, now);
auto next = now + milliseconds(1000);
profiler.performRunLoopStep(next, next);
profiler.performRunLoopStep(next, next);
profiler.performRunLoopStep(next, next);
EXPECT_FALSE(profiler.isActive());
}
|