Commit fefe118c authored by philipNoonan's avatar philipNoonan Committed by Francisco Massa
Browse files

Fix to alternative operator representation (#1031)

parent 3c81d474
...@@ -30,7 +30,7 @@ BasicBlock::BasicBlock( ...@@ -30,7 +30,7 @@ BasicBlock::BasicBlock(
int64_t groups, int64_t groups,
int64_t base_width) int64_t base_width)
: stride(stride), downsample(downsample) { : stride(stride), downsample(downsample) {
if (groups != 1 or base_width != 64) { if (groups != 1 || base_width != 64) {
std::cerr << "BasicBlock only supports groups=1 and base_width=64" std::cerr << "BasicBlock only supports groups=1 and base_width=64"
<< std::endl; << std::endl;
assert(false); assert(false);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment