We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b821e8 commit ba7bb6fCopy full SHA for ba7bb6f
taco/minimax.cpp
@@ -84,8 +84,9 @@ static void bench_minimax(benchmark::State& state) {
84
// TODO (rohany, owhsu): We need to actually generate the input game state.
85
for (auto _ : state) {
86
state.PauseTiming();
87
- Tensor<float> result("C");
+ Tensor<double> result("C");
88
result = genMinMaxExpr(game, ivars, 0);
89
+ result.setAssembleWhileCompute(true);
90
result.compile();
91
// std::cout << result.getSource() << std::endl;
92
state.ResumeTiming();
0 commit comments