Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit c17b3df

Browse files
committed
Try small size for 2LUT test cases
1 parent dbb909c commit c17b3df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/example_MLP_model.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ DEFINE_uint32(B, 128, "Batch size");
4141
// LUT part of the model
4242
DEFINE_uint32(D, 64, "LUT embedding size (in floats)");
4343
DEFINE_uint32(L1, 50, "LUT1 indices per batch");
44-
DEFINE_uint32(E1, 1e7, "LUT1 rows (number of embeddings)");
44+
DEFINE_uint32(E1, 1e5, "LUT1 rows (number of embeddings)");
4545
DEFINE_uint32(L2, 50, "LUT2 indices per batch");
46-
DEFINE_uint32(E2, 1e7, "LUT2 rows (number of embeddings)");
46+
DEFINE_uint32(E2, 1e5, "LUT2 rows (number of embeddings)");
4747
DEFINE_uint32(WX, 1000, "W rows");
4848
DEFINE_uint32(WY, 1024, "W cols");
4949

0 commit comments

Comments
 (0)