Add operator less to TensorUsageRecord; Small fix in tests.
PiperOrigin-RevId: 248616927
This commit is contained in:
parent
bb15fff6b9
commit
bd0dbb9b54
@ -40,6 +40,11 @@ struct TensorUsageRecord {
|
||||
|
||||
TensorUsageRecord(uint32_t size, TaskId first, TaskId last)
|
||||
: tensor_size(size), first_task(first), last_task(last) {}
|
||||
|
||||
// Default order of tensor usage records is increasing order of first_task.
|
||||
bool operator<(const TensorUsageRecord& other) const {
|
||||
return first_task < other.first_task;
|
||||
}
|
||||
};
|
||||
|
||||
// Information about assignment of tensors to shared objects
|
||||
|
@ -28,17 +28,17 @@ TEST(Model, EmptyRecords) {
|
||||
ObjectsAssignment assignment;
|
||||
ASSERT_TRUE(
|
||||
AssignObjectsToTensors({}, MemoryStrategy::NAIVE, &assignment).ok());
|
||||
ASSERT_TRUE(assignment.object_ids.empty());
|
||||
ASSERT_TRUE(assignment.object_sizes.empty());
|
||||
EXPECT_TRUE(assignment.object_ids.empty());
|
||||
EXPECT_TRUE(assignment.object_sizes.empty());
|
||||
ASSERT_TRUE(
|
||||
AssignObjectsToTensors({}, MemoryStrategy::GREEDY, &assignment).ok());
|
||||
ASSERT_TRUE(assignment.object_ids.empty());
|
||||
ASSERT_TRUE(assignment.object_sizes.empty());
|
||||
EXPECT_TRUE(assignment.object_ids.empty());
|
||||
EXPECT_TRUE(assignment.object_sizes.empty());
|
||||
ASSERT_TRUE(
|
||||
AssignObjectsToTensors({}, MemoryStrategy::MINCOSTFLOW, &assignment)
|
||||
.ok());
|
||||
ASSERT_TRUE(assignment.object_ids.empty());
|
||||
ASSERT_TRUE(assignment.object_sizes.empty());
|
||||
EXPECT_TRUE(assignment.object_ids.empty());
|
||||
EXPECT_TRUE(assignment.object_sizes.empty());
|
||||
}
|
||||
|
||||
TEST(Model, OneRecord) {
|
||||
|
Loading…
Reference in New Issue
Block a user