49 const std::vector<uint32_t> &widths,
bool write,
53 const std::vector<uint32_t> &widths,
bool read,
56 const std::vector<uint32_t> &widths,
bool read,
bool write);
58 const std::vector<uint32_t> &widths,
59 uint32_t xferCount,
bool read,
bool write,
67 uint32_t xferCount,
bool read,
70 uint32_t addAmt, uint32_t numItems);
72 uint32_t addAmt, uint32_t numItems);
74 uint32_t xTrans, uint32_t yTrans,
77 uint32_t xTrans, uint32_t yTrans,
78 uint32_t numCoords,
size_t batchSizeLimit);
80 uint32_t xTrans, uint32_t yTrans,
101 const char *unit =
"B/s";
102 double value = bytesPerSec;
103 if (bytesPerSec >= 1e9) {
105 value = bytesPerSec / 1e9;
106 }
else if (bytesPerSec >= 1e6) {
108 value = bytesPerSec / 1e6;
109 }
else if (bytesPerSec >= 1e3) {
111 value = bytesPerSec / 1e3;
113 std::ostringstream oss;
114 oss.setf(std::ios::fixed);
116 oss << value <<
" " << unit;
122 const char *units[] = {
"B",
"KB",
"MB",
"GB",
"TB"};
123 double v = (double)bytes;
125 while (v >= 1024.0 && u < 4) {
129 std::ostringstream oss;
130 oss.setf(std::ios::fixed);
131 oss.precision(u == 0 ? 0 : 2);
132 oss << v <<
" " << units[u];
139 return std::to_string(us) +
" us";
140 double ms = us / 1000.0;
142 std::ostringstream oss;
143 oss.setf(std::ios::fixed);
144 oss.precision(ms < 10.0 ? 2 : (ms < 100.0 ? 1 : 0));
148 double sec = ms / 1000.0;
149 std::ostringstream oss;
150 oss.setf(std::ios::fixed);
151 oss.precision(sec < 10.0 ? 3 : 2);
160 void *ptr = _aligned_malloc(size, alignment);
162 throw std::bad_alloc();
165 void *ptr = std::aligned_alloc(alignment, size);
167 throw std::bad_alloc();
180int main(
int argc,
const char *argv[]) {
182 cli.description(
"Test an ESI system running the ESI tester image.");
183 cli.require_subcommand(1);
185 CLI::App *callback_test =
186 cli.add_subcommand(
"callback",
"initiate callback test");
187 uint32_t cb_iters = 1;
188 callback_test->add_option(
"-i,--iters", cb_iters,
189 "Number of iterations to run");
191 CLI::App *hostmemtestSub =
192 cli.add_subcommand(
"hostmem",
"Run the host memory test");
194 bool hmWrite =
false;
197 hostmemtestSub->add_flag(
"-w,--write", hmWrite,
198 "Enable host memory write test");
199 hostmemtestSub->add_flag(
"-r,--read", hmRead,
"Enable host memory read test");
200 hostmemtestSub->add_option(
201 "--widths", hostmemWidths,
204 CLI::App *dmatestSub = cli.add_subcommand(
"dma",
"Run the DMA test");
205 bool dmaRead =
false;
206 bool dmaWrite =
false;
208 dmatestSub->add_flag(
"-w,--write", dmaWrite,
"Enable dma write test");
209 dmatestSub->add_flag(
"-r,--read", dmaRead,
"Enable dma read test");
210 dmatestSub->add_option(
"--widths", dmaWidths,
214 CLI::App *bandwidthSub =
215 cli.add_subcommand(
"bandwidth",
"Run the bandwidth test");
216 uint32_t xferCount = 1000;
217 bandwidthSub->add_option(
"-c,--count", xferCount,
218 "Number of transfers to perform");
219 bool bandwidthRead =
false;
220 bool bandwidthWrite =
false;
221 bool bandwidthCheckData =
false;
224 bandwidthSub->add_option(
"--widths", bandwidthWidths,
225 "Width of the transfers to perform (default: " +
227 bandwidthSub->add_flag(
"-w,--write", bandwidthWrite,
228 "Enable bandwidth write");
229 bandwidthSub->add_flag(
"-r,--read", bandwidthRead,
"Enable bandwidth read");
230 bandwidthSub->add_flag(
"--check-data", bandwidthCheckData,
231 "Verify every transferred payload byte");
233 CLI::App *hostmembwSub =
234 cli.add_subcommand(
"hostmembw",
"Run the host memory bandwidth test");
235 uint32_t hmBwCount = 1000;
236 bool hmBwRead =
false;
237 bool hmBwWrite =
false;
239 hostmembwSub->add_option(
"-c,--count", hmBwCount,
240 "Number of hostmem transfers");
241 hostmembwSub->add_option(
242 "--widths", hmBwWidths,
244 hostmembwSub->add_flag(
"-w,--write", hmBwWrite,
245 "Measure hostmem write bandwidth");
246 hostmembwSub->add_flag(
"-r,--read", hmBwRead,
247 "Measure hostmem read bandwidth");
249 CLI::App *loopbackSub =
250 cli.add_subcommand(
"loopback",
"Test LoopbackInOutAdd function service");
251 uint32_t loopbackIters = 10;
252 bool loopbackPipeline =
false;
253 loopbackSub->add_option(
"-i,--iters", loopbackIters,
254 "Number of function invocations (default 10)");
255 loopbackSub->add_flag(
"-p,--pipeline", loopbackPipeline,
256 "Pipeline all calls then collect results");
258 CLI::App *aggBwSub = cli.add_subcommand(
260 "Aggregate hostmem bandwidth across four units (readmem*, writemem*)");
261 uint32_t aggWidth = 512;
262 uint32_t aggCount = 1000;
263 bool aggRead =
false;
264 bool aggWrite =
false;
265 aggBwSub->add_option(
267 "Bit width (default 512; other widths ignored if absent)");
268 aggBwSub->add_option(
"-c,--count", aggCount,
"Flits per unit (default 1000)");
269 aggBwSub->add_flag(
"-r,--read", aggRead,
"Include read units");
270 aggBwSub->add_flag(
"-w,--write", aggWrite,
"Include write units");
272 CLI::App *streamingAddSub = cli.add_subcommand(
273 "streaming_add",
"Test StreamingAdder function service with list input");
274 uint32_t streamingAddAmt = 5;
275 uint32_t streamingNumItems = 5;
276 bool streamingTranslate =
false;
277 streamingAddSub->add_option(
"-a,--add", streamingAddAmt,
278 "Amount to add to each element (default 5)");
279 streamingAddSub->add_option(
"-n,--num-items", streamingNumItems,
280 "Number of random items in the list (default 5)");
281 streamingAddSub->add_flag(
"-t,--translate", streamingTranslate,
282 "Use message translation (list translation)");
284 CLI::App *coordTranslateSub = cli.add_subcommand(
286 "Test CoordTranslator function service with list of coordinates");
287 uint32_t coordXTrans = 10;
288 uint32_t coordYTrans = 20;
289 uint32_t coordNumItems = 5;
290 coordTranslateSub->add_option(
"-x,--x-translation", coordXTrans,
291 "X translation amount (default 10)");
292 coordTranslateSub->add_option(
"-y,--y-translation", coordYTrans,
293 "Y translation amount (default 20)");
294 coordTranslateSub->add_option(
"-n,--num-coords", coordNumItems,
295 "Number of random coordinates (default 5)");
297 CLI::App *serialCoordTranslateSub = cli.add_subcommand(
299 "Test SerialCoordTranslator function service with list of coordinates");
300 uint32_t serialBatchSize = 240;
301 serialCoordTranslateSub->add_option(
"-x,--x-translation", coordXTrans,
302 "X translation amount (default 10)");
303 serialCoordTranslateSub->add_option(
"-y,--y-translation", coordYTrans,
304 "Y translation amount (default 20)");
305 serialCoordTranslateSub->add_option(
306 "-n,--num-coords", coordNumItems,
307 "Number of random coordinates (default 5)");
308 serialCoordTranslateSub
309 ->add_option(
"-b,--batch-size", serialBatchSize,
310 "Coordinates per header (default 240, max 65535)")
311 ->check(CLI::Range(1u, 0xFFFFu));
313 CLI::App *autoSerialCoordTranslateSub = cli.add_subcommand(
314 "auto_serial_coords",
315 "Test AutoSerialCoordTranslator (uses ListWindowToParallel/Serial "
316 "converters under the hood)");
317 uint32_t autoCoordXTrans = 10;
318 uint32_t autoCoordYTrans = 20;
319 uint32_t autoCoordNumItems = 5;
320 autoSerialCoordTranslateSub->add_option(
"-x,--x-translation", autoCoordXTrans,
321 "X translation amount (default 10)");
322 autoSerialCoordTranslateSub->add_option(
"-y,--y-translation", autoCoordYTrans,
323 "Y translation amount (default 20)");
324 autoSerialCoordTranslateSub->add_option(
325 "-n,--num-coords", autoCoordNumItems,
326 "Number of random coordinates (default 5)");
328 CLI::App *channelTestSub = cli.add_subcommand(
329 "channel",
"Test ChannelService to_host and from_host");
330 uint32_t channelIters = 10;
331 channelTestSub->add_option(
"-i,--iters", channelIters,
332 "Number of loopback iterations (default 10)");
334 CLI::App *resetSub = cli.add_subcommand(
335 "reset",
"Test the design reset feature (telemetry clears after reset)");
337 if (
int rc = cli.
esiParse(argc, argv))
339 if (!cli.get_help_ptr()->empty())
346 ctxt.
getLogger().
info(
"esitester",
"Connected to accelerator.");
347 Manifest manifest(ctxt, info.getJsonManifest());
350 acc->getServiceThread()->addPoll(*accel);
352 if (*callback_test) {
354 }
else if (*hostmemtestSub) {
355 hostmemTest(acc, accel, hostmemWidths, hmWrite, hmRead);
356 }
else if (*loopbackSub) {
358 }
else if (*dmatestSub) {
359 dmaTest(acc, accel, dmaWidths, dmaRead, dmaWrite);
360 }
else if (*bandwidthSub) {
361 bandwidthTest(acc, accel, bandwidthWidths, xferCount, bandwidthRead,
362 bandwidthWrite, bandwidthCheckData);
363 }
else if (*hostmembwSub) {
366 }
else if (*aggBwSub) {
369 }
else if (*streamingAddSub) {
370 if (streamingTranslate)
375 }
else if (*coordTranslateSub) {
377 }
else if (*serialCoordTranslateSub) {
379 coordNumItems, serialBatchSize);
380 }
else if (*autoSerialCoordTranslateSub) {
383 }
else if (*channelTestSub) {
385 }
else if (*resetSub) {
390 }
catch (std::exception &e) {
395 std::cout <<
"Exiting successfully\n";
400 uint32_t iterations) {
403 throw std::runtime_error(
"No cb_test child found in accelerator");
404 auto &ports = cb_test->second->getPorts();
405 auto cmd_port = ports.find(
AppID(
"cmd"));
406 if (cmd_port == ports.end())
407 throw std::runtime_error(
"No cmd port found in cb_test child");
410 throw std::runtime_error(
"cb_test cmd port is not MMIO");
412 auto f = ports.find(
AppID(
"cb"));
413 if (f == ports.end())
414 throw std::runtime_error(
"No cb port found in accelerator");
418 throw std::runtime_error(
"cb port is not a CallService::Callback");
420 std::atomic<uint32_t> callbackCount = 0;
423 conn->getLogger().
debug(
424 [&](std::string &subsystem, std::string &msg,
425 std::unique_ptr<std::map<std::string, std::any>> &details) {
426 subsystem =
"ESITESTER";
427 msg =
"Received callback";
428 details = std::make_unique<std::map<std::string, std::any>>();
429 details->emplace(
"data", data);
431 std::cout <<
"callback: " << *data.as<uint64_t>() << std::endl;
432 callbackCount.fetch_add(1);
437 for (uint32_t i = 0; i < iterations; ++i) {
438 conn->getLogger().info(
"esitester",
"Issuing callback command iteration " +
439 std::to_string(i) +
"/" +
440 std::to_string(iterations));
441 cmdMMIO->write(0x10, i);
443 for (uint32_t wait = 0; wait < 1000; ++wait) {
444 if (callbackCount.load() > i)
446 std::this_thread::sleep_for(std::chrono::milliseconds(1));
448 if (callbackCount.load() <= i)
449 throw std::runtime_error(
"Callback test failed. No callback received");
454 uint64_t address, uint64_t flits) {
455 struct RegisterExpectation {
460 const RegisterExpectation expectations[] = {
461 {0x00, 0,
"flits_left"},
462 {0x08, address,
"start_addr"},
463 {0x10, flits,
"flits_total"},
465 for (
const auto &[offset, expected, name] : expectations) {
466 uint64_t actual = mmio.
read(offset);
467 if (actual != expected)
468 throw std::runtime_error(
"BurstCommand MMIO readback for " +
469 std::string(name) +
" failed: expected " +
478 std::cout <<
"Running hostmem WRITE test with width " << width << std::endl;
479 uint64_t *dataPtr =
static_cast<uint64_t *
>(region.
getPtr());
480 auto check = [&](
bool print) {
482 for (
size_t i = 0; i < 9; ++i) {
484 printf(
"[write] dataPtr[%zu] = 0x%016lx\n", i, dataPtr[i]);
485 if (i < (width + 63) / 64 && dataPtr[i] == 0xFFFFFFFFFFFFFFFFull)
491 auto writeMemChildIter = acc->getChildren().find(
AppID(
"writemem", width));
492 if (writeMemChildIter == acc->getChildren().end())
493 throw std::runtime_error(
494 "hostmem write test failed. No writemem child found");
495 auto &writeMemPorts = writeMemChildIter->second->getPorts();
502 {
AppID(
"writemem", width),
AppID(
"mmio", width),
AppID(
"cmd")}, cmdPath);
504 throw std::runtime_error(
505 "hostmem write test failed. No mmio[width]/cmd MMIO port");
508 throw std::runtime_error(
509 "hostmem write test failed. mmio[width]/cmd port not MMIO");
511 auto issuedPortIter = writeMemPorts.find(
AppID(
"addrCmdIssued"));
512 if (issuedPortIter == writeMemPorts.end())
513 throw std::runtime_error(
514 "hostmem write test failed. addrCmdIssued missing");
515 auto *addrCmdIssuedPort =
517 if (!addrCmdIssuedPort)
518 throw std::runtime_error(
519 "hostmem write test failed. addrCmdIssued not telemetry");
520 addrCmdIssuedPort->connect();
522 auto responsesPortIter = writeMemPorts.find(
AppID(
"addrCmdResponses"));
523 if (responsesPortIter == writeMemPorts.end())
524 throw std::runtime_error(
525 "hostmem write test failed. addrCmdResponses missing");
526 auto *addrCmdResponsesPort =
528 if (!addrCmdResponsesPort)
529 throw std::runtime_error(
530 "hostmem write test failed. addrCmdResponses not telemetry");
531 addrCmdResponsesPort->connect();
533 for (
size_t i = 0, e = 9; i < e; ++i)
534 dataPtr[i] = 0xFFFFFFFFFFFFFFFFull;
536 uint64_t devPtr =
reinterpret_cast<uint64_t
>(region.
getDevicePtr());
537 cmdMMIO->write(0x08, devPtr);
538 cmdMMIO->write(0x10, 1);
540 cmdMMIO->write(0x18, 1);
542 for (
int i = 0; i < 100; ++i) {
543 auto issued = addrCmdIssuedPort->readInt();
544 auto responses = addrCmdResponsesPort->readInt();
545 if (issued == 1 && responses == 1) {
549 std::this_thread::sleep_for(std::chrono::microseconds(100));
553 throw std::runtime_error(
"hostmem write test (" + std::to_string(width) +
554 " bits) timeout waiting for completion");
557 throw std::runtime_error(
"hostmem write test failed (" +
558 std::to_string(width) +
" bits)");
564 std::cout <<
"Running hostmem READ test with width " << width << std::endl;
565 auto readMemChildIter = acc->getChildren().find(
AppID(
"readmem", width));
566 if (readMemChildIter == acc->getChildren().end())
567 throw std::runtime_error(
568 "hostmem read test failed. No readmem child found");
570 auto &readMemPorts = readMemChildIter->second->getPorts();
575 BundlePort *addrCmdPortBundle = acc->resolvePort(
578 if (!addrCmdPortBundle)
579 throw std::runtime_error(
580 "hostmem read test failed. No mmio[width]/cmd MMIO port");
583 throw std::runtime_error(
584 "hostmem read test failed. mmio[width]/cmd port not MMIO");
586 auto lastReadPortIter = readMemPorts.find(
AppID(
"lastReadLSB"));
587 if (lastReadPortIter == readMemPorts.end())
588 throw std::runtime_error(
"hostmem read test failed. lastReadLSB missing");
592 throw std::runtime_error(
593 "hostmem read test failed. lastReadLSB not telemetry");
594 lastReadPort->connect();
596 auto issuedPortIter = readMemPorts.find(
AppID(
"addrCmdIssued"));
597 if (issuedPortIter == readMemPorts.end())
598 throw std::runtime_error(
"hostmem read test failed. addrCmdIssued missing");
599 auto *addrCmdIssuedPort =
601 if (!addrCmdIssuedPort)
602 throw std::runtime_error(
603 "hostmem read test failed. addrCmdIssued not telemetry");
604 addrCmdIssuedPort->connect();
606 auto responsesPortIter = readMemPorts.find(
AppID(
"addrCmdResponses"));
607 if (responsesPortIter == readMemPorts.end())
608 throw std::runtime_error(
609 "hostmem read test failed. addrCmdResponses missing");
610 auto *addrCmdResponsesPort =
612 if (!addrCmdResponsesPort)
613 throw std::runtime_error(
614 "hostmem read test failed. addrCmdResponses not telemetry");
615 addrCmdResponsesPort->connect();
617 for (
size_t i = 0; i < 8; ++i) {
618 auto *dataPtr =
static_cast<uint64_t *
>(region.
getPtr());
619 dataPtr[0] = 0x12345678ull << i;
620 dataPtr[1] = 0xDEADBEEFull << i;
622 uint64_t devPtr =
reinterpret_cast<uint64_t
>(region.
getDevicePtr());
623 addrCmdMMIO->write(0x08, devPtr);
624 addrCmdMMIO->write(0x10, 1);
626 addrCmdMMIO->write(0x18, 1);
628 for (
int waitLoop = 0; waitLoop < 100; ++waitLoop) {
629 auto issued = addrCmdIssuedPort->readInt();
630 auto responses = addrCmdResponsesPort->readInt();
631 if (issued == 1 && responses == 1) {
635 std::this_thread::sleep_for(std::chrono::milliseconds(10));
638 throw std::runtime_error(
"hostmem read (" + std::to_string(width) +
639 " bits) timeout waiting for completion");
640 uint64_t captured = lastReadPort->readInt();
641 uint64_t expected = dataPtr[0];
643 expected &= ((1ull << width) - 1);
644 if (captured != expected)
645 throw std::runtime_error(
"hostmem read test (" + std::to_string(width) +
646 " bits) failed. Expected " +
653 const std::vector<uint32_t> &widths,
bool write,
658 auto scratchRegion = hostmem->allocate(1024 * 1024,
659 {.writeable =
true});
660 uint64_t *dataPtr =
static_cast<uint64_t *
>(scratchRegion->getPtr());
661 conn->getLogger().info(
"esitester",
662 "Running host memory test with region size " +
663 std::to_string(scratchRegion->getSize()) +
664 " bytes at 0x" +
toHex(dataPtr));
665 for (
size_t i = 0; i < scratchRegion->getSize() / 8; ++i)
667 scratchRegion->flush();
670 for (
size_t width : widths) {
676 }
catch (std::exception &e) {
677 conn->getLogger().error(
"esitester",
"Hostmem test failed for width " +
678 std::to_string(width) +
": " +
684 throw std::runtime_error(
"Hostmem test failed");
685 std::cout <<
"Hostmem test passed" << std::endl;
690 Logger &logger = conn->getLogger();
691 logger.
info(
"esitester",
692 "== Running DMA read test with width " + std::to_string(width));
695 acc->resolvePort({
AppID(
"tohostdma", width),
AppID(
"cmd")}, lastPath);
697 throw std::runtime_error(
"dma read test failed. No tohostdma[" +
698 std::to_string(width) +
"] found");
701 throw std::runtime_error(
"dma read test failed. MMIO port is not MMIO");
704 acc->resolvePort({
AppID(
"tohostdma", width),
AppID(
"out")}, lastPath);
708 size_t xferCount = 24;
710 toHostMMIO->write(0, xferCount);
711 const size_t wireBytes = (width + 7) / 8;
712 for (
size_t index = 0; index < xferCount; ++index) {
714 if (data.getSize() != wireBytes)
715 throw std::runtime_error(
"dma read test failed. Expected " +
716 std::to_string(wireBytes) +
" bytes, got " +
717 std::to_string(data.getSize()));
718 for (
size_t byte = 0;
byte < wireBytes; ++byte) {
721 if (data.getBytes()[
byte] != expected)
722 throw std::runtime_error(
723 "dma read test failed. Data mismatch at item " +
724 std::to_string(index) +
" byte " + std::to_string(
byte) +
725 ": expected " +
toHex(expected) +
", got " +
726 toHex(data.getBytes()[
byte]));
728 logger.
debug(
"esitester",
729 "Payload [" + std::to_string(index) +
"] = 0x" + data.toHex());
732 std::cout <<
" DMA read test for " << width <<
" bits passed" << std::endl;
737 Logger &logger = conn->getLogger();
738 logger.
info(
"esitester",
739 "Running DMA write test with width " + std::to_string(width));
742 acc->resolvePort({
AppID(
"fromhostdma", width),
AppID(
"cmd")}, lastPath);
743 if (!fromHostMMIOPort)
744 throw std::runtime_error(
"dma read test for " +
toString(width) +
745 " bits failed. No fromhostdma[" +
746 std::to_string(width) +
"] found");
749 throw std::runtime_error(
"dma write test for " +
toString(width) +
750 " bits failed. MMIO port is not MMIO");
753 acc->resolvePort({
AppID(
"fromhostdma", width),
AppID(
"in")}, lastPath);
755 throw std::runtime_error(
"dma write test for " +
toString(width) +
756 " bits failed. No out port found");
760 size_t xferCount = 24;
761 std::vector<uint8_t> data((width + 7) / 8, 0);
762 fromHostMMIO->read(8);
763 fromHostMMIO->write(0, xferCount);
764 for (
size_t i = 1; i < xferCount + 1; ++i) {
771 std::this_thread::sleep_for(std::chrono::milliseconds(10));
773 }
while (!successWrite && ++attempts < 100);
775 throw std::runtime_error(
"dma write test for " +
toString(width) +
776 " bits failed. Write failed");
777 uint64_t lastReadMMIO;
778 for (
size_t a = 0; a < 20; ++a) {
779 lastReadMMIO = fromHostMMIO->read(8);
780 if (lastReadMMIO == i)
782 std::this_thread::sleep_for(std::chrono::milliseconds(10));
784 throw std::runtime_error(
"dma write for " +
toString(width) +
785 " bits test failed. Read from MMIO failed");
789 std::cout <<
" DMA write test for " << width <<
" bits passed" << std::endl;
793 const std::vector<uint32_t> &widths,
bool read,
797 for (
size_t width : widths)
800 }
catch (std::exception &e) {
802 std::cerr <<
"DMA write test for " << width
803 <<
" bits failed: " << e.what() << std::endl;
806 for (
size_t width : widths)
809 throw std::runtime_error(
"DMA test failed");
810 std::cout <<
"DMA test passed" << std::endl;
820 const size_t tailBits = bitWidth % 8;
822 value &= (uint8_t(1) << tailBits) - 1;
829 for (
size_t byte = 0;
byte < bytes.size(); ++byte)
835 const size_t numChunks = (bitWidth + 63) / 64;
837 for (
size_t chunkIndex = 0; chunkIndex < numChunks; ++chunkIndex) {
839 for (
size_t byteInChunk = 0; byteInChunk < 8; ++byteInChunk) {
840 const size_t byteIndex = chunkIndex * 8 + byteInChunk;
843 << (8 * byteInChunk);
845 const unsigned rotate = (8 * chunkIndex) % 64;
846 fold ^= rotate ? ((chunk << rotate) | (chunk >> (64 - rotate))) : chunk;
852 size_t width,
size_t xferCount,
bool checkData) {
856 acc->resolvePort({
AppID(
"tohostdma", width),
AppID(
"cmd")}, lastPath);
858 throw std::runtime_error(
"bandwidth test failed. No tohostdma[" +
859 std::to_string(width) +
"] found");
862 throw std::runtime_error(
"bandwidth test failed. MMIO port is not MMIO");
865 acc->resolvePort({
AppID(
"tohostdma", width),
AppID(
"out")}, lastPath);
869 Logger &logger = conn->getLogger();
870 logger.
info(
"esitester",
"Starting read bandwidth test with " +
871 std::to_string(xferCount) +
" x " +
872 std::to_string(width) +
" bit transfers");
874 size_t sizeMismatches = 0;
875 size_t dataMismatches = 0;
876 size_t firstMismatchItem = 0;
877 size_t firstMismatchByte = 0;
878 uint8_t firstExpected = 0;
879 uint8_t firstActual = 0;
880 auto start = std::chrono::high_resolution_clock::now();
881 toHostMMIO->write(0, xferCount);
882 for (
size_t index = 0; index < xferCount; ++index) {
886 if (data.getSize() != wireBytes) {
889 for (
size_t byte = 0;
byte < wireBytes; ++byte) {
890 const uint8_t expected =
892 if (data.getBytes()[
byte] != expected) {
893 if (dataMismatches == 0) {
894 firstMismatchItem = index;
895 firstMismatchByte = byte;
896 firstExpected = expected;
897 firstActual = data.getBytes()[byte];
906 &data](std::string &subsystem, std::string &msg,
907 std::unique_ptr<std::map<std::string, std::any>> &details) {
908 subsystem =
"esitester";
909 msg =
"Payload [" + std::to_string(index) +
"] = 0x" + data.toHex();
912 auto duration = std::chrono::duration_cast<std::chrono::microseconds>(
913 std::chrono::high_resolution_clock::now() - start);
915 if (checkData && sizeMismatches != 0)
916 throw std::runtime_error(
917 "bandwidth read data mismatch: " + std::to_string(sizeMismatches) +
918 " payload(s) had the wrong wire size");
919 if (checkData && dataMismatches != 0)
920 throw std::runtime_error(
921 "bandwidth read data mismatch: " + std::to_string(dataMismatches) +
922 " bytes wrong; first at item " + std::to_string(firstMismatchItem) +
923 " byte " + std::to_string(firstMismatchByte) +
": expected " +
924 toHex(firstExpected) +
", got " +
toHex(firstActual));
926 (double)xferCount * (width / 8.0) * 1e6 / (double)duration.count();
927 logger.
info(
"esitester",
928 " Bandwidth test: " + std::to_string(xferCount) +
" x " +
929 std::to_string(width) +
" bit transfers in " +
930 std::to_string(duration.count()) +
" microseconds");
933 logger.
info(
"esitester",
" data integrity: passed");
937 size_t width,
size_t xferCount,
bool checkData) {
941 acc->resolvePort({
AppID(
"fromhostdma", width),
AppID(
"cmd")}, lastPath);
942 if (!fromHostMMIOPort)
943 throw std::runtime_error(
"bandwidth test failed. No fromhostdma[" +
944 std::to_string(width) +
"] found");
947 throw std::runtime_error(
"bandwidth test failed. MMIO port is not MMIO");
950 auto fromHostChild = acc->getChildren().find(
AppID(
"fromhostdma", width));
951 if (fromHostChild == acc->getChildren().end())
952 throw std::runtime_error(
"bandwidth test failed. No fromhostdma[" +
953 std::to_string(width) +
"] found");
955 fromHostChild->second->getPorts().find(
AppID(
"fromHostChecksum"));
956 if (checksumIter == fromHostChild->second->getPorts().end())
957 throw std::runtime_error(
958 "bandwidth write data check failed. fromHostChecksum missing");
962 throw std::runtime_error(
"bandwidth write data check failed. "
963 "fromHostChecksum not telemetry");
968 acc->resolvePort({
AppID(
"fromhostdma", width),
AppID(
"in")}, lastPath);
972 Logger &logger = conn->getLogger();
973 logger.
info(
"esitester",
"Starting write bandwidth test with " +
974 std::to_string(xferCount) +
" x " +
975 std::to_string(width) +
" bit transfers");
977 for (
size_t i = 0; i < dataVec.size(); ++i)
980 uint64_t expectedChecksum = 0;
981 auto start = std::chrono::high_resolution_clock::now();
982 fromHostMMIO->read(8);
983 fromHostMMIO->write(0, xferCount);
984 for (
size_t index = 0; index < xferCount; ++index) {
994 &data](std::string &subsystem, std::string &msg,
995 std::unique_ptr<std::map<std::string, std::any>> &details) {
996 subsystem =
"esitester";
997 msg =
"Payload [" + std::to_string(index) +
"] = 0x" + data.toHex();
1000 auto duration = std::chrono::duration_cast<std::chrono::microseconds>(
1001 std::chrono::high_resolution_clock::now() - start);
1003 std::vector<uint8_t> expectedLast;
1007 uint64_t expectedLastValue = 0;
1008 if (!expectedLast.empty())
1009 std::memcpy(&expectedLastValue, expectedLast.data(),
1010 std::min(expectedLast.size(),
sizeof(expectedLastValue)));
1011 bool complete = xferCount == 0;
1012 uint64_t lastReadValue = 0;
1013 for (
size_t attempt = 0; !complete && attempt < 5000; ++attempt) {
1014 lastReadValue = fromHostMMIO->read(8);
1015 if (lastReadValue == expectedLastValue) {
1019 std::this_thread::sleep_for(std::chrono::milliseconds(1));
1022 throw std::runtime_error(
1023 "bandwidth write data check timed out waiting for completion: "
1024 "expected final payload " +
1025 toHex(expectedLastValue) +
", got " +
toHex(lastReadValue));
1026 const uint64_t actualChecksum = checksumPort->
readInt();
1027 if (actualChecksum != expectedChecksum)
1028 throw std::runtime_error(
1029 "bandwidth write data mismatch: checksum expected " +
1030 toHex(expectedChecksum) +
", got " +
toHex(actualChecksum));
1034 double bytesPerSec =
1035 (double)xferCount * (width / 8.0) * 1e6 / (double)duration.count();
1036 logger.
info(
"esitester",
1037 " Bandwidth test: " + std::to_string(xferCount) +
" x " +
1038 std::to_string(width) +
" bit transfers in " +
1039 std::to_string(duration.count()) +
" microseconds");
1042 logger.
info(
"esitester",
" data integrity: passed");
1046 const std::vector<uint32_t> &widths,
1047 uint32_t xferCount,
bool read,
bool write,
1050 for (uint32_t w : widths)
1053 for (uint32_t w : widths)
1067 return (uint8_t)(
seq >> (8 * (j % 8))) ^ (uint8_t)(j * 0x9D);
1075 const size_t tailBits = width % 8;
1077 value &= (uint8_t(1) << tailBits) - 1;
1086 size_t numChunks = (width + 63) / 64;
1088 for (
size_t c = 0; c < numChunks; ++c) {
1090 for (
size_t b = 0; b < 8; ++b) {
1091 size_t j = 8 * c + b;
1095 unsigned r = (8 * c) % 64;
1096 fold ^= r ? ((chunk << r) | (chunk >> (64 - r))) : chunk;
1108 uint32_t width, uint32_t xferCount) {
1109 Logger &logger = conn->getLogger();
1110 logger.
info(
"esitester",
"Starting hostmem WRITE bandwidth test: " +
1111 std::to_string(xferCount) +
" x " +
1112 std::to_string(width) +
" bits");
1114 auto writeMemChildIter = acc->getChildren().find(
AppID(
"writemem", width));
1115 if (writeMemChildIter == acc->getChildren().end())
1116 throw std::runtime_error(
"hostmem write bandwidth: writemem child missing");
1117 auto &writeMemPorts = writeMemChildIter->second->getPorts();
1123 BundlePort *cmdPortBundle = acc->resolvePort(
1124 {
AppID(
"writemem", width),
AppID(
"mmio", width),
AppID(
"cmd")}, cmdPath);
1126 throw std::runtime_error(
"hostmem write bandwidth: cmd MMIO missing");
1129 throw std::runtime_error(
"hostmem write bandwidth: cmd not MMIO");
1132 BundlePort *cyclePortBundle = acc->resolvePort(
1135 auto issuedIter = writeMemPorts.find(
AppID(
"addrCmdIssued"));
1136 auto respIter = writeMemPorts.find(
AppID(
"addrCmdResponses"));
1137 if (issuedIter == writeMemPorts.end() || respIter == writeMemPorts.end() ||
1139 throw std::runtime_error(
"hostmem write bandwidth: telemetry missing");
1145 if (!issuedPort || !respPort || !cyclePort)
1146 throw std::runtime_error(
1147 "hostmem write bandwidth: telemetry type mismatch");
1149 issuedPort->connect();
1154 uint64_t *dataPtr =
static_cast<uint64_t *
>(region.
getPtr());
1155 size_t words = region.
getSize() / 8;
1156 for (
size_t i = 0; i < words; ++i)
1157 dataPtr[i] = i + 0xA5A50000;
1160 auto start = std::chrono::high_resolution_clock::now();
1162 uint64_t devPtr =
reinterpret_cast<uint64_t
>(region.
getDevicePtr());
1163 cmdMMIO->write(0x08, devPtr);
1164 cmdMMIO->write(0x10, xferCount);
1165 cmdMMIO->write(0x18, 1);
1168 bool completed =
false;
1169 for (
int wait = 0; wait < 100000; ++wait) {
1170 uint64_t respNow = respPort->
readInt();
1171 if (respNow == xferCount) {
1175 std::this_thread::sleep_for(std::chrono::microseconds(50));
1178 throw std::runtime_error(
"hostmem write bandwidth timeout");
1179 auto duration = std::chrono::duration_cast<std::chrono::microseconds>(
1180 std::chrono::high_resolution_clock::now() - start);
1181 double bytesPerSec =
1182 (double)xferCount * (width / 8.0) * 1e6 / (double)duration.count();
1183 uint64_t cycles = cyclePort->
readInt();
1184 double bytesPerCycle = (double)xferCount * (width / 8.0) / (double)cycles;
1185 std::cout <<
"[WRITE] Hostmem bandwidth (" << std::to_string(width)
1187 << std::to_string(xferCount) <<
" flits in "
1188 << std::to_string(duration.count()) <<
" us, "
1189 << std::to_string(cycles) <<
" cycles, " << bytesPerCycle
1190 <<
" bytes/cycle" << std::endl;
1196 uint8_t *bytePtr =
static_cast<uint8_t *
>(region.
getPtr());
1198 size_t mismatches = 0;
1199 uint32_t firstMismatch = 0;
1200 size_t firstByte = 0;
1201 uint8_t firstExpected = 0, firstActual = 0;
1202 for (uint32_t i = 0; i < xferCount; ++i) {
1203 for (
size_t j = 0; j < elemBytes; ++j) {
1205 uint8_t actual = bytePtr[(size_t)i * elemBytes + j];
1206 if (actual != expected) {
1207 if (mismatches == 0) {
1210 firstExpected = expected;
1211 firstActual = actual;
1217 if (mismatches != 0) {
1219 std::snprintf(eb,
sizeof(eb),
"0x%02x", firstExpected);
1220 std::snprintf(gb,
sizeof(gb),
"0x%02x", firstActual);
1221 throw std::runtime_error(
1222 "hostmem write bandwidth data mismatch: " + std::to_string(mismatches) +
1223 " bytes wrong; first at element " + std::to_string(firstMismatch) +
1224 " byte " + std::to_string(firstByte) +
" expected=" + eb +
1232 uint32_t width, uint32_t xferCount) {
1233 Logger &logger = conn->getLogger();
1234 logger.
info(
"esitester",
"Starting hostmem READ bandwidth test: " +
1235 std::to_string(xferCount) +
" x " +
1236 std::to_string(width) +
" bits");
1238 auto readMemChildIter = acc->getChildren().find(
AppID(
"readmem", width));
1239 if (readMemChildIter == acc->getChildren().end())
1240 throw std::runtime_error(
"hostmem read bandwidth: readmem child missing");
1241 auto &readMemPorts = readMemChildIter->second->getPorts();
1246 BundlePort *cmdPortBundle = acc->resolvePort(
1247 {
AppID(
"readmem", width),
AppID(
"mmio", width),
AppID(
"cmd")}, cmdPath);
1249 throw std::runtime_error(
"hostmem read bandwidth: cmd MMIO missing");
1252 throw std::runtime_error(
"hostmem read bandwidth: cmd not MMIO");
1255 BundlePort *cyclePortBundle = acc->resolvePort(
1258 auto issuedIter = readMemPorts.find(
AppID(
"addrCmdIssued"));
1259 auto respIter = readMemPorts.find(
AppID(
"addrCmdResponses"));
1260 auto checksumIter = readMemPorts.find(
AppID(
"readChecksum"));
1261 if (issuedIter == readMemPorts.end() || respIter == readMemPorts.end() ||
1262 checksumIter == readMemPorts.end() || !cyclePortBundle)
1263 throw std::runtime_error(
"hostmem read bandwidth: telemetry missing");
1267 auto *checksumPort =
1269 auto *cycleCntPort =
1271 if (!issuedPort || !respPort || !checksumPort || !cycleCntPort)
1272 throw std::runtime_error(
"hostmem read bandwidth: telemetry type mismatch");
1273 issuedPort->connect();
1282 uint8_t *bytePtr =
static_cast<uint8_t *
>(region.
getPtr());
1284 uint64_t expectedChecksum = 0;
1285 for (uint32_t i = 0; i < xferCount; ++i) {
1286 for (
size_t j = 0; j < elemBytes; ++j)
1291 uint64_t devPtr =
reinterpret_cast<uint64_t
>(region.
getDevicePtr());
1292 auto start = std::chrono::high_resolution_clock::now();
1294 cmdMMIO->write(0x08, devPtr);
1295 cmdMMIO->write(0x10, xferCount);
1296 cmdMMIO->write(0x18, 1);
1298 bool timeout =
true;
1299 for (
int wait = 0; wait < 100000; ++wait) {
1300 uint64_t respNow = respPort->
readInt();
1301 if (respNow == xferCount) {
1305 std::this_thread::sleep_for(std::chrono::microseconds(50));
1308 throw std::runtime_error(
"hostmem read bandwidth timeout");
1309 auto duration = std::chrono::duration_cast<std::chrono::microseconds>(
1310 std::chrono::high_resolution_clock::now() - start);
1311 double bytesPerSec =
1312 (double)xferCount * (width / 8.0) * 1e6 / (double)duration.count();
1313 uint64_t cycles = cycleCntPort->
readInt();
1314 double bytesPerCycle = (double)xferCount * (width / 8.0) / (double)cycles;
1315 std::cout <<
"[ READ] Hostmem bandwidth (" << width
1317 <<
" flits in " << duration.count() <<
" us, " << cycles
1318 <<
" cycles, " << bytesPerCycle <<
" bytes/cycle" << std::endl;
1320 uint64_t gotChecksum = checksumPort->
readInt();
1321 if (gotChecksum != expectedChecksum) {
1322 char eb[24], gb[24];
1323 std::snprintf(eb,
sizeof(eb),
"0x%016llx",
1324 (
unsigned long long)expectedChecksum);
1325 std::snprintf(gb,
sizeof(gb),
"0x%016llx", (
unsigned long long)gotChecksum);
1326 throw std::runtime_error(
1328 "hostmem read bandwidth data mismatch: checksum expected ") +
1335 const std::vector<uint32_t> &widths,
bool read,
1338 hostmemSvc->
start();
1339 auto region = hostmemSvc->allocate(1024 * 1024 * 1024,
1340 {.writeable =
true});
1341 for (uint32_t w : widths) {
1350 uint32_t iterations,
bool pipeline) {
1351 Logger &logger = conn->getLogger();
1354 throw std::runtime_error(
"Loopback test: no 'loopback' child");
1355 auto &ports = loopbackChild->second->getPorts();
1356 auto addIter = ports.find(
AppID(
"add"));
1357 if (addIter == ports.end())
1358 throw std::runtime_error(
"Loopback test: no 'add' port");
1363 throw std::runtime_error(
1364 "Loopback test: 'add' port not a FuncService::Function");
1365 funcPort->connect();
1366 if (iterations == 0) {
1367 logger.
info(
"esitester",
"Loopback add test: 0 iterations (skipped)");
1370 std::mt19937_64 rng(0xC0FFEE);
1371 std::uniform_int_distribution<uint32_t> dist(0, (1u << 24) - 1);
1374 auto start = std::chrono::high_resolution_clock::now();
1375 for (uint32_t i = 0; i < iterations; ++i) {
1376 uint32_t argVal = dist(rng);
1377 uint32_t expected = (argVal + 11) & 0xFFFF;
1378 uint8_t argBytes[3] = {
1379 static_cast<uint8_t
>(argVal & 0xFF),
1380 static_cast<uint8_t
>((argVal >> 8) & 0xFF),
1381 static_cast<uint8_t
>((argVal >> 16) & 0xFF),
1384 MessageData resMsg = funcPort->call(argMsg).get();
1385 uint16_t got = *resMsg.
as<uint16_t>();
1386 std::cout <<
"[loopback] i=" << i <<
" arg=0x" <<
esi::toHex(argVal)
1389 if (got != expected)
1390 throw std::runtime_error(
"Loopback mismatch (non-pipelined)");
1392 auto end = std::chrono::high_resolution_clock::now();
1393 auto us = std::chrono::duration_cast<std::chrono::microseconds>(end - start)
1395 double callsPerSec = (double)iterations * 1e6 / (
double)us;
1396 logger.
info(
"esitester",
"Loopback add test passed (non-pipelined, " +
1397 std::to_string(iterations) +
" calls, " +
1398 std::to_string(us) +
" us, " +
1399 std::to_string(callsPerSec) +
" calls/s)");
1402 std::vector<std::future<MessageData>> futures;
1403 futures.reserve(iterations);
1404 std::vector<uint32_t> expectedVals;
1405 expectedVals.reserve(iterations);
1407 auto issueStart = std::chrono::high_resolution_clock::now();
1408 for (uint32_t i = 0; i < iterations; ++i) {
1409 uint32_t argVal = dist(rng);
1410 uint32_t expected = (argVal + 11) & 0xFFFF;
1411 uint8_t argBytes[3] = {
1412 static_cast<uint8_t
>(argVal & 0xFF),
1413 static_cast<uint8_t
>((argVal >> 8) & 0xFF),
1414 static_cast<uint8_t
>((argVal >> 16) & 0xFF),
1416 futures.emplace_back(funcPort->call(
MessageData(argBytes, 3)));
1417 expectedVals.emplace_back(expected);
1419 auto issueEnd = std::chrono::high_resolution_clock::now();
1421 for (uint32_t i = 0; i < iterations; ++i) {
1423 uint16_t got = *resMsg.
as<uint16_t>();
1424 uint16_t exp = (uint16_t)expectedVals[i];
1425 std::cout <<
"[loopback-pipelined] i=" << i <<
" got=0x"
1428 throw std::runtime_error(
"Loopback mismatch (pipelined) idx=" +
1431 auto collectEnd = std::chrono::high_resolution_clock::now();
1433 auto issueUs = std::chrono::duration_cast<std::chrono::microseconds>(
1434 issueEnd - issueStart)
1436 auto totalUs = std::chrono::duration_cast<std::chrono::microseconds>(
1437 collectEnd - issueStart)
1440 double issueRate = (double)iterations * 1e6 / (
double)issueUs;
1441 double completionRate = (double)iterations * 1e6 / (
double)totalUs;
1443 logger.
info(
"esitester",
"Loopback add test passed (pipelined). Issued " +
1444 std::to_string(iterations) +
" in " +
1445 std::to_string(issueUs) +
" us (" +
1446 std::to_string(issueRate) +
1447 " calls/s), total " + std::to_string(totalUs) +
1448 " us (" + std::to_string(completionRate) +
1449 " calls/s effective)");
1459 Logger &logger = conn->getLogger();
1460 constexpr uint32_t width = 64;
1468 auto writeMemChildIter = accel->
getChildren().find(
AppID(
"writemem", width));
1469 if (writeMemChildIter == accel->
getChildren().end())
1470 throw std::runtime_error(
"Reset test: no 'writemem' child");
1471 auto &ports = writeMemChildIter->second->getPorts();
1472 auto respIter = ports.find(
AppID(
"addrCmdResponses"));
1473 if (respIter == ports.end())
1474 throw std::runtime_error(
1475 "Reset test: no 'addrCmdResponses' telemetry port");
1479 throw std::runtime_error(
"Reset test: 'addrCmdResponses' not telemetry");
1480 respMetric->connect();
1482 uint64_t before = respMetric->readInt();
1483 std::cout <<
"[reset] telemetry addrCmdResponses before reset = " << before
1486 throw std::runtime_error(
1487 "Reset test: telemetry was not incremented by the hostmem write");
1490 logger.
info(
"esitester",
"Requesting design reset");
1492 throw std::runtime_error(
"Reset test: reset() reported failure");
1493 std::cout <<
"[reset] reset requested" << std::endl;
1497 uint64_t after = before;
1498 constexpr int maxPolls = 1000000;
1499 for (
int polls = 0; polls < maxPolls; ++polls) {
1500 after = respMetric->readInt();
1503 std::this_thread::sleep_for(std::chrono::microseconds(1));
1505 std::cout <<
"[reset] telemetry addrCmdResponses after reset = " << after
1508 throw std::runtime_error(
1509 "Reset test: telemetry was not cleared by the reset (got " +
1510 std::to_string(after) +
")");
1512 std::cout <<
"Reset test passed" << std::endl;
1517 uint32_t xferCount,
bool read,
1519 Logger &logger = conn->getLogger();
1520 if (!read && !write) {
1521 std::cout <<
"aggbandwidth: nothing to do (enable --read and/or --write)\n";
1526 "Aggregate hostmem bandwidth start width=" + std::to_string(width) +
1527 " count=" + std::to_string(xferCount) +
1528 " read=" + (read ?
"Y" :
"N") +
" write=" + (write ?
"Y" :
"N"));
1531 hostmemSvc->
start();
1535 bool isRead =
false;
1536 bool isWrite =
false;
1537 std::unique_ptr<esi::services::HostMem::HostMemRegion> region;
1541 bool launched =
false;
1544 uint64_t duration_us = 0;
1545 uint64_t cycleCount = 0;
1546 std::chrono::high_resolution_clock::time_point start;
1548 std::vector<Unit> units;
1549 const std::vector<std::string> readPrefixes = {
"readmem",
"readmem_0",
1550 "readmem_1",
"readmem_2"};
1551 const std::vector<std::string> writePrefixes = {
"writemem",
"writemem_0",
1552 "writemem_1",
"writemem_2"};
1556 size_t strideBytes = ((width + 31) / 32) * 4;
1557 size_t neededBytes =
static_cast<size_t>(xferCount) * strideBytes;
1558 size_t regionBytes = neededBytes < (1u << 20) ? (1u << 20) : neededBytes;
1560 auto addUnits = [&](
const std::vector<std::string> &pref,
bool doRead,
1562 for (
auto &p : pref) {
1564 auto childIt = acc->getChildren().find(
id);
1565 if (childIt == acc->getChildren().end())
1567 auto &ports = childIt->second->getPorts();
1568 auto respIt = ports.find(
AppID(
"addrCmdResponses"));
1573 acc->resolvePort({id,
AppID(
"mmio", width),
AppID(
"cmd")}, cmdPath);
1575 {id,
AppID(
"addrCmdResp"),
AppID(
"cycles")}, cycPath);
1576 if (respIt == ports.end() || !cmdBundle || !cycBundle)
1581 if (!cmd || !resp || !cyc)
1588 u.isWrite = doWrite;
1589 u.region = hostmemSvc->allocate(regionBytes, {.writeable =
true});
1591 uint64_t *ptr =
static_cast<uint64_t *
>(u.region->getPtr());
1592 size_t words = u.region->getSize() / 8;
1593 for (
size_t i = 0; i < words; ++i)
1595 (p[0] ==
'w' ? (0xA5A500000000ull + i) : (0xCAFEBABE0000ull + i));
1600 u.bytes = uint64_t(xferCount) * (width / 8);
1601 units.emplace_back(std::move(u));
1605 addUnits(readPrefixes,
true,
false);
1607 addUnits(writePrefixes,
false,
true);
1608 if (units.empty()) {
1609 std::cout <<
"aggbandwidth: no matching units present for width " << width
1614 auto wallStart = std::chrono::high_resolution_clock::now();
1616 for (
auto &u : units) {
1617 uint64_t devPtr =
reinterpret_cast<uint64_t
>(u.region->getDevicePtr());
1618 u.cmd->write(0x08, devPtr);
1619 u.cmd->write(0x10, xferCount);
1620 u.cmd->write(0x18, 1);
1621 u.start = std::chrono::high_resolution_clock::now();
1626 const uint64_t timeoutLoops = 200000;
1629 bool allDone =
true;
1630 for (
auto &u : units) {
1633 if (u.resp->readInt() == xferCount) {
1634 auto end = std::chrono::high_resolution_clock::now();
1636 std::chrono::duration_cast<std::chrono::microseconds>(end - u.start)
1638 u.cycleCount = u.cycles->readInt();
1646 if (++loops >= timeoutLoops)
1647 throw std::runtime_error(
"aggbandwidth: timeout");
1648 std::this_thread::sleep_for(std::chrono::microseconds(50));
1650 auto wallUs = std::chrono::duration_cast<std::chrono::microseconds>(
1651 std::chrono::high_resolution_clock::now() - wallStart)
1654 uint64_t totalBytes = 0;
1655 uint64_t totalReadBytes = 0;
1656 uint64_t totalWriteBytes = 0;
1657 for (
auto &u : units) {
1658 totalBytes += u.bytes;
1660 totalReadBytes += u.bytes;
1662 totalWriteBytes += u.bytes;
1663 double unitBps = (double)u.bytes * 1e6 / (
double)u.duration_us;
1664 std::cout <<
"[agg-unit] " << u.prefix <<
"[" << width <<
"] "
1665 << (u.isRead ?
"READ" : (u.isWrite ?
"WRITE" :
"UNK"))
1666 <<
" bytes=" <<
humanBytes(u.bytes) <<
" (" << u.bytes <<
" B)"
1667 <<
" time=" <<
humanTimeUS(u.duration_us) <<
" (" << u.duration_us
1668 <<
" us) cycles=" << u.cycleCount
1674 totalReadBytes ? (double)totalReadBytes * 1e6 / (
double)wallUs : 0.0;
1675 double aggWriteBps =
1676 totalWriteBytes ? (double)totalWriteBytes * 1e6 / (
double)wallUs : 0.0;
1677 double aggCombinedBps =
1678 totalBytes ? (double)totalBytes * 1e6 / (
double)wallUs : 0.0;
1680 std::cout <<
"[agg-total] units=" << units.size()
1681 <<
" read_bytes=" <<
humanBytes(totalReadBytes) <<
" ("
1682 << totalReadBytes <<
" B)"
1684 <<
" write_bytes=" <<
humanBytes(totalWriteBytes) <<
" ("
1685 << totalWriteBytes <<
" B)"
1687 <<
" combined_bytes=" <<
humanBytes(totalBytes) <<
" ("
1688 << totalBytes <<
" B)"
1690 <<
" wall_time=" <<
humanTimeUS(wallUs) <<
" (" << wallUs <<
" us)"
1692 logger.
info(
"esitester",
"Aggregate hostmem bandwidth test complete");
1698#pragma pack(push, 1)
1706 "StreamingAddArg must be 9 bytes packed");
1711#pragma pack(push, 1)
1718 "StreamingAddResult must be 5 bytes packed");
1724 uint32_t addAmt, uint32_t numItems) {
1725 Logger &logger = conn->getLogger();
1726 logger.
info(
"esitester",
"Starting streaming add test with add_amt=" +
1727 std::to_string(addAmt) +
1728 ", num_items=" + std::to_string(numItems));
1731 std::mt19937 rng(0xDEADBEEF);
1732 std::uniform_int_distribution<uint32_t> dist(0, 1000000);
1733 std::vector<uint32_t> inputData;
1734 inputData.reserve(numItems);
1735 for (uint32_t i = 0; i < numItems; ++i)
1736 inputData.push_back(dist(rng));
1739 auto streamingAdderChild =
1741 if (streamingAdderChild == accel->
getChildren().end())
1742 throw std::runtime_error(
1743 "Streaming add test: no 'streaming_adder' child found");
1745 auto &ports = streamingAdderChild->second->getPorts();
1746 auto addIter = ports.find(
AppID(
"streaming_add"));
1747 if (addIter == ports.end())
1748 throw std::runtime_error(
1749 "Streaming add test: no 'streaming_add' port found");
1761 for (
size_t i = 0; i < inputData.size(); ++i) {
1764 arg.
input = inputData[i];
1765 arg.
last = (i == inputData.size() - 1) ? 1 : 0;
1767 MessageData(
reinterpret_cast<const uint8_t *
>(&arg),
sizeof(arg)));
1768 logger.
debug(
"esitester",
"Sent {add_amt=" + std::to_string(arg.
addAmt) +
1769 ", input=" + std::to_string(arg.
input) +
1770 ", last=" + (arg.
last ?
"true" :
"false") +
1775 std::vector<uint32_t> results;
1776 bool lastSeen =
false;
1779 resultPort.
read(resMsg);
1781 throw std::runtime_error(
1782 "Streaming add test: unexpected result message size");
1786 lastSeen = res->
last != 0;
1787 results.push_back(res->data);
1788 logger.
debug(
"esitester",
"Received result=" + std::to_string(res->data) +
1789 " (last=" + (lastSeen ?
"true" :
"false") +
1794 if (results.size() != inputData.size())
1795 throw std::runtime_error(
1796 "Streaming add test: result size mismatch. Expected " +
1797 std::to_string(inputData.size()) +
", got " +
1798 std::to_string(results.size()));
1801 std::cout <<
"Streaming add test results:" << std::endl;
1802 for (
size_t i = 0; i < inputData.size(); ++i) {
1803 uint32_t expected = inputData[i] + addAmt;
1804 std::cout <<
" input[" << i <<
"]=" << inputData[i] <<
" + " << addAmt
1805 <<
" = " << results[i] <<
" (expected " << expected <<
")";
1806 if (results[i] != expected) {
1807 std::cout <<
" MISMATCH!";
1810 std::cout << std::endl;
1817 throw std::runtime_error(
"Streaming add test failed: result mismatch");
1819 logger.
info(
"esitester",
"Streaming add test passed");
1820 std::cout <<
"Streaming add test passed" << std::endl;
1839#pragma pack(push, 1)
1847 uint32_t *
inputData() {
return reinterpret_cast<uint32_t *
>(
this + 1); }
1849 return reinterpret_cast<const uint32_t *
>(
this + 1);
1868#pragma pack(push, 1)
1874 uint32_t *
data() {
return reinterpret_cast<uint32_t *
>(
this + 1); }
1876 return reinterpret_cast<const uint32_t *
>(
this + 1);
1890 uint32_t numItems) {
1891 Logger &logger = conn->getLogger();
1892 logger.
info(
"esitester",
1893 "Starting streaming add test (translated) with add_amt=" +
1894 std::to_string(addAmt) +
1895 ", num_items=" + std::to_string(numItems));
1898 std::mt19937 rng(0xDEADBEEF);
1899 std::uniform_int_distribution<uint32_t> dist(0, 1000000);
1900 std::vector<uint32_t> inputData;
1901 inputData.reserve(numItems);
1902 for (uint32_t i = 0; i < numItems; ++i)
1903 inputData.push_back(dist(rng));
1906 auto streamingAdderChild =
1908 if (streamingAdderChild == accel->
getChildren().end())
1909 throw std::runtime_error(
1910 "Streaming add test: no 'streaming_adder' child found");
1912 auto &ports = streamingAdderChild->second->getPorts();
1913 auto addIter = ports.find(
AppID(
"streaming_add"));
1914 if (addIter == ports.end())
1915 throw std::runtime_error(
1916 "Streaming add test: no 'streaming_add' port found");
1932 size_t allocSize = ((argSize + alignment - 1) / alignment) * alignment;
1935 throw std::bad_alloc();
1937 std::unique_ptr<void,
decltype(argDeleter)> argBuffer(argRaw, argDeleter);
1940 arg->addAmt = addAmt;
1941 for (uint32_t i = 0; i < numItems; ++i)
1942 arg->inputData()[i] = inputData[i];
1944 logger.
debug(
"esitester",
1945 "Sending translated argument: " + std::to_string(argSize) +
1946 " bytes, list_length=" + std::to_string(arg->inputLength) +
1947 ", add_amt=" + std::to_string(arg->addAmt));
1950 argPort.
write(
MessageData(
reinterpret_cast<const uint8_t *
>(arg), argSize));
1955 resultPort.
read(resMsg);
1957 logger.
debug(
"esitester",
"Received translated result: " +
1958 std::to_string(resMsg.
getSize()) +
" bytes");
1961 throw std::runtime_error(
1962 "Streaming add test (translated): result too small");
1964 const auto *result =
1969 throw std::runtime_error(
1970 "Streaming add test (translated): result data truncated");
1973 if (result->dataLength != inputData.size())
1974 throw std::runtime_error(
1975 "Streaming add test (translated): result size mismatch. Expected " +
1976 std::to_string(inputData.size()) +
", got " +
1977 std::to_string(result->dataLength));
1980 std::cout <<
"Streaming add test results:" << std::endl;
1981 for (
size_t i = 0; i < inputData.size(); ++i) {
1982 uint32_t expected = inputData[i] + addAmt;
1983 std::cout <<
" input[" << i <<
"]=" << inputData[i] <<
" + " << addAmt
1984 <<
" = " << result->
data()[i] <<
" (expected " << expected <<
")";
1985 if (result->data()[i] != expected) {
1986 std::cout <<
" MISMATCH!";
1989 std::cout << std::endl;
1996 throw std::runtime_error(
1997 "Streaming add test (translated) failed: result mismatch");
1999 logger.
info(
"esitester",
"Streaming add test passed (translated)");
2000 std::cout <<
"Streaming add test passed" << std::endl;
2011#pragma pack(push, 1)
2017static_assert(
sizeof(
Coord) == 8,
"Coord must be 8 bytes packed");
2028#pragma pack(push, 1)
2038 return reinterpret_cast<const Coord *
>(
this + 1);
2055#pragma pack(push, 1)
2063 return reinterpret_cast<const Coord *
>(
this + 1);
2076 uint32_t xTrans, uint32_t yTrans,
2077 uint32_t numCoords) {
2078 Logger &logger = conn->getLogger();
2079 logger.
info(
"esitester",
"Starting coord translate test with x_trans=" +
2080 std::to_string(xTrans) +
2081 ", y_trans=" + std::to_string(yTrans) +
2082 ", num_coords=" + std::to_string(numCoords));
2087 std::mt19937 rng(0xDEADBEEF);
2088 std::uniform_int_distribution<uint32_t> dist(0, 1000000);
2089 std::vector<Coord> inputCoords;
2090 inputCoords.reserve(numCoords);
2091 for (uint32_t i = 0; i < numCoords; ++i) {
2095 inputCoords.push_back(c);
2099 auto coordTranslatorChild =
2101 if (coordTranslatorChild == accel->
getChildren().end())
2102 throw std::runtime_error(
2103 "Coord translate test: no 'coord_translator' child found");
2105 auto &ports = coordTranslatorChild->second->getPorts();
2106 auto translateIter = ports.find(
AppID(
"translate_coords"));
2107 if (translateIter == ports.end())
2108 throw std::runtime_error(
2109 "Coord translate test: no 'translate_coords' port found");
2115 throw std::runtime_error(
2116 "Coord translate test: 'translate_coords' port not a "
2117 "FuncService::Function");
2118 funcPort->connect();
2125 size_t allocSize = ((argSize + alignment - 1) / alignment) * alignment;
2128 throw std::bad_alloc();
2130 std::unique_ptr<void,
decltype(argDeleter)> argBuffer(argRaw, argDeleter);
2133 arg->xTranslation = xTrans;
2134 arg->yTranslation = yTrans;
2135 for (uint32_t i = 0; i < numCoords; ++i)
2136 arg->coords()[i] = inputCoords[i];
2140 "Sending coord translate argument: " + std::to_string(argSize) +
2141 " bytes, coords_length=" + std::to_string(arg->coordsLength) +
2142 ", x_trans=" + std::to_string(arg->xTranslation) +
2143 ", y_trans=" + std::to_string(arg->yTranslation));
2148 ->call(
MessageData(
reinterpret_cast<const uint8_t *
>(arg), argSize))
2152 logger.
debug(
"esitester",
"Received coord translate result: " +
2153 std::to_string(resMsg.
getSize()) +
" bytes");
2156 throw std::runtime_error(
"Coord translate test: result too small");
2158 const auto *result =
2162 throw std::runtime_error(
"Coord translate test: result data truncated");
2165 if (result->coordsLength != inputCoords.size())
2166 throw std::runtime_error(
2167 "Coord translate test: result size mismatch. Expected " +
2168 std::to_string(inputCoords.size()) +
", got " +
2169 std::to_string(result->coordsLength));
2172 std::cout <<
"Coord translate test results:" << std::endl;
2173 for (
size_t i = 0; i < inputCoords.size(); ++i) {
2174 uint32_t expectedX = inputCoords[i].x + xTrans;
2175 uint32_t expectedY = inputCoords[i].y + yTrans;
2176 std::cout <<
" coord[" << i <<
"]=(" << inputCoords[i].x <<
","
2177 << inputCoords[i].y <<
") + (" << xTrans <<
"," << yTrans
2178 <<
") = (" << result->
coords()[i].
x <<
","
2179 << result->coords()[i].y <<
")";
2180 if (result->coords()[i].x != expectedX ||
2181 result->coords()[i].y != expectedY) {
2182 std::cout <<
" MISMATCH! (expected (" << expectedX <<
"," << expectedY
2186 std::cout << std::endl;
2190 throw std::runtime_error(
"Coord translate test failed: result mismatch");
2192 logger.
info(
"esitester",
"Coord translate test passed");
2193 std::cout <<
"Coord translate test passed" << std::endl;
2200#pragma pack(push, 1)
2243 coords.emplace_back(x, y);
2251 return {
reinterpret_cast<const uint8_t *
>(&
header),
sizeof(
header)};
2253 return {
reinterpret_cast<const uint8_t *
>(
coords.data()),
2256 return {
reinterpret_cast<const uint8_t *
>(&
footer),
sizeof(
footer)};
2258 throw std::out_of_range(
"SerialCoordInput: invalid segment index");
2280 coords.emplace_back(x, y);
2287 return {
reinterpret_cast<const uint8_t *
>(&
header),
sizeof(
header)};
2289 return {
reinterpret_cast<const uint8_t *
>(
coords.data()),
2292 throw std::out_of_range(
"SerialCoordBurst: invalid segment index");
2296#pragma pack(push, 1)
2334 detail::getMessageDataRef<SerialCoordOutputBatch>(*msg, scratch);
2335 const uint8_t *bytes = flat.
getBytes();
2340 while (offset < size) {
2342 size_t chunkSize = std::min(needed, size - offset);
2344 bytes + offset + chunkSize);
2345 offset += chunkSize;
2357 if (batchCount == 0) {
2359 auto batch = std::make_unique<SerialCoordOutputBatch>();
2362 decoded.push_back(std::move(batch));
2386 uint32_t yTrans, uint32_t numCoords,
2387 size_t batchSizeLimit) {
2388 Logger &logger = conn->getLogger();
2389 logger.
info(
"esitester",
"Starting Serial coord translate test");
2392 std::mt19937 rng(0xDEADBEEF);
2393 std::uniform_int_distribution<uint32_t> dist(0, 1000000);
2394 std::vector<Coord> inputCoords;
2395 inputCoords.reserve(numCoords);
2396 for (uint32_t i = 0; i < numCoords; ++i)
2397 inputCoords.push_back({dist(rng), dist(rng)});
2401 throw std::runtime_error(
"Serial coord translate test: no "
2402 "'coord_translator_serial' child found");
2404 auto &ports = child->second->getPorts();
2405 auto portIter = ports.find(
AppID(
"translate_coords_serial"));
2406 if (portIter == ports.end())
2407 throw std::runtime_error(
"Serial coord translate test: no "
2408 "'translate_coords_serial' port found");
2411 portIter->second.getRawWrite(
"arg"));
2426 while (sent < numCoords) {
2427 size_t batchSize = std::min(batchSizeLimit, numCoords - sent);
2432 auto batch = std::make_unique<SerialCoordBurst>();
2433 batch->xTranslation(sent == 0 ? xTrans : 0);
2434 batch->yTranslation(sent == 0 ? yTrans : 0);
2436 for (
size_t i = 0; i < batchSize; ++i) {
2437 batch->appendCoord(inputCoords[sent + i].x, inputCoords[sent + i].y);
2439 argPort.
write(batch);
2443 auto footerBurst = std::make_unique<SerialCoordBurst>();
2444 argPort.
write(footerBurst);
2453 std::vector<uint8_t> rxBuf;
2455 while (rxBuf.size() < frameSize) {
2457 resultRaw.
read(data);
2458 rxBuf.insert(rxBuf.end(), data.getBytes(),
2459 data.getBytes() + data.getSize());
2461 std::memcpy(&out, rxBuf.data(), frameSize);
2462 rxBuf.erase(rxBuf.begin(), rxBuf.begin() + frameSize);
2465 std::vector<Coord> results;
2466 results.reserve(numCoords);
2470 uint16_t batchCount = hdr.header.coordsCount;
2471 if (batchCount == 0)
2473 for (uint16_t i = 0; i < batchCount; ++i) {
2476 results.push_back({frame.data.y, frame.data.x});
2482 std::cout <<
"Serial coord translate test results:" << std::endl;
2483 if (results.size() != inputCoords.size()) {
2484 std::cout <<
"Result size mismatch. Expected " << inputCoords.size()
2485 <<
", got " << results.size() << std::endl;
2488 for (
size_t i = 0; i < std::min(inputCoords.size(), results.size()); ++i) {
2489 uint32_t expX = inputCoords[i].x + xTrans;
2490 uint32_t expY = inputCoords[i].y + yTrans;
2491 std::cout <<
" coord[" << i <<
"]=(" << inputCoords[i].x <<
","
2492 << inputCoords[i].y <<
") + (" << xTrans <<
"," << yTrans
2493 <<
") = (" << results[i].x <<
"," << results[i].y
2494 <<
") (expected (" << expX <<
"," << expY <<
"))";
2495 if (results[i].x != expX || results[i].y != expY) {
2496 std::cout <<
" MISMATCH!";
2499 std::cout << std::endl;
2506 throw std::runtime_error(
"Serial coord translate test failed");
2508 logger.
info(
"esitester",
"Serial coord translate test passed");
2509 std::cout <<
"Serial coord translate test passed" << std::endl;
2529 uint32_t yTrans, uint32_t numCoords) {
2530 Logger &logger = conn->getLogger();
2531 logger.
info(
"esitester",
"Starting Auto serial coord translate test");
2534 std::mt19937 rng(0xDEADBEEF);
2535 std::uniform_int_distribution<uint32_t> dist(0, 1000000);
2536 std::vector<Coord> inputCoords;
2537 inputCoords.reserve(numCoords);
2538 for (uint32_t i = 0; i < numCoords; ++i)
2539 inputCoords.push_back({dist(rng), dist(rng)});
2541 auto child = accel->
getChildren().find(
AppID(
"coord_translator_auto_serial"));
2543 throw std::runtime_error(
"Auto serial coord translate test: no "
2544 "'coord_translator_auto_serial' child found");
2546 auto &ports = child->second->getPorts();
2547 auto portIter = ports.find(
AppID(
"translate_coords_auto_serial"));
2548 if (portIter == ports.end())
2549 throw std::runtime_error(
"Auto serial coord translate test: no "
2550 "'translate_coords_auto_serial' port found");
2555 portIter->second.getRawWrite(
"arg"));
2571 auto batch = std::make_unique<SerialCoordInput>();
2572 batch->xTranslation(xTrans);
2573 batch->yTranslation(yTrans);
2574 for (uint32_t i = 0; i < numCoords; ++i)
2575 batch->appendCoord(inputCoords[i].x, inputCoords[i].y);
2576 argPort.
write(batch);
2582 std::vector<uint8_t> rxBuf;
2584 while (rxBuf.size() < frameSize) {
2586 resultRaw.
read(data);
2587 rxBuf.insert(rxBuf.end(), data.getBytes(),
2588 data.getBytes() + data.getSize());
2590 std::memcpy(&out, rxBuf.data(), frameSize);
2591 rxBuf.erase(rxBuf.begin(), rxBuf.begin() + frameSize);
2597 std::vector<Coord> results;
2598 results.reserve(numCoords);
2602 uint16_t burstCount = hdr.header.coordsCount;
2603 if (burstCount == 0)
2605 if (results.size() + burstCount > numCoords)
2606 throw std::runtime_error(
"Auto serial coord translate test: bursts "
2607 "overflow expected total " +
2608 std::to_string(numCoords));
2609 for (uint32_t i = 0; i < burstCount; ++i) {
2612 results.push_back({frame.data.y, frame.data.x});
2615 if (results.size() != numCoords)
2616 throw std::runtime_error(
"Auto serial coord translate test: got " +
2617 std::to_string(results.size()) +
2618 " coords across all bursts " +
"(expected " +
2619 std::to_string(numCoords) +
")");
2625 std::cout <<
"Auto serial coord translate test results:" << std::endl;
2626 for (
size_t i = 0; i < inputCoords.size(); ++i) {
2627 uint32_t expX = inputCoords[i].x + xTrans;
2628 uint32_t expY = inputCoords[i].y + yTrans;
2629 std::cout <<
" coord[" << i <<
"]=(" << inputCoords[i].x <<
","
2630 << inputCoords[i].y <<
") + (" << xTrans <<
"," << yTrans
2631 <<
") = (" << results[i].x <<
"," << results[i].y
2632 <<
") (expected (" << expX <<
"," << expY <<
"))";
2633 if (results[i].x != expX || results[i].y != expY) {
2634 std::cout <<
" MISMATCH!";
2637 std::cout << std::endl;
2641 throw std::runtime_error(
"Auto serial coord translate test failed");
2643 logger.
info(
"esitester",
"Auto serial coord translate test passed");
2644 std::cout <<
"Auto serial coord translate test passed" << std::endl;
2648 uint32_t iterations) {
2649 Logger &logger = conn->getLogger();
2653 throw std::runtime_error(
"Channel test: no 'channel_test' child");
2654 auto &ports = channelChild->second->getPorts();
2657 auto cmdIter = ports.find(
AppID(
"cmd"));
2658 if (cmdIter == ports.end())
2659 throw std::runtime_error(
"Channel test: no 'cmd' port");
2662 throw std::runtime_error(
"Channel test: 'cmd' is not MMIO");
2665 auto producerIter = ports.find(
AppID(
"producer"));
2666 if (producerIter == ports.end())
2667 throw std::runtime_error(
"Channel test: no 'producer' port");
2668 auto *producerPort =
2671 throw std::runtime_error(
2672 "Channel test: 'producer' is not a ChannelService::ToHost");
2673 producerPort->connect();
2677 cmdMMIO->write(0x0, iterations);
2679 for (uint32_t i = 0; i < iterations; ++i) {
2680 MessageData recvData = producerPort->read().get();
2681 uint32_t got = *recvData.
as<uint32_t>();
2682 std::cout <<
"[channel] producer i=" << i <<
" got=" << got << std::endl;
2684 throw std::runtime_error(
"Channel producer: expected " +
2685 std::to_string(i) +
", got " +
2686 std::to_string(got));
2688 logger.
info(
"esitester",
"Channel test: producer passed (" +
2689 std::to_string(iterations) +
2690 " incrementing values)");
2693 auto loopbackInIter = ports.find(
AppID(
"loopback_in"));
2694 if (loopbackInIter == ports.end())
2695 throw std::runtime_error(
"Channel test: no 'loopback_in' port");
2696 auto *fromHostPort =
2699 throw std::runtime_error(
2700 "Channel test: 'loopback_in' is not a ChannelService::FromHost");
2701 fromHostPort->connect();
2703 auto loopbackOutIter = ports.find(
AppID(
"loopback_out"));
2704 if (loopbackOutIter == ports.end())
2705 throw std::runtime_error(
"Channel test: no 'loopback_out' port");
2706 auto *loopbackOutPort =
2708 if (!loopbackOutPort)
2709 throw std::runtime_error(
2710 "Channel test: 'loopback_out' is not a ChannelService::ToHost");
2711 loopbackOutPort->connect();
2713 std::mt19937_64 rng(0xDEADBEEF);
2714 std::uniform_int_distribution<uint32_t> dist(0, UINT32_MAX);
2716 for (uint32_t i = 0; i < iterations; ++i) {
2717 uint32_t sendVal = dist(rng);
2719 MessageData recvData = loopbackOutPort->read().get();
2720 uint32_t recvVal = *recvData.
as<uint32_t>();
2721 std::cout <<
"[channel] loopback i=" << i <<
" sent=0x"
2724 if (recvVal != sendVal)
2725 throw std::runtime_error(
"Channel loopback mismatch at i=" +
2729 logger.
info(
"esitester",
"Channel test: loopback passed (" +
2730 std::to_string(iterations) +
" iterations)");
2731 std::cout <<
"Channel test passed" << std::endl;
static void print(TypedAttr val, llvm::raw_ostream &os)
TypeDeserializer(OutputCallback output)
Base::OutputCallback OutputCallback
std::vector< uint8_t > partialFrameBytes
Base::DecodedOutputs DecodedOutputs
DecodedOutputs decode(std::unique_ptr< SegmentedMessageData > &msg) override
Decode one raw message into zero or more typed outputs.
std::vector< Coord > accumulated
Abstract class representing a connection to an accelerator.
Top level accelerator class.
Services provide connections to 'bundles' – collections of named, unidirectional communication channe...
T * getAs() const
Cast this Bundle port to a subclass which is actually useful.
ReadChannelPort & getRawRead(const std::string &name) const
WriteChannelPort & getRawWrite(const std::string &name) const
Get access to the raw byte streams of a channel.
Common options and code for ESI runtime tools.
Context & getContext()
Get the context.
AcceleratorConnection * connect()
Connect to the accelerator using the specified backend and connection.
int esiParse(int argc, const char **argv)
Run the parser.
AcceleratorConnections, Accelerators, and Manifests must all share a context.
const std::map< AppID, Instance * > & getChildren() const
Access the module's children by ID.
virtual void error(const std::string &subsystem, const std::string &msg, const std::map< std::string, std::any > *details=nullptr)
Report an error.
virtual void info(const std::string &subsystem, const std::string &msg, const std::map< std::string, std::any > *details=nullptr)
Report an informational message.
void debug(const std::string &subsystem, const std::string &msg, const std::map< std::string, std::any > *details=nullptr)
Report a debug message.
Class to parse a manifest.
Accelerator * buildAccelerator(AcceleratorConnection &acc) const
A concrete flat message backed by a single vector of bytes.
const uint8_t * getBytes() const
const T * as() const
Cast to a type.
size_t getSize() const
Get the size of the data in bytes.
static MessageData from(T &t)
Cast from a type to its raw bytes.
Helper base class for stateful deserializers which may emit zero, one, or many typed outputs for each...
detail::TypedReadOwnedCallback< SerialCoordOutputBatch > OutputCallback
std::vector< std::unique_ptr< SerialCoordOutputBatch > > DecodedOutputs
A ChannelPort which reads data from the accelerator.
virtual void connect(ReadCallback callback, const ConnectOptions &options={})
virtual void disconnect() override
Disconnect the channel.
virtual void read(MessageData &outData)
Specify a buffer to read into.
Abstract multi-segment message.
void connect(const ChannelPort::ConnectOptions &opts={std::nullopt, false})
void write(const T &data)
A ChannelPort which sends data to the accelerator.
virtual void disconnect() override
void write(const MessageData &data)
A very basic blocking write API.
bool tryWrite(const MessageData &data)
A basic non-blocking write API.
virtual void connect(const ConnectOptions &options={}) override
Set up a connection to the accelerator.
A function call which gets attached to a service port.
A port which writes data to the accelerator (from_host).
A port which reads data from the accelerator (to_host).
A function call which gets attached to a service port.
virtual void start()
In cases where necessary, enable host memory services.
A "slice" of some parent MMIO space.
virtual uint64_t read(uint32_t addr) const
Read a 64-bit value from this region, not the global address space.
Information about the Accelerator system.
A telemetry port which gets attached to a service port.
void connect()
Connect to a particular telemetry port. Offset should be non-nullopt.
static void * alignedAllocCompat(std::size_t alignment, std::size_t size)
static void bandwidthReadTest(AcceleratorConnection *conn, Accelerator *acc, size_t width, size_t xferCount, bool checkData)
static void hostmemWriteTest(Accelerator *acc, esi::services::HostMem::HostMemRegion ®ion, uint32_t width)
Test the hostmem write functionality.
static void aggregateHostmemBandwidthTest(AcceleratorConnection *, Accelerator *, uint32_t width, uint32_t xferCount, bool read, bool write)
static void dmaTest(AcceleratorConnection *, Accelerator *, const std::vector< uint32_t > &widths, bool read, bool write)
static void hostmemBandwidthTest(AcceleratorConnection *conn, Accelerator *acc, uint32_t xferCount, const std::vector< uint32_t > &widths, bool read, bool write)
static void callbackTest(AcceleratorConnection *, Accelerator *, uint32_t iterations)
static uint64_t enginePayloadFold(uint32_t index, size_t bitWidth)
static void serialCoordTranslateTest(AcceleratorConnection *, Accelerator *, uint32_t xTrans, uint32_t yTrans, uint32_t numCoords, size_t batchSizeLimit)
static void bandwidthTest(AcceleratorConnection *, Accelerator *, const std::vector< uint32_t > &widths, uint32_t xferCount, bool read, bool write, bool checkData)
static std::vector< uint8_t > enginePatternBytes(uint32_t index, size_t bitWidth)
static void hostmemReadBandwidthTest(AcceleratorConnection *conn, Accelerator *acc, esi::services::HostMem::HostMemRegion ®ion, uint32_t width, uint32_t xferCount)
static void channelTest(AcceleratorConnection *, Accelerator *, uint32_t iterations)
static std::string formatBandwidth(double bytesPerSec)
static void autoSerialCoordTranslateTest(AcceleratorConnection *, Accelerator *, uint32_t xTrans, uint32_t yTrans, uint32_t numCoords)
static void hostmemWriteBandwidthTest(AcceleratorConnection *conn, Accelerator *acc, esi::services::HostMem::HostMemRegion ®ion, uint32_t width, uint32_t xferCount)
static void alignedFreeCompat(void *ptr)
static void dmaWriteTest(AcceleratorConnection *conn, Accelerator *acc, size_t width)
static uint8_t esitesterHostmemByte(uint32_t index, size_t byte, uint32_t width)
static void bandwidthWriteTest(AcceleratorConnection *conn, Accelerator *acc, size_t width, size_t xferCount, bool checkData)
static size_t hostmemWireBytes(uint32_t width)
static std::string humanBytes(uint64_t bytes)
static void checkBurstCommandRegisters(services::MMIO::MMIORegion &mmio, uint64_t address, uint64_t flits)
static uint8_t esitesterDataByte(uint32_t index, size_t byte)
static uint64_t esitesterElemFold(uint32_t i, uint32_t width)
static void streamingAddTest(AcceleratorConnection *, Accelerator *, uint32_t addAmt, uint32_t numItems)
Test the StreamingAdder module.
static void loopbackAddTest(AcceleratorConnection *, Accelerator *, uint32_t iterations, bool pipeline)
static void dmaReadTest(AcceleratorConnection *conn, Accelerator *acc, size_t width)
static void streamingAddTranslatedTest(AcceleratorConnection *, Accelerator *, uint32_t addAmt, uint32_t numItems)
static void hostmemTest(AcceleratorConnection *, Accelerator *, const std::vector< uint32_t > &widths, bool write, bool read)
static std::string humanTimeUS(uint64_t us)
static void coordTranslateTest(AcceleratorConnection *, Accelerator *, uint32_t xTrans, uint32_t yTrans, uint32_t numCoords)
static void resetTest(AcceleratorConnection *, Accelerator *)
constexpr std::array< uint32_t, 8 > defaultWidths
static uint8_t enginePatternByte(uint32_t index, size_t byte, size_t bitWidth)
static size_t engineWireBytes(size_t bitWidth)
static std::string defaultWidthsStr()
static constexpr uint64_t kEsitesterSeqSeed
static void hostmemReadTest(Accelerator *acc, esi::services::HostMem::HostMemRegion ®ion, uint32_t width)
std::string toString(const std::any &a)
'Stringify' a std::any. This is used to log std::any values by some loggers.
std::string toHex(void *val)
Translated argument struct for CoordTranslator.
std::span< const Coord > coordsSpan() const
const Coord * coords() const
static size_t allocSize(size_t numCoords)
Coord * coords()
Get pointer to trailing coords array.
std::span< Coord > coordsSpan()
Get span view of coords (requires coordsLength to be set first).
Translated result struct for CoordTranslator.
static size_t allocSize(size_t numCoords)
std::span< Coord > coordsSpan()
Get span view of coords (requires coordsLength to be set first).
const Coord * coords() const
Coord * coords()
Get pointer to trailing coords array.
std::span< const Coord > coordsSpan() const
Test the CoordTranslator module using message translation.
void yTranslation(uint32_t yTrans)
void appendCoord(uint32_t x, uint32_t y)
std::vector< SerialCoordData > coords
void xTranslation(uint32_t xTrans)
Segment segment(size_t idx) const override
Get a segment by index.
size_t numSegments() const override
Number of segments in the message.
SerialCoordData(uint32_t x, uint32_t y)
Deserialized result batch from the serial coord translator.
std::vector< Coord > coords
Packed struct representing a parallel window argument for StreamingAdder.
Packed struct representing a parallel window result for StreamingAdder.
Test the StreamingAdder module using message translation.
uint32_t * inputData()
Get pointer to trailing input data array.
static size_t allocSize(size_t numItems)
std::span< uint32_t > inputDataSpan()
Get span view of input data (requires inputLength to be set first).
std::span< const uint32_t > inputDataSpan() const
const uint32_t * inputData() const
Translated result struct for StreamingAdder.
uint32_t * data()
Get pointer to trailing result data array.
std::span< uint32_t > dataSpan()
Get span view of result data (requires dataLength to be set first).
static size_t allocSize(size_t numItems)
std::span< const uint32_t > dataSpan() const
const uint32_t * data() const
A contiguous, non-owning view of bytes within a SegmentedMessageData.
RAII memory region for host memory.
virtual void * getDevicePtr() const
Sometimes the pointer the device sees is different from the pointer the host sees.
virtual void * getPtr() const =0
Get a pointer to the host memory.
virtual void flush()
Flush the memory region to ensure that the device sees the latest contents.
virtual std::size_t getSize() const =0
SerialCoordOutputData data
SerialCoordOutputHeader header