Fixed some compilation warnings

This commit is contained in:
Benoit Steiner
2016-05-26 15:57:19 -07:00
parent 094f4a56c8
commit 1ae2567861
2 changed files with 4 additions and 4 deletions

View File

@@ -625,7 +625,7 @@ struct TensorEvaluator<const TensorContractionOp<Indices, LeftArgType, RightArgT
};
// Decide whether we want to shard m x n contraction by columns or by rows.
static bool shardByCol(Index m, Index n, int num_threads) {
static bool shardByCol(Index m, Index n, Index num_threads) {
// Note: we are comparing both n and m against Traits::nr, it is not
// a mistake. We are trying to figure out how both n and m will fit into
// the main sharding dimension.