Skip to content

Commit

Permalink
Fix typo in matrix mult (facebookresearch#3607)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebookresearch#3607

Github issue: facebookresearch#3026

Reviewed By: mengdilin, junjieqi

Differential Revision: D59284732

fbshipit-source-id: a1100c05e7eab40ae90e910364f9ee1db8b1bc55
  • Loading branch information
Michael Norris authored and facebook-github-bot committed Jul 3, 2024
1 parent db251e2 commit 3fe0b93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions faiss/gpu/utils/MatrixMult-inl.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ void runMatrixMult(
FAISS_ASSERT(c.getSize(0) <= std::numeric_limits<int>::max());
FAISS_ASSERT(c.getSize(1) <= std::numeric_limits<int>::max());

FAISS_ASSERT(a.getSize(0) <= std::numeric_limits<int>::max());
FAISS_ASSERT(a.getSize(1) <= std::numeric_limits<int>::max());
FAISS_ASSERT(b.getSize(0) <= std::numeric_limits<int>::max());
FAISS_ASSERT(b.getSize(1) <= std::numeric_limits<int>::max());

FAISS_ASSERT(a.getSize(0) <= std::numeric_limits<int>::max());
FAISS_ASSERT(a.getSize(1) <= std::numeric_limits<int>::max());
Expand Down

0 comments on commit 3fe0b93

Please sign in to comment.