Skip to content

Commit bd1130f

Browse files
authored
Update ParserInputData.java
1 parent 9645ae9 commit bd1130f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/inference/java/src/main/java/ParserInputData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ public ParserInputData() {}
3333
public static int BATCH_SIZE = 2;
3434
public static final int BUFFER_MAX = 20480;
3535
public static int BATCH_NUM;
36-
public static final int SLOT_NUM = 408;
36+
public static final int SLOT_NUM = 300;
3737
public static BatchSample[] batchSamples = new BatchSample[BUFFER_MAX];
3838
public static TreeMap<String, Integer> feasignMap = new TreeMap<String, Integer>();
3939

4040
public static void ReadInputData() {
4141
Integer[] slotIds = new Integer[SLOT_NUM];
4242
String[] inputVarnames = new String[SLOT_NUM];
43-
for (int i = 2; i <= 409; i++) {
43+
for (int i = 2; i <= 301; i++) {
4444
inputVarnames[i - 2] = String.valueOf(i);
4545
slotIds[i - 2] = i;
4646
}

0 commit comments

Comments
 (0)