This commit is contained in:
@@ -92,15 +92,6 @@ static unsigned getBoundaryIndex(SmallVectorImpl<BoundaryWork>& boundaries,
|
||||
return index;
|
||||
}
|
||||
|
||||
static unsigned getResultBoundary(DeferredExchangePlan& exchange,
|
||||
const ScheduledCommunicationPlan& schedule) {
|
||||
std::optional<unsigned> step;
|
||||
for (const ScheduledTransferSlice& slice : schedule.slices)
|
||||
if (slice.family->requirement->exchange == &exchange)
|
||||
step = std::max(step.value_or(0), slice.targetInsertionStep);
|
||||
return step.value_or(exchange.consumerStep);
|
||||
}
|
||||
|
||||
static size_t hashSemanticKey(const SemanticKey& key) {
|
||||
if (key.kind == SemanticKind::Send)
|
||||
return llvm::hash_combine(key.kind,
|
||||
@@ -191,9 +182,11 @@ static LogicalResult appendReplayToken(const PendingToken& token,
|
||||
if (auto eventId = std::get_if<unsigned>(&token.value)) {
|
||||
const BoundaryEvent& event = events[*eventId];
|
||||
if (event.kind == BoundaryEventKind::Send) {
|
||||
action.slices.push_back(event.slice);
|
||||
LaneSet active = event.activeLanes.intersect(lanes);
|
||||
if (!active.empty())
|
||||
action.slices.push_back(event.slice);
|
||||
action.instructionLanes =
|
||||
action.instructionLanes.unite(event.activeLanes);
|
||||
action.instructionLanes.unite(active);
|
||||
}
|
||||
else {
|
||||
llvm::append_range(action.slices, intersectReceiveSlice(event.slice, lanes));
|
||||
@@ -366,7 +359,8 @@ static BoundaryInstructionList materializeInstructions(ArrayRef<CanonicalAction>
|
||||
}
|
||||
while (index < actions.size() && actions[index].key.kind == SemanticKind::Send
|
||||
&& actions[index].key.emission == action.key.emission);
|
||||
instructions.push_back(std::move(run));
|
||||
if (!run.slices.empty())
|
||||
instructions.push_back(std::move(run));
|
||||
continue;
|
||||
}
|
||||
SmallVector<unsigned> assemblyEntries;
|
||||
@@ -552,8 +546,13 @@ FailureOr<DeferredBoundaryPlan> buildDeferredBoundaryPlan(DeferredTransferPlan&
|
||||
DeferredBoundaryPlan result;
|
||||
SmallVector<BoundaryWork> boundaries;
|
||||
DenseMap<BoundaryKey, unsigned> boundaryIndices;
|
||||
DenseMap<DeferredExchangePlan*, unsigned> resultBoundarySteps;
|
||||
for (const ScheduledTransferSlice& slice : schedule.slices) {
|
||||
ExternalTransferFamily& family = *slice.family;
|
||||
auto [resultStep, inserted] =
|
||||
resultBoundarySteps.try_emplace(family.requirement->exchange, slice.targetInsertionStep);
|
||||
if (!inserted)
|
||||
resultStep->second = std::max(resultStep->second, slice.targetInsertionStep);
|
||||
unsigned sourceIndex =
|
||||
getBoundaryIndex(boundaries, boundaryIndices,
|
||||
{family.sourceScheduled, slice.sourceInsertionStep});
|
||||
@@ -576,7 +575,8 @@ FailureOr<DeferredBoundaryPlan> buildDeferredBoundaryPlan(DeferredTransferPlan&
|
||||
DenseMap<BoundaryKey, SmallVector<LocalAvailabilityFamily*>> locals;
|
||||
DenseMap<BoundaryKey, SmallVector<DeferredExchangePlan*>> exchanges;
|
||||
for (const std::unique_ptr<DeferredExchangePlan>& exchange : transfers.exchanges) {
|
||||
unsigned step = getResultBoundary(*exchange, schedule);
|
||||
auto resultStep = resultBoundarySteps.find(exchange.get());
|
||||
unsigned step = resultStep == resultBoundarySteps.end() ? exchange->consumerStep : resultStep->second;
|
||||
BoundaryKey key {exchange->target, step};
|
||||
getBoundaryIndex(boundaries, boundaryIndices, key);
|
||||
for (LocalAvailabilityFamily& local : exchange->local)
|
||||
@@ -608,15 +608,12 @@ FailureOr<DeferredBoundaryPlan> buildDeferredBoundaryPlan(DeferredTransferPlan&
|
||||
localsBySemantic[semantic].push_back(local);
|
||||
}
|
||||
SmallVector<unsigned> eventSemantics;
|
||||
DenseMap<unsigned, SmallVector<unsigned>> receivesBySemantic;
|
||||
for (auto [eventId, event] : llvm::enumerate(work.events)) {
|
||||
for (BoundaryEvent& event : work.events) {
|
||||
unsigned semantic =
|
||||
internSemantic(getEventKey(event), semantics, semanticsByHash);
|
||||
eventSemantics.push_back(semantic);
|
||||
if (event.kind == BoundaryEventKind::Receive)
|
||||
receivesBySemantic[semantic].push_back(eventId);
|
||||
}
|
||||
llvm::SmallDenseSet<unsigned, 8> emittedReceives;
|
||||
llvm::SmallDenseSet<unsigned, 8> emittedAvailabilities;
|
||||
for (auto [eventId, event] : llvm::enumerate(work.events)) {
|
||||
unsigned semantic = eventSemantics[eventId];
|
||||
if (event.kind == BoundaryEventKind::Send) {
|
||||
@@ -625,15 +622,15 @@ FailureOr<DeferredBoundaryPlan> buildDeferredBoundaryPlan(DeferredTransferPlan&
|
||||
semantic, static_cast<unsigned>(eventId)});
|
||||
continue;
|
||||
}
|
||||
if (!emittedReceives.insert(semantic).second)
|
||||
continue;
|
||||
for (unsigned receive : receivesBySemantic[semantic])
|
||||
tokens.push_back({work.events[receive].activeLanes, semantic, receive});
|
||||
for (LocalAvailabilityFamily* local : localsBySemantic[semantic]) {
|
||||
tokens.push_back({local->targetLanes, semantic, local});
|
||||
emittedLocals.insert(local);
|
||||
tokens.push_back(
|
||||
{event.activeLanes, semantic, static_cast<unsigned>(eventId)});
|
||||
if (emittedAvailabilities.insert(semantic).second) {
|
||||
for (LocalAvailabilityFamily* local : localsBySemantic[semantic]) {
|
||||
tokens.push_back({local->targetLanes, semantic, local});
|
||||
emittedLocals.insert(local);
|
||||
}
|
||||
localsBySemantic.erase(semantic);
|
||||
}
|
||||
localsBySemantic.erase(semantic);
|
||||
}
|
||||
for (LocalAvailabilityFamily* local : locals[boundary.key])
|
||||
if (!emittedLocals.contains(local)) {
|
||||
|
||||
+71
-1
@@ -198,6 +198,7 @@ static FailureOr<RealizedOperation> parseRealizedOperation(Operation *op) {
|
||||
struct CoreTransferSequences {
|
||||
DenseMap<int64_t, StaticIntSequenceChain> sends;
|
||||
DenseMap<int64_t, StaticIntSequenceChain> receives;
|
||||
DenseMap<int64_t, StaticIntSequenceChain> events;
|
||||
};
|
||||
|
||||
struct ExpectedFamily {
|
||||
@@ -221,6 +222,25 @@ static void appendByCore(DenseMap<int64_t, StaticIntSequenceChain> &result,
|
||||
});
|
||||
}
|
||||
|
||||
static void appendEventsByCore(
|
||||
DenseMap<int64_t, StaticIntSequenceChain> &result,
|
||||
const StaticIntSequence &channels, const StaticIntSequence &cores,
|
||||
size_t begin, size_t count, bool send) {
|
||||
size_t end = begin + count;
|
||||
cores.forEachEqualRun(
|
||||
[&](int64_t core, size_t runBegin, size_t runCount) {
|
||||
size_t selectedBegin = std::max(begin, runBegin);
|
||||
size_t selectedEnd = std::min(end, runBegin + runCount);
|
||||
if (selectedBegin >= selectedEnd)
|
||||
return;
|
||||
SmallVector<int64_t> events;
|
||||
events.reserve(selectedEnd - selectedBegin);
|
||||
for (size_t index = selectedBegin; index < selectedEnd; ++index)
|
||||
events.push_back(2 * channels.valueAt(index) + (send ? 0 : 1));
|
||||
result[core].append(StaticIntSequence::fromValues(events));
|
||||
});
|
||||
}
|
||||
|
||||
static LogicalResult compareSequences(
|
||||
func::FuncOp funcOp,
|
||||
const DenseMap<int64_t, StaticIntSequenceChain> &expected,
|
||||
@@ -254,6 +274,47 @@ static LogicalResult compareSequences(
|
||||
return success();
|
||||
}
|
||||
|
||||
static LogicalResult compareEventSequences(
|
||||
func::FuncOp funcOp,
|
||||
const DenseMap<int64_t, StaticIntSequenceChain> &expected,
|
||||
const DenseMap<int64_t, StaticIntSequenceChain> &actual) {
|
||||
if (expected.size() != actual.size())
|
||||
return funcOp.emitOpError(
|
||||
"realized communication stream set differs from plan");
|
||||
for (const auto &[core, sequence] : expected) {
|
||||
auto found = actual.find(core);
|
||||
if (found == actual.end())
|
||||
return funcOp.emitOpError()
|
||||
<< "realized communication stream is missing on core " << core;
|
||||
StaticIntSequenceChainCursor expectedCursor(sequence);
|
||||
StaticIntSequenceChainCursor actualCursor(found->second);
|
||||
uint64_t ordinal = 0;
|
||||
while (!expectedCursor.done() && !actualCursor.done()
|
||||
&& expectedCursor.value() == actualCursor.value()) {
|
||||
expectedCursor.advance();
|
||||
actualCursor.advance();
|
||||
++ordinal;
|
||||
}
|
||||
if (expectedCursor.done() && actualCursor.done())
|
||||
continue;
|
||||
auto describe = [](StaticIntSequenceChainCursor &cursor) {
|
||||
if (cursor.done())
|
||||
return std::pair<StringRef, int64_t>("none", -1);
|
||||
int64_t event = cursor.value();
|
||||
return std::pair<StringRef, int64_t>(
|
||||
event % 2 == 0 ? "send" : "receive", event / 2);
|
||||
};
|
||||
auto [expectedKind, expectedChannel] = describe(expectedCursor);
|
||||
auto [actualKind, actualChannel] = describe(actualCursor);
|
||||
return funcOp.emitOpError()
|
||||
<< "realized communication order differs on core " << core
|
||||
<< " at ordinal " << ordinal << ": expected " << expectedKind
|
||||
<< " channel " << expectedChannel << ", actual " << actualKind
|
||||
<< " channel " << actualChannel;
|
||||
}
|
||||
return success();
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
LogicalResult verifyPlannedCommunicationDeadlockFree(
|
||||
@@ -322,6 +383,10 @@ LogicalResult verifyRealizedCommunicationDeadlockFree(
|
||||
slice.familyOffset, slice.transferCount);
|
||||
appendByCore(expected.receives, family.channelIds, family.targetCores,
|
||||
slice.familyOffset, slice.transferCount);
|
||||
appendEventsByCore(expected.events, family.channelIds, family.sourceCores,
|
||||
slice.familyOffset, slice.transferCount, true);
|
||||
appendEventsByCore(expected.events, family.channelIds, family.targetCores,
|
||||
slice.familyOffset, slice.transferCount, false);
|
||||
}
|
||||
|
||||
CoreTransferSequences actual;
|
||||
@@ -378,13 +443,18 @@ LogicalResult verifyRealizedCommunicationDeadlockFree(
|
||||
*actualChannels.back(),
|
||||
realized->send ? realized->sources : realized->targets,
|
||||
0, actualChannels.back()->size());
|
||||
appendEventsByCore(actual.events, *actualChannels.back(),
|
||||
realized->send ? realized->sources : realized->targets,
|
||||
0, actualChannels.back()->size(), realized->send);
|
||||
});
|
||||
if (invalid)
|
||||
return failure();
|
||||
if (failed(compareSequences(
|
||||
funcOp, expected.sends, actual.sends, "send"))
|
||||
|| failed(compareSequences(
|
||||
funcOp, expected.receives, actual.receives, "receive")))
|
||||
funcOp, expected.receives, actual.receives, "receive"))
|
||||
|| failed(compareEventSequences(
|
||||
funcOp, expected.events, actual.events)))
|
||||
return failure();
|
||||
return success();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user