Skip to content

Commit

Permalink
fix KK size
Browse files Browse the repository at this point in the history
  • Loading branch information
HiraokaTakuya committed May 6, 2018
1 parent e890fdc commit 178e7ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ int main(int argc, char *argv[]) {
ofs.write(reinterpret_cast<char*>(outbuf.data()), outbuf.size() * sizeof(int32_t));
}
{ // KK
std::vector<char> outbuf(81*81*4);
std::vector<char> outbuf(81*81*4*2);
std::fill(std::begin(outbuf), std::end(outbuf), 0);
std::ofstream ofs((dir + "/KK_synthesized.bin").c_str(), std::ios::binary);
ofs.write(reinterpret_cast<char*>(outbuf.data()), outbuf.size() * sizeof(char));
Expand Down

0 comments on commit 178e7ff

Please sign in to comment.