Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit 757c77d

Browse files
authored
Merge pull request #372 from mingzhe09088/update-from-facebook-d73a9b78c19f
Fix compilation errors in fbcode
2 parents 09ce450 + f86bf21 commit 757c77d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tc/autotuner/genetic_tuning_harness.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ GeneticTunerHarness::GeneticTunerHarness(
7979
config.fixParameters(fixedParams);
8080
return config;
8181
});
82-
tuner_ = make_unique<GeneticSearch>(
82+
tuner_ = tc::make_unique<GeneticSearch>(
8383
configs,
8484
kMaxPopulationSize,
8585
kCrossOverRate,

test/test_tc_mapper_harness-inl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ struct TcMapperTest : public ::testing::Test {
4747
auto handle = atCompl.compile(name, inputs, mappingOptions);
4848
atCompl.run(name, inputs, outputs, handle);
4949
checkFun(inputs, outputs);
50-
return std::move(outputs);
50+
return outputs;
5151
}
5252
};
5353

0 commit comments

Comments
 (0)