File: libtorch-th.symbols

package info (click to toggle)
lua-torch-torch7 0~20170926-g89ede3b-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,336 kB
  • sloc: ansic: 19,550; makefile: 79; sh: 20
file content (2507 lines) | stat: -rw-r--r-- 121,760 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
libTH.so.0 libtorch-th #MINVER#
 THAlloc@Base 0~20160803-g17ff317
 THAtomicAdd@Base 0~20160803-g17ff317
 THAtomicAddLong@Base 0~20160803-g17ff317
 THAtomicAddPtrdiff@Base 0~20161013-g4f7843e
 THAtomicCompareAndSwap@Base 0~20160803-g17ff317
 THAtomicCompareAndSwapLong@Base 0~20160803-g17ff317
 THAtomicCompareAndSwapPtrdiff@Base 0~20161013-g4f7843e
 THAtomicDecrementRef@Base 0~20160803-g17ff317
 THAtomicGet@Base 0~20160803-g17ff317
 THAtomicGetLong@Base 0~20160803-g17ff317
 THAtomicGetPtrdiff@Base 0~20161013-g4f7843e
 THAtomicIncrementRef@Base 0~20160803-g17ff317
 THAtomicSet@Base 0~20160803-g17ff317
 THAtomicSetLong@Base 0~20160803-g17ff317
 THAtomicSetPtrdiff@Base 0~20161013-g4f7843e
 THByteBlas_axpy@Base 0~20160803-g17ff317
 THByteBlas_copy@Base 0~20160803-g17ff317
 THByteBlas_dot@Base 0~20160803-g17ff317
 THByteBlas_gemm@Base 0~20160803-g17ff317
 THByteBlas_gemv@Base 0~20160803-g17ff317
 THByteBlas_ger@Base 0~20160803-g17ff317
 THByteBlas_scal@Base 0~20160803-g17ff317
 THByteBlas_swap@Base 0~20160803-g17ff317
 THByteStorage_clearFlag@Base 0~20160803-g17ff317
 THByteStorage_copy@Base 0~20160803-g17ff317
 THByteStorage_copyByte@Base 0~20160803-g17ff317
 THByteStorage_copyChar@Base 0~20160803-g17ff317
 THByteStorage_copyDouble@Base 0~20160803-g17ff317
 THByteStorage_copyFloat@Base 0~20160803-g17ff317
 THByteStorage_copyHalf@Base 0~20170106-gf624ae9
 THByteStorage_copyInt@Base 0~20160803-g17ff317
 THByteStorage_copyLong@Base 0~20160803-g17ff317
 THByteStorage_copyShort@Base 0~20160803-g17ff317
 THByteStorage_data@Base 0~20160803-g17ff317
 THByteStorage_elementSize@Base 0~20160803-g17ff317
 THByteStorage_fill@Base 0~20160803-g17ff317
 THByteStorage_free@Base 0~20160803-g17ff317
 THByteStorage_get@Base 0~20160803-g17ff317
 THByteStorage_new@Base 0~20160803-g17ff317
 THByteStorage_newWithAllocator@Base 0~20160803-g17ff317
 THByteStorage_newWithData@Base 0~20160803-g17ff317
 THByteStorage_newWithDataAndAllocator@Base 0~20160803-g17ff317
 THByteStorage_newWithMapping@Base 0~20160803-g17ff317
 THByteStorage_newWithSize1@Base 0~20160803-g17ff317
 THByteStorage_newWithSize2@Base 0~20160803-g17ff317
 THByteStorage_newWithSize3@Base 0~20160803-g17ff317
 THByteStorage_newWithSize4@Base 0~20160803-g17ff317
 THByteStorage_newWithSize@Base 0~20160803-g17ff317
 THByteStorage_rawCopy@Base 0~20160803-g17ff317
 THByteStorage_resize@Base 0~20160803-g17ff317
 THByteStorage_retain@Base 0~20160803-g17ff317
 THByteStorage_set@Base 0~20160803-g17ff317
 THByteStorage_setFlag@Base 0~20160803-g17ff317
 THByteStorage_size@Base 0~20160803-g17ff317
 THByteStorage_swap@Base 0~20160908-ge5ebac6
 THByteTensor_add@Base 0~20160803-g17ff317
 THByteTensor_addbmm@Base 0~20160803-g17ff317
 THByteTensor_addcdiv@Base 0~20160803-g17ff317
 THByteTensor_addcmul@Base 0~20160803-g17ff317
 THByteTensor_addmm@Base 0~20160803-g17ff317
 THByteTensor_addmv@Base 0~20160803-g17ff317
 THByteTensor_addr@Base 0~20160803-g17ff317
 THByteTensor_arange@Base 0~20170720-gaed3171
 THByteTensor_baddbmm@Base 0~20160803-g17ff317
 THByteTensor_bernoulli@Base 0~20160803-g17ff317
 THByteTensor_bernoulli_DoubleTensor@Base 0~20160803-g17ff317
 THByteTensor_bernoulli_FloatTensor@Base 0~20160803-g17ff317
 THByteTensor_bitand@Base 0~20170304-g329dff5
 THByteTensor_bitor@Base 0~20170304-g329dff5
 THByteTensor_bitxor@Base 0~20170304-g329dff5
 THByteTensor_cadd@Base 0~20160803-g17ff317
 THByteTensor_cappedRandom@Base 0~20170926-g89ede3b
 THByteTensor_cat@Base 0~20160803-g17ff317
 THByteTensor_catArray@Base 0~20160803-g17ff317
 THByteTensor_cbitand@Base 0~20170304-g329dff5
 THByteTensor_cbitor@Base 0~20170304-g329dff5
 THByteTensor_cbitxor@Base 0~20170304-g329dff5
 THByteTensor_cdiv@Base 0~20160803-g17ff317
 THByteTensor_cfmod@Base 0~20160803-g17ff317
 THByteTensor_clamp@Base 0~20160803-g17ff317
 THByteTensor_clampedRandom@Base 0~20170926-g89ede3b
 THByteTensor_clearFlag@Base 0~20160803-g17ff317
 THByteTensor_clshift@Base 0~20170304-g329dff5
 THByteTensor_cmax@Base 0~20160803-g17ff317
 THByteTensor_cmaxValue@Base 0~20160803-g17ff317
 THByteTensor_cmin@Base 0~20160803-g17ff317
 THByteTensor_cminValue@Base 0~20160803-g17ff317
 THByteTensor_cmul@Base 0~20160803-g17ff317
 THByteTensor_conv2DRevger@Base 0~20160803-g17ff317
 THByteTensor_conv2DRevgerm@Base 0~20160803-g17ff317
 THByteTensor_conv2Dcmul@Base 0~20160803-g17ff317
 THByteTensor_conv2Dger@Base 0~20160803-g17ff317
 THByteTensor_conv2Dmap@Base 0~20160803-g17ff317
 THByteTensor_conv2Dmm@Base 0~20160803-g17ff317
 THByteTensor_conv2Dmul@Base 0~20160803-g17ff317
 THByteTensor_conv2Dmv@Base 0~20160803-g17ff317
 THByteTensor_conv2d@Base 0~20160803-g17ff317
 THByteTensor_conv3DRevger@Base 0~20160803-g17ff317
 THByteTensor_conv3Dcmul@Base 0~20160803-g17ff317
 THByteTensor_conv3Dger@Base 0~20160803-g17ff317
 THByteTensor_conv3Dmap@Base 0~20160803-g17ff317
 THByteTensor_conv3Dmul@Base 0~20160803-g17ff317
 THByteTensor_conv3Dmv@Base 0~20160803-g17ff317
 THByteTensor_conv3d@Base 0~20160803-g17ff317
 THByteTensor_convsize@Base 0~20160803-g17ff317
 THByteTensor_copy@Base 0~20160803-g17ff317
 THByteTensor_copyByte@Base 0~20160803-g17ff317
 THByteTensor_copyChar@Base 0~20160803-g17ff317
 THByteTensor_copyDouble@Base 0~20160803-g17ff317
 THByteTensor_copyFloat@Base 0~20160803-g17ff317
 THByteTensor_copyHalf@Base 0~20170106-gf624ae9
 THByteTensor_copyInt@Base 0~20160803-g17ff317
 THByteTensor_copyLong@Base 0~20160803-g17ff317
 THByteTensor_copyShort@Base 0~20160803-g17ff317
 THByteTensor_copyTranspose@Base 0~20170720-gaed3171
 THByteTensor_copyTransposeValid@Base 0~20170720-gaed3171
 THByteTensor_cpow@Base 0~20160803-g17ff317
 THByteTensor_cremainder@Base 0~20160803-g17ff317
 THByteTensor_cross@Base 0~20160803-g17ff317
 THByteTensor_crshift@Base 0~20170304-g329dff5
 THByteTensor_csub@Base 0~20160803-g17ff317
 THByteTensor_cumprod@Base 0~20160803-g17ff317
 THByteTensor_cumsum@Base 0~20160803-g17ff317
 THByteTensor_data@Base 0~20160803-g17ff317
 THByteTensor_desc@Base 0~20160803-g17ff317
 THByteTensor_diag@Base 0~20160803-g17ff317
 THByteTensor_div@Base 0~20160803-g17ff317
 THByteTensor_dot@Base 0~20160803-g17ff317
 THByteTensor_eqTensor@Base 0~20160803-g17ff317
 THByteTensor_eqTensorT@Base 0~20160803-g17ff317
 THByteTensor_eqValue@Base 0~20160803-g17ff317
 THByteTensor_eqValueT@Base 0~20160803-g17ff317
 THByteTensor_equal@Base 0~20160803-g17ff317
 THByteTensor_expand@Base 0~20170720-gaed3171
 THByteTensor_expandNd@Base 0~20170720-gaed3171
 THByteTensor_eye@Base 0~20160803-g17ff317
 THByteTensor_fill@Base 0~20160803-g17ff317
 THByteTensor_fmod@Base 0~20160803-g17ff317
 THByteTensor_free@Base 0~20160803-g17ff317
 THByteTensor_freeCopyTo@Base 0~20160803-g17ff317
 THByteTensor_fullConv2Dptr@Base 0~20160803-g17ff317
 THByteTensor_fullConv3Dptr@Base 0~20160803-g17ff317
 THByteTensor_fullXCorr2Dptr@Base 0~20160803-g17ff317
 THByteTensor_fullXCorr3Dptr@Base 0~20160803-g17ff317
 THByteTensor_gather@Base 0~20160803-g17ff317
 THByteTensor_geTensor@Base 0~20160803-g17ff317
 THByteTensor_geTensorT@Base 0~20160803-g17ff317
 THByteTensor_geValue@Base 0~20160803-g17ff317
 THByteTensor_geValueT@Base 0~20160803-g17ff317
 THByteTensor_geometric@Base 0~20160803-g17ff317
 THByteTensor_get1d@Base 0~20160803-g17ff317
 THByteTensor_get2d@Base 0~20160803-g17ff317
 THByteTensor_get3d@Base 0~20160803-g17ff317
 THByteTensor_get4d@Base 0~20160803-g17ff317
 THByteTensor_getRNGState@Base 0~20160803-g17ff317
 THByteTensor_gtTensor@Base 0~20160803-g17ff317
 THByteTensor_gtTensorT@Base 0~20160803-g17ff317
 THByteTensor_gtValue@Base 0~20160803-g17ff317
 THByteTensor_gtValueT@Base 0~20160803-g17ff317
 THByteTensor_indexAdd@Base 0~20160803-g17ff317
 THByteTensor_indexCopy@Base 0~20160803-g17ff317
 THByteTensor_indexFill@Base 0~20160803-g17ff317
 THByteTensor_indexSelect@Base 0~20160803-g17ff317
 THByteTensor_isContiguous@Base 0~20160803-g17ff317
 THByteTensor_isSameSizeAs@Base 0~20160803-g17ff317
 THByteTensor_isSetTo@Base 0~20160803-g17ff317
 THByteTensor_isSize@Base 0~20160803-g17ff317
 THByteTensor_isTransposed@Base 0~20170304-g329dff5
 THByteTensor_kthvalue@Base 0~20160803-g17ff317
 THByteTensor_leTensor@Base 0~20160803-g17ff317
 THByteTensor_leTensorT@Base 0~20160803-g17ff317
 THByteTensor_leValue@Base 0~20160803-g17ff317
 THByteTensor_leValueT@Base 0~20160803-g17ff317
 THByteTensor_logicalall@Base 0~20160803-g17ff317
 THByteTensor_logicalany@Base 0~20160803-g17ff317
 THByteTensor_lshift@Base 0~20170304-g329dff5
 THByteTensor_ltTensor@Base 0~20160803-g17ff317
 THByteTensor_ltTensorT@Base 0~20160803-g17ff317
 THByteTensor_ltValue@Base 0~20160803-g17ff317
 THByteTensor_ltValueT@Base 0~20160803-g17ff317
 THByteTensor_maskedCopy@Base 0~20160803-g17ff317
 THByteTensor_maskedFill@Base 0~20160803-g17ff317
 THByteTensor_maskedSelect@Base 0~20160803-g17ff317
 THByteTensor_match@Base 0~20160803-g17ff317
 THByteTensor_max@Base 0~20160803-g17ff317
 THByteTensor_maxall@Base 0~20160803-g17ff317
 THByteTensor_median@Base 0~20160803-g17ff317
 THByteTensor_medianall@Base 0~20170720-gaed3171
 THByteTensor_min@Base 0~20160803-g17ff317
 THByteTensor_minall@Base 0~20160803-g17ff317
 THByteTensor_mode@Base 0~20160803-g17ff317
 THByteTensor_mul@Base 0~20160803-g17ff317
 THByteTensor_nDimension@Base 0~20160803-g17ff317
 THByteTensor_nElement@Base 0~20160803-g17ff317
 THByteTensor_narrow@Base 0~20160803-g17ff317
 THByteTensor_neTensor@Base 0~20160803-g17ff317
 THByteTensor_neTensorT@Base 0~20160803-g17ff317
 THByteTensor_neValue@Base 0~20160803-g17ff317
 THByteTensor_neValueT@Base 0~20160803-g17ff317
 THByteTensor_new@Base 0~20160803-g17ff317
 THByteTensor_newClone@Base 0~20160803-g17ff317
 THByteTensor_newContiguous@Base 0~20160803-g17ff317
 THByteTensor_newExpand@Base 0~20170511-gae1a805
 THByteTensor_newNarrow@Base 0~20160803-g17ff317
 THByteTensor_newSelect@Base 0~20160803-g17ff317
 THByteTensor_newSizeOf@Base 0~20160803-g17ff317
 THByteTensor_newStrideOf@Base 0~20160803-g17ff317
 THByteTensor_newTranspose@Base 0~20160803-g17ff317
 THByteTensor_newUnfold@Base 0~20160803-g17ff317
 THByteTensor_newView@Base 0~20170304-g329dff5
 THByteTensor_newWithSize1d@Base 0~20160803-g17ff317
 THByteTensor_newWithSize2d@Base 0~20160803-g17ff317
 THByteTensor_newWithSize3d@Base 0~20160803-g17ff317
 THByteTensor_newWithSize4d@Base 0~20160803-g17ff317
 THByteTensor_newWithSize@Base 0~20160803-g17ff317
 THByteTensor_newWithStorage1d@Base 0~20160803-g17ff317
 THByteTensor_newWithStorage2d@Base 0~20160803-g17ff317
 THByteTensor_newWithStorage3d@Base 0~20160803-g17ff317
 THByteTensor_newWithStorage4d@Base 0~20160803-g17ff317
 THByteTensor_newWithStorage@Base 0~20160803-g17ff317
 THByteTensor_newWithTensor@Base 0~20160803-g17ff317
 THByteTensor_nonzero@Base 0~20160803-g17ff317
 THByteTensor_numel@Base 0~20160803-g17ff317
 THByteTensor_ones@Base 0~20160803-g17ff317
 THByteTensor_onesLike@Base 0~20170926-g89ede3b
 THByteTensor_prod@Base 0~20160803-g17ff317
 THByteTensor_prodall@Base 0~20160803-g17ff317
 THByteTensor_random@Base 0~20160803-g17ff317
 THByteTensor_randperm@Base 0~20160803-g17ff317
 THByteTensor_range@Base 0~20160803-g17ff317
 THByteTensor_remainder@Base 0~20160803-g17ff317
 THByteTensor_reshape@Base 0~20160803-g17ff317
 THByteTensor_resize1d@Base 0~20160803-g17ff317
 THByteTensor_resize2d@Base 0~20160803-g17ff317
 THByteTensor_resize3d@Base 0~20160803-g17ff317
 THByteTensor_resize4d@Base 0~20160803-g17ff317
 THByteTensor_resize5d@Base 0~20160803-g17ff317
 THByteTensor_resize@Base 0~20160803-g17ff317
 THByteTensor_resizeAs@Base 0~20160803-g17ff317
 THByteTensor_resizeNd@Base 0~20170304-g329dff5
 THByteTensor_retain@Base 0~20160803-g17ff317
 THByteTensor_rshift@Base 0~20170304-g329dff5
 THByteTensor_scatter@Base 0~20160803-g17ff317
 THByteTensor_scatterAdd@Base 0~20170720-gaed3171
 THByteTensor_scatterFill@Base 0~20160803-g17ff317
 THByteTensor_select@Base 0~20160803-g17ff317
 THByteTensor_set1d@Base 0~20160803-g17ff317
 THByteTensor_set2d@Base 0~20160803-g17ff317
 THByteTensor_set3d@Base 0~20160803-g17ff317
 THByteTensor_set4d@Base 0~20160803-g17ff317
 THByteTensor_set@Base 0~20160803-g17ff317
 THByteTensor_setFlag@Base 0~20160803-g17ff317
 THByteTensor_setRNGState@Base 0~20160803-g17ff317
 THByteTensor_setStorage1d@Base 0~20160803-g17ff317
 THByteTensor_setStorage2d@Base 0~20160803-g17ff317
 THByteTensor_setStorage3d@Base 0~20160803-g17ff317
 THByteTensor_setStorage4d@Base 0~20160803-g17ff317
 THByteTensor_setStorage@Base 0~20160803-g17ff317
 THByteTensor_setStorageNd@Base 0~20170304-g329dff5
 THByteTensor_sign@Base 0~20160803-g17ff317
 THByteTensor_size@Base 0~20160803-g17ff317
 THByteTensor_sizeDesc@Base 0~20160803-g17ff317
 THByteTensor_sort@Base 0~20160803-g17ff317
 THByteTensor_squeeze1d@Base 0~20160803-g17ff317
 THByteTensor_squeeze@Base 0~20160803-g17ff317
 THByteTensor_storage@Base 0~20160803-g17ff317
 THByteTensor_storageOffset@Base 0~20160803-g17ff317
 THByteTensor_stride@Base 0~20160803-g17ff317
 THByteTensor_sub@Base 0~20160803-g17ff317
 THByteTensor_sum@Base 0~20160803-g17ff317
 THByteTensor_sumall@Base 0~20160803-g17ff317
 THByteTensor_topk@Base 0~20160803-g17ff317
 THByteTensor_tpow@Base 0~20160803-g17ff317
 THByteTensor_trace@Base 0~20160803-g17ff317
 THByteTensor_transpose@Base 0~20160803-g17ff317
 THByteTensor_tril@Base 0~20160803-g17ff317
 THByteTensor_triu@Base 0~20160803-g17ff317
 THByteTensor_unfold@Base 0~20160803-g17ff317
 THByteTensor_unsqueeze1d@Base 0~20170304-g329dff5
 THByteTensor_validConv2Dptr@Base 0~20160803-g17ff317
 THByteTensor_validConv3Dptr@Base 0~20160803-g17ff317
 THByteTensor_validXCorr2DRevptr@Base 0~20160803-g17ff317
 THByteTensor_validXCorr2Dptr@Base 0~20160803-g17ff317
 THByteTensor_validXCorr3DRevptr@Base 0~20160803-g17ff317
 THByteTensor_validXCorr3Dptr@Base 0~20160803-g17ff317
 THByteTensor_zero@Base 0~20160803-g17ff317
 THByteTensor_zeros@Base 0~20160803-g17ff317
 THByteTensor_zerosLike@Base 0~20170926-g89ede3b
 THByteVector_adds@Base 0~20170304-g329dff5
 THByteVector_adds_DEFAULT@Base 0~20170304-g329dff5
 THByteVector_cadd@Base 0~20170304-g329dff5
 THByteVector_cadd_DEFAULT@Base 0~20170304-g329dff5
 THByteVector_cdiv@Base 0~20170304-g329dff5
 THByteVector_cdiv_DEFAULT@Base 0~20170304-g329dff5
 THByteVector_cmul@Base 0~20170304-g329dff5
 THByteVector_cmul_DEFAULT@Base 0~20170304-g329dff5
 THByteVector_copy@Base 0~20170304-g329dff5
 THByteVector_copy_DEFAULT@Base 0~20170304-g329dff5
 THByteVector_divs@Base 0~20170304-g329dff5
 THByteVector_divs_DEFAULT@Base 0~20170304-g329dff5
 THByteVector_fill@Base 0~20160908-ge5ebac6
 THByteVector_fill_DEFAULT@Base 0~20160908-ge5ebac6
 THByteVector_muls@Base 0~20170304-g329dff5
 THByteVector_muls_DEFAULT@Base 0~20170304-g329dff5
 THByteVector_vectorDispatchInit@Base 0~20160908-ge5ebac6
 THCharBlas_axpy@Base 0~20160803-g17ff317
 THCharBlas_copy@Base 0~20160803-g17ff317
 THCharBlas_dot@Base 0~20160803-g17ff317
 THCharBlas_gemm@Base 0~20160803-g17ff317
 THCharBlas_gemv@Base 0~20160803-g17ff317
 THCharBlas_ger@Base 0~20160803-g17ff317
 THCharBlas_scal@Base 0~20160803-g17ff317
 THCharBlas_swap@Base 0~20160803-g17ff317
 THCharStorage_clearFlag@Base 0~20160803-g17ff317
 THCharStorage_copy@Base 0~20160803-g17ff317
 THCharStorage_copyByte@Base 0~20160803-g17ff317
 THCharStorage_copyChar@Base 0~20160803-g17ff317
 THCharStorage_copyDouble@Base 0~20160803-g17ff317
 THCharStorage_copyFloat@Base 0~20160803-g17ff317
 THCharStorage_copyHalf@Base 0~20170106-gf624ae9
 THCharStorage_copyInt@Base 0~20160803-g17ff317
 THCharStorage_copyLong@Base 0~20160803-g17ff317
 THCharStorage_copyShort@Base 0~20160803-g17ff317
 THCharStorage_data@Base 0~20160803-g17ff317
 THCharStorage_elementSize@Base 0~20160803-g17ff317
 THCharStorage_fill@Base 0~20160803-g17ff317
 THCharStorage_free@Base 0~20160803-g17ff317
 THCharStorage_get@Base 0~20160803-g17ff317
 THCharStorage_new@Base 0~20160803-g17ff317
 THCharStorage_newWithAllocator@Base 0~20160803-g17ff317
 THCharStorage_newWithData@Base 0~20160803-g17ff317
 THCharStorage_newWithDataAndAllocator@Base 0~20160803-g17ff317
 THCharStorage_newWithMapping@Base 0~20160803-g17ff317
 THCharStorage_newWithSize1@Base 0~20160803-g17ff317
 THCharStorage_newWithSize2@Base 0~20160803-g17ff317
 THCharStorage_newWithSize3@Base 0~20160803-g17ff317
 THCharStorage_newWithSize4@Base 0~20160803-g17ff317
 THCharStorage_newWithSize@Base 0~20160803-g17ff317
 THCharStorage_rawCopy@Base 0~20160803-g17ff317
 THCharStorage_resize@Base 0~20160803-g17ff317
 THCharStorage_retain@Base 0~20160803-g17ff317
 THCharStorage_set@Base 0~20160803-g17ff317
 THCharStorage_setFlag@Base 0~20160803-g17ff317
 THCharStorage_size@Base 0~20160803-g17ff317
 THCharStorage_swap@Base 0~20160908-ge5ebac6
 THCharTensor_add@Base 0~20160803-g17ff317
 THCharTensor_addbmm@Base 0~20160803-g17ff317
 THCharTensor_addcdiv@Base 0~20160803-g17ff317
 THCharTensor_addcmul@Base 0~20160803-g17ff317
 THCharTensor_addmm@Base 0~20160803-g17ff317
 THCharTensor_addmv@Base 0~20160803-g17ff317
 THCharTensor_addr@Base 0~20160803-g17ff317
 THCharTensor_arange@Base 0~20170720-gaed3171
 THCharTensor_baddbmm@Base 0~20160803-g17ff317
 THCharTensor_bernoulli@Base 0~20160803-g17ff317
 THCharTensor_bernoulli_DoubleTensor@Base 0~20160803-g17ff317
 THCharTensor_bernoulli_FloatTensor@Base 0~20160803-g17ff317
 THCharTensor_bitand@Base 0~20170304-g329dff5
 THCharTensor_bitor@Base 0~20170304-g329dff5
 THCharTensor_bitxor@Base 0~20170304-g329dff5
 THCharTensor_cadd@Base 0~20160803-g17ff317
 THCharTensor_cappedRandom@Base 0~20170926-g89ede3b
 THCharTensor_cat@Base 0~20160803-g17ff317
 THCharTensor_catArray@Base 0~20160803-g17ff317
 THCharTensor_cbitand@Base 0~20170304-g329dff5
 THCharTensor_cbitor@Base 0~20170304-g329dff5
 THCharTensor_cbitxor@Base 0~20170304-g329dff5
 THCharTensor_cdiv@Base 0~20160803-g17ff317
 THCharTensor_cfmod@Base 0~20160803-g17ff317
 THCharTensor_clamp@Base 0~20160803-g17ff317
 THCharTensor_clampedRandom@Base 0~20170926-g89ede3b
 THCharTensor_clearFlag@Base 0~20160803-g17ff317
 THCharTensor_clshift@Base 0~20170304-g329dff5
 THCharTensor_cmax@Base 0~20160803-g17ff317
 THCharTensor_cmaxValue@Base 0~20160803-g17ff317
 THCharTensor_cmin@Base 0~20160803-g17ff317
 THCharTensor_cminValue@Base 0~20160803-g17ff317
 THCharTensor_cmul@Base 0~20160803-g17ff317
 THCharTensor_conv2DRevger@Base 0~20160803-g17ff317
 THCharTensor_conv2DRevgerm@Base 0~20160803-g17ff317
 THCharTensor_conv2Dcmul@Base 0~20160803-g17ff317
 THCharTensor_conv2Dger@Base 0~20160803-g17ff317
 THCharTensor_conv2Dmap@Base 0~20160803-g17ff317
 THCharTensor_conv2Dmm@Base 0~20160803-g17ff317
 THCharTensor_conv2Dmul@Base 0~20160803-g17ff317
 THCharTensor_conv2Dmv@Base 0~20160803-g17ff317
 THCharTensor_conv2d@Base 0~20160803-g17ff317
 THCharTensor_conv3DRevger@Base 0~20160803-g17ff317
 THCharTensor_conv3Dcmul@Base 0~20160803-g17ff317
 THCharTensor_conv3Dger@Base 0~20160803-g17ff317
 THCharTensor_conv3Dmap@Base 0~20160803-g17ff317
 THCharTensor_conv3Dmul@Base 0~20160803-g17ff317
 THCharTensor_conv3Dmv@Base 0~20160803-g17ff317
 THCharTensor_conv3d@Base 0~20160803-g17ff317
 THCharTensor_convsize@Base 0~20160803-g17ff317
 THCharTensor_copy@Base 0~20160803-g17ff317
 THCharTensor_copyByte@Base 0~20160803-g17ff317
 THCharTensor_copyChar@Base 0~20160803-g17ff317
 THCharTensor_copyDouble@Base 0~20160803-g17ff317
 THCharTensor_copyFloat@Base 0~20160803-g17ff317
 THCharTensor_copyHalf@Base 0~20170106-gf624ae9
 THCharTensor_copyInt@Base 0~20160803-g17ff317
 THCharTensor_copyLong@Base 0~20160803-g17ff317
 THCharTensor_copyShort@Base 0~20160803-g17ff317
 THCharTensor_copyTranspose@Base 0~20170720-gaed3171
 THCharTensor_copyTransposeValid@Base 0~20170720-gaed3171
 THCharTensor_cpow@Base 0~20160803-g17ff317
 THCharTensor_cremainder@Base 0~20160803-g17ff317
 THCharTensor_cross@Base 0~20160803-g17ff317
 THCharTensor_crshift@Base 0~20170304-g329dff5
 THCharTensor_csub@Base 0~20160803-g17ff317
 THCharTensor_cumprod@Base 0~20160803-g17ff317
 THCharTensor_cumsum@Base 0~20160803-g17ff317
 THCharTensor_data@Base 0~20160803-g17ff317
 THCharTensor_desc@Base 0~20160803-g17ff317
 THCharTensor_diag@Base 0~20160803-g17ff317
 THCharTensor_div@Base 0~20160803-g17ff317
 THCharTensor_dot@Base 0~20160803-g17ff317
 THCharTensor_eqTensor@Base 0~20160803-g17ff317
 THCharTensor_eqTensorT@Base 0~20160803-g17ff317
 THCharTensor_eqValue@Base 0~20160803-g17ff317
 THCharTensor_eqValueT@Base 0~20160803-g17ff317
 THCharTensor_equal@Base 0~20160803-g17ff317
 THCharTensor_expand@Base 0~20170720-gaed3171
 THCharTensor_expandNd@Base 0~20170720-gaed3171
 THCharTensor_eye@Base 0~20160803-g17ff317
 THCharTensor_fill@Base 0~20160803-g17ff317
 THCharTensor_fmod@Base 0~20160803-g17ff317
 THCharTensor_free@Base 0~20160803-g17ff317
 THCharTensor_freeCopyTo@Base 0~20160803-g17ff317
 THCharTensor_fullConv2Dptr@Base 0~20160803-g17ff317
 THCharTensor_fullConv3Dptr@Base 0~20160803-g17ff317
 THCharTensor_fullXCorr2Dptr@Base 0~20160803-g17ff317
 THCharTensor_fullXCorr3Dptr@Base 0~20160803-g17ff317
 THCharTensor_gather@Base 0~20160803-g17ff317
 THCharTensor_geTensor@Base 0~20160803-g17ff317
 THCharTensor_geTensorT@Base 0~20160803-g17ff317
 THCharTensor_geValue@Base 0~20160803-g17ff317
 THCharTensor_geValueT@Base 0~20160803-g17ff317
 THCharTensor_geometric@Base 0~20160803-g17ff317
 THCharTensor_get1d@Base 0~20160803-g17ff317
 THCharTensor_get2d@Base 0~20160803-g17ff317
 THCharTensor_get3d@Base 0~20160803-g17ff317
 THCharTensor_get4d@Base 0~20160803-g17ff317
 THCharTensor_gtTensor@Base 0~20160803-g17ff317
 THCharTensor_gtTensorT@Base 0~20160803-g17ff317
 THCharTensor_gtValue@Base 0~20160803-g17ff317
 THCharTensor_gtValueT@Base 0~20160803-g17ff317
 THCharTensor_indexAdd@Base 0~20160803-g17ff317
 THCharTensor_indexCopy@Base 0~20160803-g17ff317
 THCharTensor_indexFill@Base 0~20160803-g17ff317
 THCharTensor_indexSelect@Base 0~20160803-g17ff317
 THCharTensor_isContiguous@Base 0~20160803-g17ff317
 THCharTensor_isSameSizeAs@Base 0~20160803-g17ff317
 THCharTensor_isSetTo@Base 0~20160803-g17ff317
 THCharTensor_isSize@Base 0~20160803-g17ff317
 THCharTensor_isTransposed@Base 0~20170304-g329dff5
 THCharTensor_kthvalue@Base 0~20160803-g17ff317
 THCharTensor_leTensor@Base 0~20160803-g17ff317
 THCharTensor_leTensorT@Base 0~20160803-g17ff317
 THCharTensor_leValue@Base 0~20160803-g17ff317
 THCharTensor_leValueT@Base 0~20160803-g17ff317
 THCharTensor_lshift@Base 0~20170304-g329dff5
 THCharTensor_ltTensor@Base 0~20160803-g17ff317
 THCharTensor_ltTensorT@Base 0~20160803-g17ff317
 THCharTensor_ltValue@Base 0~20160803-g17ff317
 THCharTensor_ltValueT@Base 0~20160803-g17ff317
 THCharTensor_maskedCopy@Base 0~20160803-g17ff317
 THCharTensor_maskedFill@Base 0~20160803-g17ff317
 THCharTensor_maskedSelect@Base 0~20160803-g17ff317
 THCharTensor_match@Base 0~20160803-g17ff317
 THCharTensor_max@Base 0~20160803-g17ff317
 THCharTensor_maxall@Base 0~20160803-g17ff317
 THCharTensor_median@Base 0~20160803-g17ff317
 THCharTensor_medianall@Base 0~20170720-gaed3171
 THCharTensor_min@Base 0~20160803-g17ff317
 THCharTensor_minall@Base 0~20160803-g17ff317
 THCharTensor_mode@Base 0~20160803-g17ff317
 THCharTensor_mul@Base 0~20160803-g17ff317
 THCharTensor_nDimension@Base 0~20160803-g17ff317
 THCharTensor_nElement@Base 0~20160803-g17ff317
 THCharTensor_narrow@Base 0~20160803-g17ff317
 THCharTensor_neTensor@Base 0~20160803-g17ff317
 THCharTensor_neTensorT@Base 0~20160803-g17ff317
 THCharTensor_neValue@Base 0~20160803-g17ff317
 THCharTensor_neValueT@Base 0~20160803-g17ff317
 THCharTensor_new@Base 0~20160803-g17ff317
 THCharTensor_newClone@Base 0~20160803-g17ff317
 THCharTensor_newContiguous@Base 0~20160803-g17ff317
 THCharTensor_newExpand@Base 0~20170511-gae1a805
 THCharTensor_newNarrow@Base 0~20160803-g17ff317
 THCharTensor_newSelect@Base 0~20160803-g17ff317
 THCharTensor_newSizeOf@Base 0~20160803-g17ff317
 THCharTensor_newStrideOf@Base 0~20160803-g17ff317
 THCharTensor_newTranspose@Base 0~20160803-g17ff317
 THCharTensor_newUnfold@Base 0~20160803-g17ff317
 THCharTensor_newView@Base 0~20170304-g329dff5
 THCharTensor_newWithSize1d@Base 0~20160803-g17ff317
 THCharTensor_newWithSize2d@Base 0~20160803-g17ff317
 THCharTensor_newWithSize3d@Base 0~20160803-g17ff317
 THCharTensor_newWithSize4d@Base 0~20160803-g17ff317
 THCharTensor_newWithSize@Base 0~20160803-g17ff317
 THCharTensor_newWithStorage1d@Base 0~20160803-g17ff317
 THCharTensor_newWithStorage2d@Base 0~20160803-g17ff317
 THCharTensor_newWithStorage3d@Base 0~20160803-g17ff317
 THCharTensor_newWithStorage4d@Base 0~20160803-g17ff317
 THCharTensor_newWithStorage@Base 0~20160803-g17ff317
 THCharTensor_newWithTensor@Base 0~20160803-g17ff317
 THCharTensor_nonzero@Base 0~20160803-g17ff317
 THCharTensor_numel@Base 0~20160803-g17ff317
 THCharTensor_ones@Base 0~20160803-g17ff317
 THCharTensor_onesLike@Base 0~20170926-g89ede3b
 THCharTensor_prod@Base 0~20160803-g17ff317
 THCharTensor_prodall@Base 0~20160803-g17ff317
 THCharTensor_random@Base 0~20160803-g17ff317
 THCharTensor_randperm@Base 0~20160803-g17ff317
 THCharTensor_range@Base 0~20160803-g17ff317
 THCharTensor_remainder@Base 0~20160803-g17ff317
 THCharTensor_reshape@Base 0~20160803-g17ff317
 THCharTensor_resize1d@Base 0~20160803-g17ff317
 THCharTensor_resize2d@Base 0~20160803-g17ff317
 THCharTensor_resize3d@Base 0~20160803-g17ff317
 THCharTensor_resize4d@Base 0~20160803-g17ff317
 THCharTensor_resize5d@Base 0~20160803-g17ff317
 THCharTensor_resize@Base 0~20160803-g17ff317
 THCharTensor_resizeAs@Base 0~20160803-g17ff317
 THCharTensor_resizeNd@Base 0~20170304-g329dff5
 THCharTensor_retain@Base 0~20160803-g17ff317
 THCharTensor_rshift@Base 0~20170304-g329dff5
 THCharTensor_scatter@Base 0~20160803-g17ff317
 THCharTensor_scatterAdd@Base 0~20170720-gaed3171
 THCharTensor_scatterFill@Base 0~20160803-g17ff317
 THCharTensor_select@Base 0~20160803-g17ff317
 THCharTensor_set1d@Base 0~20160803-g17ff317
 THCharTensor_set2d@Base 0~20160803-g17ff317
 THCharTensor_set3d@Base 0~20160803-g17ff317
 THCharTensor_set4d@Base 0~20160803-g17ff317
 THCharTensor_set@Base 0~20160803-g17ff317
 THCharTensor_setFlag@Base 0~20160803-g17ff317
 THCharTensor_setStorage1d@Base 0~20160803-g17ff317
 THCharTensor_setStorage2d@Base 0~20160803-g17ff317
 THCharTensor_setStorage3d@Base 0~20160803-g17ff317
 THCharTensor_setStorage4d@Base 0~20160803-g17ff317
 THCharTensor_setStorage@Base 0~20160803-g17ff317
 THCharTensor_setStorageNd@Base 0~20170304-g329dff5
 THCharTensor_sign@Base 0~20160803-g17ff317
 THCharTensor_size@Base 0~20160803-g17ff317
 THCharTensor_sizeDesc@Base 0~20160803-g17ff317
 THCharTensor_sort@Base 0~20160803-g17ff317
 THCharTensor_squeeze1d@Base 0~20160803-g17ff317
 THCharTensor_squeeze@Base 0~20160803-g17ff317
 THCharTensor_storage@Base 0~20160803-g17ff317
 THCharTensor_storageOffset@Base 0~20160803-g17ff317
 THCharTensor_stride@Base 0~20160803-g17ff317
 THCharTensor_sub@Base 0~20160803-g17ff317
 THCharTensor_sum@Base 0~20160803-g17ff317
 THCharTensor_sumall@Base 0~20160803-g17ff317
 THCharTensor_topk@Base 0~20160803-g17ff317
 THCharTensor_tpow@Base 0~20160803-g17ff317
 THCharTensor_trace@Base 0~20160803-g17ff317
 THCharTensor_transpose@Base 0~20160803-g17ff317
 THCharTensor_tril@Base 0~20160803-g17ff317
 THCharTensor_triu@Base 0~20160803-g17ff317
 THCharTensor_unfold@Base 0~20160803-g17ff317
 THCharTensor_unsqueeze1d@Base 0~20170304-g329dff5
 THCharTensor_validConv2Dptr@Base 0~20160803-g17ff317
 THCharTensor_validConv3Dptr@Base 0~20160803-g17ff317
 THCharTensor_validXCorr2DRevptr@Base 0~20160803-g17ff317
 THCharTensor_validXCorr2Dptr@Base 0~20160803-g17ff317
 THCharTensor_validXCorr3DRevptr@Base 0~20160803-g17ff317
 THCharTensor_validXCorr3Dptr@Base 0~20160803-g17ff317
 THCharTensor_zero@Base 0~20160803-g17ff317
 THCharTensor_zeros@Base 0~20160803-g17ff317
 THCharTensor_zerosLike@Base 0~20170926-g89ede3b
 THCharVector_adds@Base 0~20170304-g329dff5
 THCharVector_adds_DEFAULT@Base 0~20170304-g329dff5
 THCharVector_cadd@Base 0~20170304-g329dff5
 THCharVector_cadd_DEFAULT@Base 0~20170304-g329dff5
 THCharVector_cdiv@Base 0~20170304-g329dff5
 THCharVector_cdiv_DEFAULT@Base 0~20170304-g329dff5
 THCharVector_cmul@Base 0~20170304-g329dff5
 THCharVector_cmul_DEFAULT@Base 0~20170304-g329dff5
 THCharVector_copy@Base 0~20170304-g329dff5
 THCharVector_copy_DEFAULT@Base 0~20170304-g329dff5
 THCharVector_divs@Base 0~20170304-g329dff5
 THCharVector_divs_DEFAULT@Base 0~20170304-g329dff5
 THCharVector_fill@Base 0~20160908-ge5ebac6
 THCharVector_fill_DEFAULT@Base 0~20160908-ge5ebac6
 THCharVector_muls@Base 0~20170304-g329dff5
 THCharVector_muls_DEFAULT@Base 0~20170304-g329dff5
 THCharVector_vectorDispatchInit@Base 0~20160908-ge5ebac6
 THDefaultAllocator@Base 0~20160803-g17ff317
 THDiskFile_bigEndianEncoding@Base 0~20160803-g17ff317
 THDiskFile_isBigEndianCPU@Base 0~20160803-g17ff317
 THDiskFile_isLittleEndianCPU@Base 0~20160803-g17ff317
 THDiskFile_littleEndianEncoding@Base 0~20160803-g17ff317
 THDiskFile_longSize@Base 0~20160803-g17ff317
 THDiskFile_name@Base 0~20160803-g17ff317
 THDiskFile_nativeEndianEncoding@Base 0~20160803-g17ff317
 THDiskFile_new@Base 0~20160803-g17ff317
 THDiskFile_noBuffer@Base 0~20160803-g17ff317
 THDoubleBlas_axpy@Base 0~20160803-g17ff317
 THDoubleBlas_copy@Base 0~20160803-g17ff317
 THDoubleBlas_dot@Base 0~20160803-g17ff317
 THDoubleBlas_gemm@Base 0~20160803-g17ff317
 THDoubleBlas_gemv@Base 0~20160803-g17ff317
 THDoubleBlas_ger@Base 0~20160803-g17ff317
 THDoubleBlas_scal@Base 0~20160803-g17ff317
 THDoubleBlas_swap@Base 0~20160803-g17ff317
 THDoubleLapack_geev@Base 0~20160803-g17ff317
 THDoubleLapack_gels@Base 0~20160803-g17ff317
 THDoubleLapack_geqrf@Base 0~20160803-g17ff317
 THDoubleLapack_gesv@Base 0~20160803-g17ff317
 THDoubleLapack_gesvd@Base 0~20160803-g17ff317
 THDoubleLapack_getrf@Base 0~20160803-g17ff317
 THDoubleLapack_getri@Base 0~20160803-g17ff317
 THDoubleLapack_getrs@Base 0~20170511-gae1a805
 THDoubleLapack_orgqr@Base 0~20160803-g17ff317
 THDoubleLapack_ormqr@Base 0~20160803-g17ff317
 THDoubleLapack_potrf@Base 0~20160803-g17ff317
 THDoubleLapack_potri@Base 0~20160803-g17ff317
 THDoubleLapack_potrs@Base 0~20160803-g17ff317
 THDoubleLapack_pstrf@Base 0~20160803-g17ff317
 THDoubleLapack_syev@Base 0~20160803-g17ff317
 THDoubleLapack_trtrs@Base 0~20160803-g17ff317
 THDoubleStorage_clearFlag@Base 0~20160803-g17ff317
 THDoubleStorage_copy@Base 0~20160803-g17ff317
 THDoubleStorage_copyByte@Base 0~20160803-g17ff317
 THDoubleStorage_copyChar@Base 0~20160803-g17ff317
 THDoubleStorage_copyDouble@Base 0~20160803-g17ff317
 THDoubleStorage_copyFloat@Base 0~20160803-g17ff317
 THDoubleStorage_copyHalf@Base 0~20170106-gf624ae9
 THDoubleStorage_copyInt@Base 0~20160803-g17ff317
 THDoubleStorage_copyLong@Base 0~20160803-g17ff317
 THDoubleStorage_copyShort@Base 0~20160803-g17ff317
 THDoubleStorage_data@Base 0~20160803-g17ff317
 THDoubleStorage_elementSize@Base 0~20160803-g17ff317
 THDoubleStorage_fill@Base 0~20160803-g17ff317
 THDoubleStorage_free@Base 0~20160803-g17ff317
 THDoubleStorage_get@Base 0~20160803-g17ff317
 THDoubleStorage_new@Base 0~20160803-g17ff317
 THDoubleStorage_newWithAllocator@Base 0~20160803-g17ff317
 THDoubleStorage_newWithData@Base 0~20160803-g17ff317
 THDoubleStorage_newWithDataAndAllocator@Base 0~20160803-g17ff317
 THDoubleStorage_newWithMapping@Base 0~20160803-g17ff317
 THDoubleStorage_newWithSize1@Base 0~20160803-g17ff317
 THDoubleStorage_newWithSize2@Base 0~20160803-g17ff317
 THDoubleStorage_newWithSize3@Base 0~20160803-g17ff317
 THDoubleStorage_newWithSize4@Base 0~20160803-g17ff317
 THDoubleStorage_newWithSize@Base 0~20160803-g17ff317
 THDoubleStorage_rawCopy@Base 0~20160803-g17ff317
 THDoubleStorage_resize@Base 0~20160803-g17ff317
 THDoubleStorage_retain@Base 0~20160803-g17ff317
 THDoubleStorage_set@Base 0~20160803-g17ff317
 THDoubleStorage_setFlag@Base 0~20160803-g17ff317
 THDoubleStorage_size@Base 0~20160803-g17ff317
 THDoubleStorage_swap@Base 0~20160908-ge5ebac6
 THDoubleTensor_abs@Base 0~20160803-g17ff317
 THDoubleTensor_acos@Base 0~20160803-g17ff317
 THDoubleTensor_add@Base 0~20160803-g17ff317
 THDoubleTensor_addbmm@Base 0~20160803-g17ff317
 THDoubleTensor_addcdiv@Base 0~20160803-g17ff317
 THDoubleTensor_addcmul@Base 0~20160803-g17ff317
 THDoubleTensor_addmm@Base 0~20160803-g17ff317
 THDoubleTensor_addmv@Base 0~20160803-g17ff317
 THDoubleTensor_addr@Base 0~20160803-g17ff317
 THDoubleTensor_arange@Base 0~20170720-gaed3171
 THDoubleTensor_asin@Base 0~20160803-g17ff317
 THDoubleTensor_atan2@Base 0~20160803-g17ff317
 THDoubleTensor_atan@Base 0~20160803-g17ff317
 THDoubleTensor_baddbmm@Base 0~20160803-g17ff317
 THDoubleTensor_bernoulli@Base 0~20160803-g17ff317
 THDoubleTensor_bernoulli_DoubleTensor@Base 0~20160803-g17ff317
 THDoubleTensor_bernoulli_FloatTensor@Base 0~20160803-g17ff317
 THDoubleTensor_bhistc@Base 0~20170106-gf624ae9
 THDoubleTensor_bitand@Base 0~20170304-g329dff5
 THDoubleTensor_bitor@Base 0~20170304-g329dff5
 THDoubleTensor_bitxor@Base 0~20170304-g329dff5
 THDoubleTensor_btrifact@Base 0~20170511-gae1a805
 THDoubleTensor_btrisolve@Base 0~20170511-gae1a805
 THDoubleTensor_cadd@Base 0~20160803-g17ff317
 THDoubleTensor_cappedRandom@Base 0~20170926-g89ede3b
 THDoubleTensor_cat@Base 0~20160803-g17ff317
 THDoubleTensor_catArray@Base 0~20160803-g17ff317
 THDoubleTensor_cauchy@Base 0~20160803-g17ff317
 THDoubleTensor_cbitand@Base 0~20170304-g329dff5
 THDoubleTensor_cbitor@Base 0~20170304-g329dff5
 THDoubleTensor_cbitxor@Base 0~20170304-g329dff5
 THDoubleTensor_cdiv@Base 0~20160803-g17ff317
 THDoubleTensor_ceil@Base 0~20160803-g17ff317
 THDoubleTensor_cfmod@Base 0~20160803-g17ff317
 THDoubleTensor_cinv@Base 0~20160803-g17ff317
 THDoubleTensor_clamp@Base 0~20160803-g17ff317
 THDoubleTensor_clampedRandom@Base 0~20170926-g89ede3b
 THDoubleTensor_clearFlag@Base 0~20160803-g17ff317
 THDoubleTensor_clearUpLoTriangle@Base 0~20160803-g17ff317
 THDoubleTensor_clshift@Base 0~20170304-g329dff5
 THDoubleTensor_cmax@Base 0~20160803-g17ff317
 THDoubleTensor_cmaxValue@Base 0~20160803-g17ff317
 THDoubleTensor_cmin@Base 0~20160803-g17ff317
 THDoubleTensor_cminValue@Base 0~20160803-g17ff317
 THDoubleTensor_cmul@Base 0~20160803-g17ff317
 THDoubleTensor_conv2DRevger@Base 0~20160803-g17ff317
 THDoubleTensor_conv2DRevgerm@Base 0~20160803-g17ff317
 THDoubleTensor_conv2Dcmul@Base 0~20160803-g17ff317
 THDoubleTensor_conv2Dger@Base 0~20160803-g17ff317
 THDoubleTensor_conv2Dmap@Base 0~20160803-g17ff317
 THDoubleTensor_conv2Dmm@Base 0~20160803-g17ff317
 THDoubleTensor_conv2Dmul@Base 0~20160803-g17ff317
 THDoubleTensor_conv2Dmv@Base 0~20160803-g17ff317
 THDoubleTensor_conv2d@Base 0~20160803-g17ff317
 THDoubleTensor_conv3DRevger@Base 0~20160803-g17ff317
 THDoubleTensor_conv3Dcmul@Base 0~20160803-g17ff317
 THDoubleTensor_conv3Dger@Base 0~20160803-g17ff317
 THDoubleTensor_conv3Dmap@Base 0~20160803-g17ff317
 THDoubleTensor_conv3Dmul@Base 0~20160803-g17ff317
 THDoubleTensor_conv3Dmv@Base 0~20160803-g17ff317
 THDoubleTensor_conv3d@Base 0~20160803-g17ff317
 THDoubleTensor_convsize@Base 0~20160803-g17ff317
 THDoubleTensor_copy@Base 0~20160803-g17ff317
 THDoubleTensor_copyByte@Base 0~20160803-g17ff317
 THDoubleTensor_copyChar@Base 0~20160803-g17ff317
 THDoubleTensor_copyDouble@Base 0~20160803-g17ff317
 THDoubleTensor_copyFloat@Base 0~20160803-g17ff317
 THDoubleTensor_copyHalf@Base 0~20170106-gf624ae9
 THDoubleTensor_copyInt@Base 0~20160803-g17ff317
 THDoubleTensor_copyLong@Base 0~20160803-g17ff317
 THDoubleTensor_copyShort@Base 0~20160803-g17ff317
 THDoubleTensor_copyTranspose@Base 0~20170720-gaed3171
 THDoubleTensor_copyTransposeValid@Base 0~20170720-gaed3171
 THDoubleTensor_copyUpLoTriangle@Base 0~20160803-g17ff317
 THDoubleTensor_cos@Base 0~20160803-g17ff317
 THDoubleTensor_cosh@Base 0~20160803-g17ff317
 THDoubleTensor_cpow@Base 0~20160803-g17ff317
 THDoubleTensor_cremainder@Base 0~20160803-g17ff317
 THDoubleTensor_cross@Base 0~20160803-g17ff317
 THDoubleTensor_crshift@Base 0~20170304-g329dff5
 THDoubleTensor_csub@Base 0~20160803-g17ff317
 THDoubleTensor_cumprod@Base 0~20160803-g17ff317
 THDoubleTensor_cumsum@Base 0~20160803-g17ff317
 THDoubleTensor_data@Base 0~20160803-g17ff317
 THDoubleTensor_desc@Base 0~20160803-g17ff317
 THDoubleTensor_diag@Base 0~20160803-g17ff317
 THDoubleTensor_dist@Base 0~20160803-g17ff317
 THDoubleTensor_div@Base 0~20160803-g17ff317
 THDoubleTensor_dot@Base 0~20160803-g17ff317
 THDoubleTensor_eqTensor@Base 0~20160803-g17ff317
 THDoubleTensor_eqTensorT@Base 0~20160803-g17ff317
 THDoubleTensor_eqValue@Base 0~20160803-g17ff317
 THDoubleTensor_eqValueT@Base 0~20160803-g17ff317
 THDoubleTensor_equal@Base 0~20160803-g17ff317
 THDoubleTensor_exp@Base 0~20160803-g17ff317
 THDoubleTensor_expand@Base 0~20170720-gaed3171
 THDoubleTensor_expandNd@Base 0~20170720-gaed3171
 THDoubleTensor_exponential@Base 0~20160803-g17ff317
 THDoubleTensor_eye@Base 0~20160803-g17ff317
 THDoubleTensor_fill@Base 0~20160803-g17ff317
 THDoubleTensor_floor@Base 0~20160803-g17ff317
 THDoubleTensor_fmod@Base 0~20160803-g17ff317
 THDoubleTensor_frac@Base 0~20160803-g17ff317
 THDoubleTensor_free@Base 0~20160803-g17ff317
 THDoubleTensor_freeCopyTo@Base 0~20160803-g17ff317
 THDoubleTensor_fullConv2Dptr@Base 0~20160803-g17ff317
 THDoubleTensor_fullConv3Dptr@Base 0~20160803-g17ff317
 THDoubleTensor_fullXCorr2Dptr@Base 0~20160803-g17ff317
 THDoubleTensor_fullXCorr3Dptr@Base 0~20160803-g17ff317
 THDoubleTensor_gather@Base 0~20160803-g17ff317
 THDoubleTensor_geTensor@Base 0~20160803-g17ff317
 THDoubleTensor_geTensorT@Base 0~20160803-g17ff317
 THDoubleTensor_geValue@Base 0~20160803-g17ff317
 THDoubleTensor_geValueT@Base 0~20160803-g17ff317
 THDoubleTensor_geev@Base 0~20160803-g17ff317
 THDoubleTensor_gels@Base 0~20160803-g17ff317
 THDoubleTensor_geometric@Base 0~20160803-g17ff317
 THDoubleTensor_geqrf@Base 0~20160803-g17ff317
 THDoubleTensor_gesv@Base 0~20160803-g17ff317
 THDoubleTensor_gesvd2@Base 0~20160803-g17ff317
 THDoubleTensor_gesvd@Base 0~20160803-g17ff317
 THDoubleTensor_get1d@Base 0~20160803-g17ff317
 THDoubleTensor_get2d@Base 0~20160803-g17ff317
 THDoubleTensor_get3d@Base 0~20160803-g17ff317
 THDoubleTensor_get4d@Base 0~20160803-g17ff317
 THDoubleTensor_getri@Base 0~20160803-g17ff317
 THDoubleTensor_gtTensor@Base 0~20160803-g17ff317
 THDoubleTensor_gtTensorT@Base 0~20160803-g17ff317
 THDoubleTensor_gtValue@Base 0~20160803-g17ff317
 THDoubleTensor_gtValueT@Base 0~20160803-g17ff317
 THDoubleTensor_histc@Base 0~20160803-g17ff317
 THDoubleTensor_indexAdd@Base 0~20160803-g17ff317
 THDoubleTensor_indexCopy@Base 0~20160803-g17ff317
 THDoubleTensor_indexFill@Base 0~20160803-g17ff317
 THDoubleTensor_indexSelect@Base 0~20160803-g17ff317
 THDoubleTensor_isContiguous@Base 0~20160803-g17ff317
 THDoubleTensor_isSameSizeAs@Base 0~20160803-g17ff317
 THDoubleTensor_isSetTo@Base 0~20160803-g17ff317
 THDoubleTensor_isSize@Base 0~20160803-g17ff317
 THDoubleTensor_isTransposed@Base 0~20170304-g329dff5
 THDoubleTensor_kthvalue@Base 0~20160803-g17ff317
 THDoubleTensor_leTensor@Base 0~20160803-g17ff317
 THDoubleTensor_leTensorT@Base 0~20160803-g17ff317
 THDoubleTensor_leValue@Base 0~20160803-g17ff317
 THDoubleTensor_leValueT@Base 0~20160803-g17ff317
 THDoubleTensor_lerp@Base 0~20160803-g17ff317
 THDoubleTensor_lgamma@Base 0~20170511-gae1a805
 THDoubleTensor_linspace@Base 0~20160803-g17ff317
 THDoubleTensor_log1p@Base 0~20160803-g17ff317
 THDoubleTensor_log@Base 0~20160803-g17ff317
 THDoubleTensor_logNormal@Base 0~20160803-g17ff317
 THDoubleTensor_logspace@Base 0~20160803-g17ff317
 THDoubleTensor_lshift@Base 0~20170304-g329dff5
 THDoubleTensor_ltTensor@Base 0~20160803-g17ff317
 THDoubleTensor_ltTensorT@Base 0~20160803-g17ff317
 THDoubleTensor_ltValue@Base 0~20160803-g17ff317
 THDoubleTensor_ltValueT@Base 0~20160803-g17ff317
 THDoubleTensor_maskedCopy@Base 0~20160803-g17ff317
 THDoubleTensor_maskedFill@Base 0~20160803-g17ff317
 THDoubleTensor_maskedSelect@Base 0~20160803-g17ff317
 THDoubleTensor_match@Base 0~20160803-g17ff317
 THDoubleTensor_max@Base 0~20160803-g17ff317
 THDoubleTensor_maxall@Base 0~20160803-g17ff317
 THDoubleTensor_mean@Base 0~20160803-g17ff317
 THDoubleTensor_meanall@Base 0~20160803-g17ff317
 THDoubleTensor_median@Base 0~20160803-g17ff317
 THDoubleTensor_medianall@Base 0~20170720-gaed3171
 THDoubleTensor_min@Base 0~20160803-g17ff317
 THDoubleTensor_minall@Base 0~20160803-g17ff317
 THDoubleTensor_mode@Base 0~20160803-g17ff317
 THDoubleTensor_mul@Base 0~20160803-g17ff317
 THDoubleTensor_multinomial@Base 0~20160803-g17ff317
 THDoubleTensor_multinomialAliasDraw@Base 0~20170720-gaed3171
 THDoubleTensor_multinomialAliasSetup@Base 0~20170720-gaed3171
 THDoubleTensor_nDimension@Base 0~20160803-g17ff317
 THDoubleTensor_nElement@Base 0~20160803-g17ff317
 THDoubleTensor_narrow@Base 0~20160803-g17ff317
 THDoubleTensor_neTensor@Base 0~20160803-g17ff317
 THDoubleTensor_neTensorT@Base 0~20160803-g17ff317
 THDoubleTensor_neValue@Base 0~20160803-g17ff317
 THDoubleTensor_neValueT@Base 0~20160803-g17ff317
 THDoubleTensor_neg@Base 0~20160803-g17ff317
 THDoubleTensor_new@Base 0~20160803-g17ff317
 THDoubleTensor_newClone@Base 0~20160803-g17ff317
 THDoubleTensor_newContiguous@Base 0~20160803-g17ff317
 THDoubleTensor_newExpand@Base 0~20170511-gae1a805
 THDoubleTensor_newNarrow@Base 0~20160803-g17ff317
 THDoubleTensor_newSelect@Base 0~20160803-g17ff317
 THDoubleTensor_newSizeOf@Base 0~20160803-g17ff317
 THDoubleTensor_newStrideOf@Base 0~20160803-g17ff317
 THDoubleTensor_newTranspose@Base 0~20160803-g17ff317
 THDoubleTensor_newUnfold@Base 0~20160803-g17ff317
 THDoubleTensor_newView@Base 0~20170304-g329dff5
 THDoubleTensor_newWithSize1d@Base 0~20160803-g17ff317
 THDoubleTensor_newWithSize2d@Base 0~20160803-g17ff317
 THDoubleTensor_newWithSize3d@Base 0~20160803-g17ff317
 THDoubleTensor_newWithSize4d@Base 0~20160803-g17ff317
 THDoubleTensor_newWithSize@Base 0~20160803-g17ff317
 THDoubleTensor_newWithStorage1d@Base 0~20160803-g17ff317
 THDoubleTensor_newWithStorage2d@Base 0~20160803-g17ff317
 THDoubleTensor_newWithStorage3d@Base 0~20160803-g17ff317
 THDoubleTensor_newWithStorage4d@Base 0~20160803-g17ff317
 THDoubleTensor_newWithStorage@Base 0~20160803-g17ff317
 THDoubleTensor_newWithTensor@Base 0~20160803-g17ff317
 THDoubleTensor_nonzero@Base 0~20160803-g17ff317
 THDoubleTensor_norm@Base 0~20160803-g17ff317
 THDoubleTensor_normal@Base 0~20160803-g17ff317
 THDoubleTensor_normal_means@Base 0~20170926-g89ede3b
 THDoubleTensor_normal_means_stddevs@Base 0~20170926-g89ede3b
 THDoubleTensor_normal_stddevs@Base 0~20170926-g89ede3b
 THDoubleTensor_normall@Base 0~20160803-g17ff317
 THDoubleTensor_numel@Base 0~20160803-g17ff317
 THDoubleTensor_ones@Base 0~20160803-g17ff317
 THDoubleTensor_onesLike@Base 0~20170926-g89ede3b
 THDoubleTensor_orgqr@Base 0~20160803-g17ff317
 THDoubleTensor_ormqr@Base 0~20160803-g17ff317
 THDoubleTensor_potrf@Base 0~20160803-g17ff317
 THDoubleTensor_potri@Base 0~20160803-g17ff317
 THDoubleTensor_potrs@Base 0~20160803-g17ff317
 THDoubleTensor_pow@Base 0~20160803-g17ff317
 THDoubleTensor_prod@Base 0~20160803-g17ff317
 THDoubleTensor_prodall@Base 0~20160803-g17ff317
 THDoubleTensor_pstrf@Base 0~20160803-g17ff317
 THDoubleTensor_qr@Base 0~20160803-g17ff317
 THDoubleTensor_rand@Base 0~20160803-g17ff317
 THDoubleTensor_randn@Base 0~20160803-g17ff317
 THDoubleTensor_random@Base 0~20160803-g17ff317
 THDoubleTensor_randperm@Base 0~20160803-g17ff317
 THDoubleTensor_range@Base 0~20160803-g17ff317
 THDoubleTensor_remainder@Base 0~20160803-g17ff317
 THDoubleTensor_renorm@Base 0~20160803-g17ff317
 THDoubleTensor_reshape@Base 0~20160803-g17ff317
 THDoubleTensor_resize1d@Base 0~20160803-g17ff317
 THDoubleTensor_resize2d@Base 0~20160803-g17ff317
 THDoubleTensor_resize3d@Base 0~20160803-g17ff317
 THDoubleTensor_resize4d@Base 0~20160803-g17ff317
 THDoubleTensor_resize5d@Base 0~20160803-g17ff317
 THDoubleTensor_resize@Base 0~20160803-g17ff317
 THDoubleTensor_resizeAs@Base 0~20160803-g17ff317
 THDoubleTensor_resizeNd@Base 0~20170304-g329dff5
 THDoubleTensor_retain@Base 0~20160803-g17ff317
 THDoubleTensor_round@Base 0~20160803-g17ff317
 THDoubleTensor_rshift@Base 0~20170304-g329dff5
 THDoubleTensor_rsqrt@Base 0~20160803-g17ff317
 THDoubleTensor_scatter@Base 0~20160803-g17ff317
 THDoubleTensor_scatterAdd@Base 0~20170720-gaed3171
 THDoubleTensor_scatterFill@Base 0~20160803-g17ff317
 THDoubleTensor_select@Base 0~20160803-g17ff317
 THDoubleTensor_set1d@Base 0~20160803-g17ff317
 THDoubleTensor_set2d@Base 0~20160803-g17ff317
 THDoubleTensor_set3d@Base 0~20160803-g17ff317
 THDoubleTensor_set4d@Base 0~20160803-g17ff317
 THDoubleTensor_set@Base 0~20160803-g17ff317
 THDoubleTensor_setFlag@Base 0~20160803-g17ff317
 THDoubleTensor_setStorage1d@Base 0~20160803-g17ff317
 THDoubleTensor_setStorage2d@Base 0~20160803-g17ff317
 THDoubleTensor_setStorage3d@Base 0~20160803-g17ff317
 THDoubleTensor_setStorage4d@Base 0~20160803-g17ff317
 THDoubleTensor_setStorage@Base 0~20160803-g17ff317
 THDoubleTensor_setStorageNd@Base 0~20170304-g329dff5
 THDoubleTensor_sigmoid@Base 0~20160803-g17ff317
 THDoubleTensor_sign@Base 0~20160803-g17ff317
 THDoubleTensor_sin@Base 0~20160803-g17ff317
 THDoubleTensor_sinh@Base 0~20160803-g17ff317
 THDoubleTensor_size@Base 0~20160803-g17ff317
 THDoubleTensor_sizeDesc@Base 0~20160803-g17ff317
 THDoubleTensor_sort@Base 0~20160803-g17ff317
 THDoubleTensor_sqrt@Base 0~20160803-g17ff317
 THDoubleTensor_squeeze1d@Base 0~20160803-g17ff317
 THDoubleTensor_squeeze@Base 0~20160803-g17ff317
 THDoubleTensor_std@Base 0~20160803-g17ff317
 THDoubleTensor_stdall@Base 0~20160803-g17ff317
 THDoubleTensor_storage@Base 0~20160803-g17ff317
 THDoubleTensor_storageOffset@Base 0~20160803-g17ff317
 THDoubleTensor_stride@Base 0~20160803-g17ff317
 THDoubleTensor_sub@Base 0~20160803-g17ff317
 THDoubleTensor_sum@Base 0~20160803-g17ff317
 THDoubleTensor_sumall@Base 0~20160803-g17ff317
 THDoubleTensor_syev@Base 0~20160803-g17ff317
 THDoubleTensor_tan@Base 0~20160803-g17ff317
 THDoubleTensor_tanh@Base 0~20160803-g17ff317
 THDoubleTensor_topk@Base 0~20160803-g17ff317
 THDoubleTensor_tpow@Base 0~20160803-g17ff317
 THDoubleTensor_trace@Base 0~20160803-g17ff317
 THDoubleTensor_transpose@Base 0~20160803-g17ff317
 THDoubleTensor_tril@Base 0~20160803-g17ff317
 THDoubleTensor_triu@Base 0~20160803-g17ff317
 THDoubleTensor_trtrs@Base 0~20160803-g17ff317
 THDoubleTensor_trunc@Base 0~20160803-g17ff317
 THDoubleTensor_unfold@Base 0~20160803-g17ff317
 THDoubleTensor_uniform@Base 0~20160803-g17ff317
 THDoubleTensor_unsqueeze1d@Base 0~20170304-g329dff5
 THDoubleTensor_validConv2Dptr@Base 0~20160803-g17ff317
 THDoubleTensor_validConv3Dptr@Base 0~20160803-g17ff317
 THDoubleTensor_validXCorr2DRevptr@Base 0~20160803-g17ff317
 THDoubleTensor_validXCorr2Dptr@Base 0~20160803-g17ff317
 THDoubleTensor_validXCorr3DRevptr@Base 0~20160803-g17ff317
 THDoubleTensor_validXCorr3Dptr@Base 0~20160803-g17ff317
 THDoubleTensor_var@Base 0~20160803-g17ff317
 THDoubleTensor_varall@Base 0~20160803-g17ff317
 THDoubleTensor_zero@Base 0~20160803-g17ff317
 THDoubleTensor_zeros@Base 0~20160803-g17ff317
 THDoubleTensor_zerosLike@Base 0~20170926-g89ede3b
 THDoubleVector_adds@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THDoubleVector_adds_AVX@Base 0~20170511-gae1a805
 THDoubleVector_adds_DEFAULT@Base 0~20170304-g329dff5
 THDoubleVector_cadd@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THDoubleVector_cadd_AVX2@Base 0~20170511-gae1a805
#MISSING: 0~20170926-g89ede3b-1# (optional)THDoubleVector_cadd_AVX@Base 0~20170511-gae1a805
 THDoubleVector_cadd_DEFAULT@Base 0~20170304-g329dff5
 THDoubleVector_cdiv@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THDoubleVector_cdiv_AVX@Base 0~20170511-gae1a805
 THDoubleVector_cdiv_DEFAULT@Base 0~20170304-g329dff5
 THDoubleVector_cmul@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THDoubleVector_cmul_AVX@Base 0~20170511-gae1a805
 THDoubleVector_cmul_DEFAULT@Base 0~20170304-g329dff5
 THDoubleVector_copy@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THDoubleVector_copy_AVX@Base 0~20170511-gae1a805
 THDoubleVector_copy_DEFAULT@Base 0~20170304-g329dff5
 THDoubleVector_divs@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THDoubleVector_divs_AVX@Base 0~20170511-gae1a805
 THDoubleVector_divs_DEFAULT@Base 0~20170304-g329dff5
 THDoubleVector_fill@Base 0~20160908-ge5ebac6
#MISSING: 0~20170926-g89ede3b-1# (optional)THDoubleVector_fill_AVX@Base 0~20170511-gae1a805
 THDoubleVector_fill_DEFAULT@Base 0~20160908-ge5ebac6
 THDoubleVector_muls@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THDoubleVector_muls_AVX@Base 0~20170511-gae1a805
 THDoubleVector_muls_DEFAULT@Base 0~20170304-g329dff5
 THDoubleVector_vectorDispatchInit@Base 0~20160908-ge5ebac6
 THExpMinusApprox@Base 0~20160803-g17ff317
 THFile_ascii@Base 0~20160803-g17ff317
 THFile_autoSpacing@Base 0~20160803-g17ff317
 THFile_binary@Base 0~20160803-g17ff317
 THFile_clearError@Base 0~20160803-g17ff317
 THFile_close@Base 0~20160803-g17ff317
 THFile_free@Base 0~20160803-g17ff317
 THFile_hasError@Base 0~20160803-g17ff317
 THFile_isAutoSpacing@Base 0~20160803-g17ff317
 THFile_isBinary@Base 0~20160803-g17ff317
 THFile_isOpened@Base 0~20160803-g17ff317
 THFile_isQuiet@Base 0~20160803-g17ff317
 THFile_isReadable@Base 0~20160803-g17ff317
 THFile_isWritable@Base 0~20160803-g17ff317
 THFile_noAutoSpacing@Base 0~20160803-g17ff317
 THFile_pedantic@Base 0~20160803-g17ff317
 THFile_position@Base 0~20160803-g17ff317
 THFile_quiet@Base 0~20160803-g17ff317
 THFile_readByte@Base 0~20160803-g17ff317
 THFile_readByteRaw@Base 0~20160803-g17ff317
 THFile_readByteScalar@Base 0~20160803-g17ff317
 THFile_readChar@Base 0~20160803-g17ff317
 THFile_readCharRaw@Base 0~20160803-g17ff317
 THFile_readCharScalar@Base 0~20160803-g17ff317
 THFile_readDouble@Base 0~20160803-g17ff317
 THFile_readDoubleRaw@Base 0~20160803-g17ff317
 THFile_readDoubleScalar@Base 0~20160803-g17ff317
 THFile_readFloat@Base 0~20160803-g17ff317
 THFile_readFloatRaw@Base 0~20160803-g17ff317
 THFile_readFloatScalar@Base 0~20160803-g17ff317
 THFile_readHalf@Base 0~20170106-gf624ae9
 THFile_readHalfRaw@Base 0~20170106-gf624ae9
 THFile_readHalfScalar@Base 0~20170106-gf624ae9
 THFile_readInt@Base 0~20160803-g17ff317
 THFile_readIntRaw@Base 0~20160803-g17ff317
 THFile_readIntScalar@Base 0~20160803-g17ff317
 THFile_readLong@Base 0~20160803-g17ff317
 THFile_readLongRaw@Base 0~20160803-g17ff317
 THFile_readLongScalar@Base 0~20160803-g17ff317
 THFile_readShort@Base 0~20160803-g17ff317
 THFile_readShortRaw@Base 0~20160803-g17ff317
 THFile_readShortScalar@Base 0~20160803-g17ff317
 THFile_readStringRaw@Base 0~20160803-g17ff317
 THFile_seek@Base 0~20160803-g17ff317
 THFile_seekEnd@Base 0~20160803-g17ff317
 THFile_synchronize@Base 0~20160803-g17ff317
 THFile_writeByte@Base 0~20160803-g17ff317
 THFile_writeByteRaw@Base 0~20160803-g17ff317
 THFile_writeByteScalar@Base 0~20160803-g17ff317
 THFile_writeChar@Base 0~20160803-g17ff317
 THFile_writeCharRaw@Base 0~20160803-g17ff317
 THFile_writeCharScalar@Base 0~20160803-g17ff317
 THFile_writeDouble@Base 0~20160803-g17ff317
 THFile_writeDoubleRaw@Base 0~20160803-g17ff317
 THFile_writeDoubleScalar@Base 0~20160803-g17ff317
 THFile_writeFloat@Base 0~20160803-g17ff317
 THFile_writeFloatRaw@Base 0~20160803-g17ff317
 THFile_writeFloatScalar@Base 0~20160803-g17ff317
 THFile_writeHalf@Base 0~20170106-gf624ae9
 THFile_writeHalfRaw@Base 0~20170106-gf624ae9
 THFile_writeHalfScalar@Base 0~20170106-gf624ae9
 THFile_writeInt@Base 0~20160803-g17ff317
 THFile_writeIntRaw@Base 0~20160803-g17ff317
 THFile_writeIntScalar@Base 0~20160803-g17ff317
 THFile_writeLong@Base 0~20160803-g17ff317
 THFile_writeLongRaw@Base 0~20160803-g17ff317
 THFile_writeLongScalar@Base 0~20160803-g17ff317
 THFile_writeShort@Base 0~20160803-g17ff317
 THFile_writeShortRaw@Base 0~20160803-g17ff317
 THFile_writeShortScalar@Base 0~20160803-g17ff317
 THFile_writeStringRaw@Base 0~20160803-g17ff317
 THFloatBlas_axpy@Base 0~20160803-g17ff317
 THFloatBlas_copy@Base 0~20160803-g17ff317
 THFloatBlas_dot@Base 0~20160803-g17ff317
 THFloatBlas_gemm@Base 0~20160803-g17ff317
 THFloatBlas_gemv@Base 0~20160803-g17ff317
 THFloatBlas_ger@Base 0~20160803-g17ff317
 THFloatBlas_scal@Base 0~20160803-g17ff317
 THFloatBlas_swap@Base 0~20160803-g17ff317
 THFloatLapack_geev@Base 0~20160803-g17ff317
 THFloatLapack_gels@Base 0~20160803-g17ff317
 THFloatLapack_geqrf@Base 0~20160803-g17ff317
 THFloatLapack_gesv@Base 0~20160803-g17ff317
 THFloatLapack_gesvd@Base 0~20160803-g17ff317
 THFloatLapack_getrf@Base 0~20160803-g17ff317
 THFloatLapack_getri@Base 0~20160803-g17ff317
 THFloatLapack_getrs@Base 0~20170511-gae1a805
 THFloatLapack_orgqr@Base 0~20160803-g17ff317
 THFloatLapack_ormqr@Base 0~20160803-g17ff317
 THFloatLapack_potrf@Base 0~20160803-g17ff317
 THFloatLapack_potri@Base 0~20160803-g17ff317
 THFloatLapack_potrs@Base 0~20160803-g17ff317
 THFloatLapack_pstrf@Base 0~20160803-g17ff317
 THFloatLapack_syev@Base 0~20160803-g17ff317
 THFloatLapack_trtrs@Base 0~20160803-g17ff317
 THFloatStorage_clearFlag@Base 0~20160803-g17ff317
 THFloatStorage_copy@Base 0~20160803-g17ff317
 THFloatStorage_copyByte@Base 0~20160803-g17ff317
 THFloatStorage_copyChar@Base 0~20160803-g17ff317
 THFloatStorage_copyDouble@Base 0~20160803-g17ff317
 THFloatStorage_copyFloat@Base 0~20160803-g17ff317
 THFloatStorage_copyHalf@Base 0~20170106-gf624ae9
 THFloatStorage_copyInt@Base 0~20160803-g17ff317
 THFloatStorage_copyLong@Base 0~20160803-g17ff317
 THFloatStorage_copyShort@Base 0~20160803-g17ff317
 THFloatStorage_data@Base 0~20160803-g17ff317
 THFloatStorage_elementSize@Base 0~20160803-g17ff317
 THFloatStorage_fill@Base 0~20160803-g17ff317
 THFloatStorage_free@Base 0~20160803-g17ff317
 THFloatStorage_get@Base 0~20160803-g17ff317
 THFloatStorage_new@Base 0~20160803-g17ff317
 THFloatStorage_newWithAllocator@Base 0~20160803-g17ff317
 THFloatStorage_newWithData@Base 0~20160803-g17ff317
 THFloatStorage_newWithDataAndAllocator@Base 0~20160803-g17ff317
 THFloatStorage_newWithMapping@Base 0~20160803-g17ff317
 THFloatStorage_newWithSize1@Base 0~20160803-g17ff317
 THFloatStorage_newWithSize2@Base 0~20160803-g17ff317
 THFloatStorage_newWithSize3@Base 0~20160803-g17ff317
 THFloatStorage_newWithSize4@Base 0~20160803-g17ff317
 THFloatStorage_newWithSize@Base 0~20160803-g17ff317
 THFloatStorage_rawCopy@Base 0~20160803-g17ff317
 THFloatStorage_resize@Base 0~20160803-g17ff317
 THFloatStorage_retain@Base 0~20160803-g17ff317
 THFloatStorage_set@Base 0~20160803-g17ff317
 THFloatStorage_setFlag@Base 0~20160803-g17ff317
 THFloatStorage_size@Base 0~20160803-g17ff317
 THFloatStorage_swap@Base 0~20160908-ge5ebac6
 THFloatTensor_abs@Base 0~20160803-g17ff317
 THFloatTensor_acos@Base 0~20160803-g17ff317
 THFloatTensor_add@Base 0~20160803-g17ff317
 THFloatTensor_addbmm@Base 0~20160803-g17ff317
 THFloatTensor_addcdiv@Base 0~20160803-g17ff317
 THFloatTensor_addcmul@Base 0~20160803-g17ff317
 THFloatTensor_addmm@Base 0~20160803-g17ff317
 THFloatTensor_addmv@Base 0~20160803-g17ff317
 THFloatTensor_addr@Base 0~20160803-g17ff317
 THFloatTensor_arange@Base 0~20170720-gaed3171
 THFloatTensor_asin@Base 0~20160803-g17ff317
 THFloatTensor_atan2@Base 0~20160803-g17ff317
 THFloatTensor_atan@Base 0~20160803-g17ff317
 THFloatTensor_baddbmm@Base 0~20160803-g17ff317
 THFloatTensor_bernoulli@Base 0~20160803-g17ff317
 THFloatTensor_bernoulli_DoubleTensor@Base 0~20160803-g17ff317
 THFloatTensor_bernoulli_FloatTensor@Base 0~20160803-g17ff317
 THFloatTensor_bhistc@Base 0~20170106-gf624ae9
 THFloatTensor_bitand@Base 0~20170304-g329dff5
 THFloatTensor_bitor@Base 0~20170304-g329dff5
 THFloatTensor_bitxor@Base 0~20170304-g329dff5
 THFloatTensor_btrifact@Base 0~20170511-gae1a805
 THFloatTensor_btrisolve@Base 0~20170511-gae1a805
 THFloatTensor_cadd@Base 0~20160803-g17ff317
 THFloatTensor_cappedRandom@Base 0~20170926-g89ede3b
 THFloatTensor_cat@Base 0~20160803-g17ff317
 THFloatTensor_catArray@Base 0~20160803-g17ff317
 THFloatTensor_cauchy@Base 0~20160803-g17ff317
 THFloatTensor_cbitand@Base 0~20170304-g329dff5
 THFloatTensor_cbitor@Base 0~20170304-g329dff5
 THFloatTensor_cbitxor@Base 0~20170304-g329dff5
 THFloatTensor_cdiv@Base 0~20160803-g17ff317
 THFloatTensor_ceil@Base 0~20160803-g17ff317
 THFloatTensor_cfmod@Base 0~20160803-g17ff317
 THFloatTensor_cinv@Base 0~20160803-g17ff317
 THFloatTensor_clamp@Base 0~20160803-g17ff317
 THFloatTensor_clampedRandom@Base 0~20170926-g89ede3b
 THFloatTensor_clearFlag@Base 0~20160803-g17ff317
 THFloatTensor_clearUpLoTriangle@Base 0~20160803-g17ff317
 THFloatTensor_clshift@Base 0~20170304-g329dff5
 THFloatTensor_cmax@Base 0~20160803-g17ff317
 THFloatTensor_cmaxValue@Base 0~20160803-g17ff317
 THFloatTensor_cmin@Base 0~20160803-g17ff317
 THFloatTensor_cminValue@Base 0~20160803-g17ff317
 THFloatTensor_cmul@Base 0~20160803-g17ff317
 THFloatTensor_conv2DRevger@Base 0~20160803-g17ff317
 THFloatTensor_conv2DRevgerm@Base 0~20160803-g17ff317
 THFloatTensor_conv2Dcmul@Base 0~20160803-g17ff317
 THFloatTensor_conv2Dger@Base 0~20160803-g17ff317
 THFloatTensor_conv2Dmap@Base 0~20160803-g17ff317
 THFloatTensor_conv2Dmm@Base 0~20160803-g17ff317
 THFloatTensor_conv2Dmul@Base 0~20160803-g17ff317
 THFloatTensor_conv2Dmv@Base 0~20160803-g17ff317
 THFloatTensor_conv2d@Base 0~20160803-g17ff317
 THFloatTensor_conv3DRevger@Base 0~20160803-g17ff317
 THFloatTensor_conv3Dcmul@Base 0~20160803-g17ff317
 THFloatTensor_conv3Dger@Base 0~20160803-g17ff317
 THFloatTensor_conv3Dmap@Base 0~20160803-g17ff317
 THFloatTensor_conv3Dmul@Base 0~20160803-g17ff317
 THFloatTensor_conv3Dmv@Base 0~20160803-g17ff317
 THFloatTensor_conv3d@Base 0~20160803-g17ff317
 THFloatTensor_convsize@Base 0~20160803-g17ff317
 THFloatTensor_copy@Base 0~20160803-g17ff317
 THFloatTensor_copyByte@Base 0~20160803-g17ff317
 THFloatTensor_copyChar@Base 0~20160803-g17ff317
 THFloatTensor_copyDouble@Base 0~20160803-g17ff317
 THFloatTensor_copyFloat@Base 0~20160803-g17ff317
 THFloatTensor_copyHalf@Base 0~20170106-gf624ae9
 THFloatTensor_copyInt@Base 0~20160803-g17ff317
 THFloatTensor_copyLong@Base 0~20160803-g17ff317
 THFloatTensor_copyShort@Base 0~20160803-g17ff317
 THFloatTensor_copyTranspose@Base 0~20170720-gaed3171
 THFloatTensor_copyTransposeValid@Base 0~20170720-gaed3171
 THFloatTensor_copyUpLoTriangle@Base 0~20160803-g17ff317
 THFloatTensor_cos@Base 0~20160803-g17ff317
 THFloatTensor_cosh@Base 0~20160803-g17ff317
 THFloatTensor_cpow@Base 0~20160803-g17ff317
 THFloatTensor_cremainder@Base 0~20160803-g17ff317
 THFloatTensor_cross@Base 0~20160803-g17ff317
 THFloatTensor_crshift@Base 0~20170304-g329dff5
 THFloatTensor_csub@Base 0~20160803-g17ff317
 THFloatTensor_cumprod@Base 0~20160803-g17ff317
 THFloatTensor_cumsum@Base 0~20160803-g17ff317
 THFloatTensor_data@Base 0~20160803-g17ff317
 THFloatTensor_desc@Base 0~20160803-g17ff317
 THFloatTensor_diag@Base 0~20160803-g17ff317
 THFloatTensor_dist@Base 0~20160803-g17ff317
 THFloatTensor_div@Base 0~20160803-g17ff317
 THFloatTensor_dot@Base 0~20160803-g17ff317
 THFloatTensor_eqTensor@Base 0~20160803-g17ff317
 THFloatTensor_eqTensorT@Base 0~20160803-g17ff317
 THFloatTensor_eqValue@Base 0~20160803-g17ff317
 THFloatTensor_eqValueT@Base 0~20160803-g17ff317
 THFloatTensor_equal@Base 0~20160803-g17ff317
 THFloatTensor_exp@Base 0~20160803-g17ff317
 THFloatTensor_expand@Base 0~20170720-gaed3171
 THFloatTensor_expandNd@Base 0~20170720-gaed3171
 THFloatTensor_exponential@Base 0~20160803-g17ff317
 THFloatTensor_eye@Base 0~20160803-g17ff317
 THFloatTensor_fill@Base 0~20160803-g17ff317
 THFloatTensor_floor@Base 0~20160803-g17ff317
 THFloatTensor_fmod@Base 0~20160803-g17ff317
 THFloatTensor_frac@Base 0~20160803-g17ff317
 THFloatTensor_free@Base 0~20160803-g17ff317
 THFloatTensor_freeCopyTo@Base 0~20160803-g17ff317
 THFloatTensor_fullConv2Dptr@Base 0~20160803-g17ff317
 THFloatTensor_fullConv3Dptr@Base 0~20160803-g17ff317
 THFloatTensor_fullXCorr2Dptr@Base 0~20160803-g17ff317
 THFloatTensor_fullXCorr3Dptr@Base 0~20160803-g17ff317
 THFloatTensor_gather@Base 0~20160803-g17ff317
 THFloatTensor_geTensor@Base 0~20160803-g17ff317
 THFloatTensor_geTensorT@Base 0~20160803-g17ff317
 THFloatTensor_geValue@Base 0~20160803-g17ff317
 THFloatTensor_geValueT@Base 0~20160803-g17ff317
 THFloatTensor_geev@Base 0~20160803-g17ff317
 THFloatTensor_gels@Base 0~20160803-g17ff317
 THFloatTensor_geometric@Base 0~20160803-g17ff317
 THFloatTensor_geqrf@Base 0~20160803-g17ff317
 THFloatTensor_gesv@Base 0~20160803-g17ff317
 THFloatTensor_gesvd2@Base 0~20160803-g17ff317
 THFloatTensor_gesvd@Base 0~20160803-g17ff317
 THFloatTensor_get1d@Base 0~20160803-g17ff317
 THFloatTensor_get2d@Base 0~20160803-g17ff317
 THFloatTensor_get3d@Base 0~20160803-g17ff317
 THFloatTensor_get4d@Base 0~20160803-g17ff317
 THFloatTensor_getri@Base 0~20160803-g17ff317
 THFloatTensor_gtTensor@Base 0~20160803-g17ff317
 THFloatTensor_gtTensorT@Base 0~20160803-g17ff317
 THFloatTensor_gtValue@Base 0~20160803-g17ff317
 THFloatTensor_gtValueT@Base 0~20160803-g17ff317
 THFloatTensor_histc@Base 0~20160803-g17ff317
 THFloatTensor_indexAdd@Base 0~20160803-g17ff317
 THFloatTensor_indexCopy@Base 0~20160803-g17ff317
 THFloatTensor_indexFill@Base 0~20160803-g17ff317
 THFloatTensor_indexSelect@Base 0~20160803-g17ff317
 THFloatTensor_isContiguous@Base 0~20160803-g17ff317
 THFloatTensor_isSameSizeAs@Base 0~20160803-g17ff317
 THFloatTensor_isSetTo@Base 0~20160803-g17ff317
 THFloatTensor_isSize@Base 0~20160803-g17ff317
 THFloatTensor_isTransposed@Base 0~20170304-g329dff5
 THFloatTensor_kthvalue@Base 0~20160803-g17ff317
 THFloatTensor_leTensor@Base 0~20160803-g17ff317
 THFloatTensor_leTensorT@Base 0~20160803-g17ff317
 THFloatTensor_leValue@Base 0~20160803-g17ff317
 THFloatTensor_leValueT@Base 0~20160803-g17ff317
 THFloatTensor_lerp@Base 0~20160803-g17ff317
 THFloatTensor_lgamma@Base 0~20170511-gae1a805
 THFloatTensor_linspace@Base 0~20160803-g17ff317
 THFloatTensor_log1p@Base 0~20160803-g17ff317
 THFloatTensor_log@Base 0~20160803-g17ff317
 THFloatTensor_logNormal@Base 0~20160803-g17ff317
 THFloatTensor_logspace@Base 0~20160803-g17ff317
 THFloatTensor_lshift@Base 0~20170304-g329dff5
 THFloatTensor_ltTensor@Base 0~20160803-g17ff317
 THFloatTensor_ltTensorT@Base 0~20160803-g17ff317
 THFloatTensor_ltValue@Base 0~20160803-g17ff317
 THFloatTensor_ltValueT@Base 0~20160803-g17ff317
 THFloatTensor_maskedCopy@Base 0~20160803-g17ff317
 THFloatTensor_maskedFill@Base 0~20160803-g17ff317
 THFloatTensor_maskedSelect@Base 0~20160803-g17ff317
 THFloatTensor_match@Base 0~20160803-g17ff317
 THFloatTensor_max@Base 0~20160803-g17ff317
 THFloatTensor_maxall@Base 0~20160803-g17ff317
 THFloatTensor_mean@Base 0~20160803-g17ff317
 THFloatTensor_meanall@Base 0~20160803-g17ff317
 THFloatTensor_median@Base 0~20160803-g17ff317
 THFloatTensor_medianall@Base 0~20170720-gaed3171
 THFloatTensor_min@Base 0~20160803-g17ff317
 THFloatTensor_minall@Base 0~20160803-g17ff317
 THFloatTensor_mode@Base 0~20160803-g17ff317
 THFloatTensor_mul@Base 0~20160803-g17ff317
 THFloatTensor_multinomial@Base 0~20160803-g17ff317
 THFloatTensor_multinomialAliasDraw@Base 0~20170720-gaed3171
 THFloatTensor_multinomialAliasSetup@Base 0~20170720-gaed3171
 THFloatTensor_nDimension@Base 0~20160803-g17ff317
 THFloatTensor_nElement@Base 0~20160803-g17ff317
 THFloatTensor_narrow@Base 0~20160803-g17ff317
 THFloatTensor_neTensor@Base 0~20160803-g17ff317
 THFloatTensor_neTensorT@Base 0~20160803-g17ff317
 THFloatTensor_neValue@Base 0~20160803-g17ff317
 THFloatTensor_neValueT@Base 0~20160803-g17ff317
 THFloatTensor_neg@Base 0~20160803-g17ff317
 THFloatTensor_new@Base 0~20160803-g17ff317
 THFloatTensor_newClone@Base 0~20160803-g17ff317
 THFloatTensor_newContiguous@Base 0~20160803-g17ff317
 THFloatTensor_newExpand@Base 0~20170511-gae1a805
 THFloatTensor_newNarrow@Base 0~20160803-g17ff317
 THFloatTensor_newSelect@Base 0~20160803-g17ff317
 THFloatTensor_newSizeOf@Base 0~20160803-g17ff317
 THFloatTensor_newStrideOf@Base 0~20160803-g17ff317
 THFloatTensor_newTranspose@Base 0~20160803-g17ff317
 THFloatTensor_newUnfold@Base 0~20160803-g17ff317
 THFloatTensor_newView@Base 0~20170304-g329dff5
 THFloatTensor_newWithSize1d@Base 0~20160803-g17ff317
 THFloatTensor_newWithSize2d@Base 0~20160803-g17ff317
 THFloatTensor_newWithSize3d@Base 0~20160803-g17ff317
 THFloatTensor_newWithSize4d@Base 0~20160803-g17ff317
 THFloatTensor_newWithSize@Base 0~20160803-g17ff317
 THFloatTensor_newWithStorage1d@Base 0~20160803-g17ff317
 THFloatTensor_newWithStorage2d@Base 0~20160803-g17ff317
 THFloatTensor_newWithStorage3d@Base 0~20160803-g17ff317
 THFloatTensor_newWithStorage4d@Base 0~20160803-g17ff317
 THFloatTensor_newWithStorage@Base 0~20160803-g17ff317
 THFloatTensor_newWithTensor@Base 0~20160803-g17ff317
 THFloatTensor_nonzero@Base 0~20160803-g17ff317
 THFloatTensor_norm@Base 0~20160803-g17ff317
 THFloatTensor_normal@Base 0~20160803-g17ff317
 THFloatTensor_normal_means@Base 0~20170926-g89ede3b
 THFloatTensor_normal_means_stddevs@Base 0~20170926-g89ede3b
 THFloatTensor_normal_stddevs@Base 0~20170926-g89ede3b
 THFloatTensor_normall@Base 0~20160803-g17ff317
 THFloatTensor_numel@Base 0~20160803-g17ff317
 THFloatTensor_ones@Base 0~20160803-g17ff317
 THFloatTensor_onesLike@Base 0~20170926-g89ede3b
 THFloatTensor_orgqr@Base 0~20160803-g17ff317
 THFloatTensor_ormqr@Base 0~20160803-g17ff317
 THFloatTensor_potrf@Base 0~20160803-g17ff317
 THFloatTensor_potri@Base 0~20160803-g17ff317
 THFloatTensor_potrs@Base 0~20160803-g17ff317
 THFloatTensor_pow@Base 0~20160803-g17ff317
 THFloatTensor_prod@Base 0~20160803-g17ff317
 THFloatTensor_prodall@Base 0~20160803-g17ff317
 THFloatTensor_pstrf@Base 0~20160803-g17ff317
 THFloatTensor_qr@Base 0~20160803-g17ff317
 THFloatTensor_rand@Base 0~20160803-g17ff317
 THFloatTensor_randn@Base 0~20160803-g17ff317
 THFloatTensor_random@Base 0~20160803-g17ff317
 THFloatTensor_randperm@Base 0~20160803-g17ff317
 THFloatTensor_range@Base 0~20160803-g17ff317
 THFloatTensor_remainder@Base 0~20160803-g17ff317
 THFloatTensor_renorm@Base 0~20160803-g17ff317
 THFloatTensor_reshape@Base 0~20160803-g17ff317
 THFloatTensor_resize1d@Base 0~20160803-g17ff317
 THFloatTensor_resize2d@Base 0~20160803-g17ff317
 THFloatTensor_resize3d@Base 0~20160803-g17ff317
 THFloatTensor_resize4d@Base 0~20160803-g17ff317
 THFloatTensor_resize5d@Base 0~20160803-g17ff317
 THFloatTensor_resize@Base 0~20160803-g17ff317
 THFloatTensor_resizeAs@Base 0~20160803-g17ff317
 THFloatTensor_resizeNd@Base 0~20170304-g329dff5
 THFloatTensor_retain@Base 0~20160803-g17ff317
 THFloatTensor_round@Base 0~20160803-g17ff317
 THFloatTensor_rshift@Base 0~20170304-g329dff5
 THFloatTensor_rsqrt@Base 0~20160803-g17ff317
 THFloatTensor_scatter@Base 0~20160803-g17ff317
 THFloatTensor_scatterAdd@Base 0~20170720-gaed3171
 THFloatTensor_scatterFill@Base 0~20160803-g17ff317
 THFloatTensor_select@Base 0~20160803-g17ff317
 THFloatTensor_set1d@Base 0~20160803-g17ff317
 THFloatTensor_set2d@Base 0~20160803-g17ff317
 THFloatTensor_set3d@Base 0~20160803-g17ff317
 THFloatTensor_set4d@Base 0~20160803-g17ff317
 THFloatTensor_set@Base 0~20160803-g17ff317
 THFloatTensor_setFlag@Base 0~20160803-g17ff317
 THFloatTensor_setStorage1d@Base 0~20160803-g17ff317
 THFloatTensor_setStorage2d@Base 0~20160803-g17ff317
 THFloatTensor_setStorage3d@Base 0~20160803-g17ff317
 THFloatTensor_setStorage4d@Base 0~20160803-g17ff317
 THFloatTensor_setStorage@Base 0~20160803-g17ff317
 THFloatTensor_setStorageNd@Base 0~20170304-g329dff5
 THFloatTensor_sigmoid@Base 0~20160803-g17ff317
 THFloatTensor_sign@Base 0~20160803-g17ff317
 THFloatTensor_sin@Base 0~20160803-g17ff317
 THFloatTensor_sinh@Base 0~20160803-g17ff317
 THFloatTensor_size@Base 0~20160803-g17ff317
 THFloatTensor_sizeDesc@Base 0~20160803-g17ff317
 THFloatTensor_sort@Base 0~20160803-g17ff317
 THFloatTensor_sqrt@Base 0~20160803-g17ff317
 THFloatTensor_squeeze1d@Base 0~20160803-g17ff317
 THFloatTensor_squeeze@Base 0~20160803-g17ff317
 THFloatTensor_std@Base 0~20160803-g17ff317
 THFloatTensor_stdall@Base 0~20160803-g17ff317
 THFloatTensor_storage@Base 0~20160803-g17ff317
 THFloatTensor_storageOffset@Base 0~20160803-g17ff317
 THFloatTensor_stride@Base 0~20160803-g17ff317
 THFloatTensor_sub@Base 0~20160803-g17ff317
 THFloatTensor_sum@Base 0~20160803-g17ff317
 THFloatTensor_sumall@Base 0~20160803-g17ff317
 THFloatTensor_syev@Base 0~20160803-g17ff317
 THFloatTensor_tan@Base 0~20160803-g17ff317
 THFloatTensor_tanh@Base 0~20160803-g17ff317
 THFloatTensor_topk@Base 0~20160803-g17ff317
 THFloatTensor_tpow@Base 0~20160803-g17ff317
 THFloatTensor_trace@Base 0~20160803-g17ff317
 THFloatTensor_transpose@Base 0~20160803-g17ff317
 THFloatTensor_tril@Base 0~20160803-g17ff317
 THFloatTensor_triu@Base 0~20160803-g17ff317
 THFloatTensor_trtrs@Base 0~20160803-g17ff317
 THFloatTensor_trunc@Base 0~20160803-g17ff317
 THFloatTensor_unfold@Base 0~20160803-g17ff317
 THFloatTensor_uniform@Base 0~20160803-g17ff317
 THFloatTensor_unsqueeze1d@Base 0~20170304-g329dff5
 THFloatTensor_validConv2Dptr@Base 0~20160803-g17ff317
 THFloatTensor_validConv3Dptr@Base 0~20160803-g17ff317
 THFloatTensor_validXCorr2DRevptr@Base 0~20160803-g17ff317
 THFloatTensor_validXCorr2Dptr@Base 0~20160803-g17ff317
 THFloatTensor_validXCorr3DRevptr@Base 0~20160803-g17ff317
 THFloatTensor_validXCorr3Dptr@Base 0~20160803-g17ff317
 THFloatTensor_var@Base 0~20160803-g17ff317
 THFloatTensor_varall@Base 0~20160803-g17ff317
 THFloatTensor_zero@Base 0~20160803-g17ff317
 THFloatTensor_zeros@Base 0~20160803-g17ff317
 THFloatTensor_zerosLike@Base 0~20170926-g89ede3b
 THFloatVector_adds@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THFloatVector_adds_AVX@Base 0~20170511-gae1a805
 THFloatVector_adds_DEFAULT@Base 0~20170304-g329dff5
 THFloatVector_cadd@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THFloatVector_cadd_AVX2@Base 0~20170511-gae1a805
#MISSING: 0~20170926-g89ede3b-1# (optional)THFloatVector_cadd_AVX@Base 0~20170511-gae1a805
 THFloatVector_cadd_DEFAULT@Base 0~20170304-g329dff5
 THFloatVector_cdiv@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THFloatVector_cdiv_AVX@Base 0~20170511-gae1a805
 THFloatVector_cdiv_DEFAULT@Base 0~20170304-g329dff5
 THFloatVector_cmul@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THFloatVector_cmul_AVX@Base 0~20170511-gae1a805
 THFloatVector_cmul_DEFAULT@Base 0~20170304-g329dff5
 THFloatVector_copy@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THFloatVector_copy_AVX@Base 0~20170511-gae1a805
 THFloatVector_copy_DEFAULT@Base 0~20170304-g329dff5
 THFloatVector_divs@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THFloatVector_divs_AVX@Base 0~20170511-gae1a805
 THFloatVector_divs_DEFAULT@Base 0~20170304-g329dff5
 THFloatVector_fill@Base 0~20160908-ge5ebac6
#MISSING: 0~20170926-g89ede3b-1# (optional)THFloatVector_fill_AVX@Base 0~20170511-gae1a805
 THFloatVector_fill_DEFAULT@Base 0~20160908-ge5ebac6
 THFloatVector_muls@Base 0~20170304-g329dff5
#MISSING: 0~20170926-g89ede3b-1# (optional)THFloatVector_muls_AVX@Base 0~20170511-gae1a805
 THFloatVector_muls_DEFAULT@Base 0~20170304-g329dff5
 THFloatVector_vectorDispatchInit@Base 0~20160908-ge5ebac6
 THFree@Base 0~20160803-g17ff317
 THGenerator_copy@Base 0~20160803-g17ff317
 THGenerator_free@Base 0~20160803-g17ff317
 THGenerator_isValid@Base 0~20160803-g17ff317
 THGenerator_new@Base 0~20160803-g17ff317
 THGetNumCores@Base 0~20161115-g552b086
 THGetNumThreads@Base 0~20161115-g552b086
 THHalfStorage_clearFlag@Base 0~20170106-gf624ae9
 THHalfStorage_copy@Base 0~20170106-gf624ae9
 THHalfStorage_copyByte@Base 0~20170106-gf624ae9
 THHalfStorage_copyChar@Base 0~20170106-gf624ae9
 THHalfStorage_copyDouble@Base 0~20170106-gf624ae9
 THHalfStorage_copyFloat@Base 0~20170106-gf624ae9
 THHalfStorage_copyHalf@Base 0~20170106-gf624ae9
 THHalfStorage_copyInt@Base 0~20170106-gf624ae9
 THHalfStorage_copyLong@Base 0~20170106-gf624ae9
 THHalfStorage_copyShort@Base 0~20170106-gf624ae9
 THHalfStorage_data@Base 0~20170106-gf624ae9
 THHalfStorage_elementSize@Base 0~20170106-gf624ae9
 THHalfStorage_fill@Base 0~20170106-gf624ae9
 THHalfStorage_free@Base 0~20170106-gf624ae9
 THHalfStorage_get@Base 0~20170106-gf624ae9
 THHalfStorage_new@Base 0~20170106-gf624ae9
 THHalfStorage_newWithAllocator@Base 0~20170106-gf624ae9
 THHalfStorage_newWithData@Base 0~20170106-gf624ae9
 THHalfStorage_newWithDataAndAllocator@Base 0~20170106-gf624ae9
 THHalfStorage_newWithMapping@Base 0~20170106-gf624ae9
 THHalfStorage_newWithSize1@Base 0~20170106-gf624ae9
 THHalfStorage_newWithSize2@Base 0~20170106-gf624ae9
 THHalfStorage_newWithSize3@Base 0~20170106-gf624ae9
 THHalfStorage_newWithSize4@Base 0~20170106-gf624ae9
 THHalfStorage_newWithSize@Base 0~20170106-gf624ae9
 THHalfStorage_rawCopy@Base 0~20170106-gf624ae9
 THHalfStorage_resize@Base 0~20170106-gf624ae9
 THHalfStorage_retain@Base 0~20170106-gf624ae9
 THHalfStorage_set@Base 0~20170106-gf624ae9
 THHalfStorage_setFlag@Base 0~20170106-gf624ae9
 THHalfStorage_size@Base 0~20170106-gf624ae9
 THHalfStorage_swap@Base 0~20170106-gf624ae9
 THHalfTensor_clearFlag@Base 0~20170106-gf624ae9
 THHalfTensor_copy@Base 0~20170106-gf624ae9
 THHalfTensor_copyByte@Base 0~20170106-gf624ae9
 THHalfTensor_copyChar@Base 0~20170106-gf624ae9
 THHalfTensor_copyDouble@Base 0~20170106-gf624ae9
 THHalfTensor_copyFloat@Base 0~20170106-gf624ae9
 THHalfTensor_copyHalf@Base 0~20170106-gf624ae9
 THHalfTensor_copyInt@Base 0~20170106-gf624ae9
 THHalfTensor_copyLong@Base 0~20170106-gf624ae9
 THHalfTensor_copyShort@Base 0~20170106-gf624ae9
 THHalfTensor_copyTranspose@Base 0~20170720-gaed3171
 THHalfTensor_copyTransposeValid@Base 0~20170720-gaed3171
 THHalfTensor_data@Base 0~20170106-gf624ae9
 THHalfTensor_desc@Base 0~20170106-gf624ae9
 THHalfTensor_expand@Base 0~20170720-gaed3171
 THHalfTensor_expandNd@Base 0~20170720-gaed3171
 THHalfTensor_free@Base 0~20170106-gf624ae9
 THHalfTensor_freeCopyTo@Base 0~20170106-gf624ae9
 THHalfTensor_get1d@Base 0~20170106-gf624ae9
 THHalfTensor_get2d@Base 0~20170106-gf624ae9
 THHalfTensor_get3d@Base 0~20170106-gf624ae9
 THHalfTensor_get4d@Base 0~20170106-gf624ae9
 THHalfTensor_isContiguous@Base 0~20170106-gf624ae9
 THHalfTensor_isSameSizeAs@Base 0~20170106-gf624ae9
 THHalfTensor_isSetTo@Base 0~20170106-gf624ae9
 THHalfTensor_isSize@Base 0~20170106-gf624ae9
 THHalfTensor_isTransposed@Base 0~20170304-g329dff5
 THHalfTensor_nDimension@Base 0~20170106-gf624ae9
 THHalfTensor_nElement@Base 0~20170106-gf624ae9
 THHalfTensor_narrow@Base 0~20170106-gf624ae9
 THHalfTensor_new@Base 0~20170106-gf624ae9
 THHalfTensor_newClone@Base 0~20170106-gf624ae9
 THHalfTensor_newContiguous@Base 0~20170106-gf624ae9
 THHalfTensor_newExpand@Base 0~20170511-gae1a805
 THHalfTensor_newNarrow@Base 0~20170106-gf624ae9
 THHalfTensor_newSelect@Base 0~20170106-gf624ae9
 THHalfTensor_newSizeOf@Base 0~20170106-gf624ae9
 THHalfTensor_newStrideOf@Base 0~20170106-gf624ae9
 THHalfTensor_newTranspose@Base 0~20170106-gf624ae9
 THHalfTensor_newUnfold@Base 0~20170106-gf624ae9
 THHalfTensor_newView@Base 0~20170304-g329dff5
 THHalfTensor_newWithSize1d@Base 0~20170106-gf624ae9
 THHalfTensor_newWithSize2d@Base 0~20170106-gf624ae9
 THHalfTensor_newWithSize3d@Base 0~20170106-gf624ae9
 THHalfTensor_newWithSize4d@Base 0~20170106-gf624ae9
 THHalfTensor_newWithSize@Base 0~20170106-gf624ae9
 THHalfTensor_newWithStorage1d@Base 0~20170106-gf624ae9
 THHalfTensor_newWithStorage2d@Base 0~20170106-gf624ae9
 THHalfTensor_newWithStorage3d@Base 0~20170106-gf624ae9
 THHalfTensor_newWithStorage4d@Base 0~20170106-gf624ae9
 THHalfTensor_newWithStorage@Base 0~20170106-gf624ae9
 THHalfTensor_newWithTensor@Base 0~20170106-gf624ae9
 THHalfTensor_resize1d@Base 0~20170106-gf624ae9
 THHalfTensor_resize2d@Base 0~20170106-gf624ae9
 THHalfTensor_resize3d@Base 0~20170106-gf624ae9
 THHalfTensor_resize4d@Base 0~20170106-gf624ae9
 THHalfTensor_resize5d@Base 0~20170106-gf624ae9
 THHalfTensor_resize@Base 0~20170106-gf624ae9
 THHalfTensor_resizeAs@Base 0~20170106-gf624ae9
 THHalfTensor_resizeNd@Base 0~20170304-g329dff5
 THHalfTensor_retain@Base 0~20170106-gf624ae9
 THHalfTensor_select@Base 0~20170106-gf624ae9
 THHalfTensor_set1d@Base 0~20170106-gf624ae9
 THHalfTensor_set2d@Base 0~20170106-gf624ae9
 THHalfTensor_set3d@Base 0~20170106-gf624ae9
 THHalfTensor_set4d@Base 0~20170106-gf624ae9
 THHalfTensor_set@Base 0~20170106-gf624ae9
 THHalfTensor_setFlag@Base 0~20170106-gf624ae9
 THHalfTensor_setStorage1d@Base 0~20170106-gf624ae9
 THHalfTensor_setStorage2d@Base 0~20170106-gf624ae9
 THHalfTensor_setStorage3d@Base 0~20170106-gf624ae9
 THHalfTensor_setStorage4d@Base 0~20170106-gf624ae9
 THHalfTensor_setStorage@Base 0~20170106-gf624ae9
 THHalfTensor_setStorageNd@Base 0~20170304-g329dff5
 THHalfTensor_size@Base 0~20170106-gf624ae9
 THHalfTensor_sizeDesc@Base 0~20170106-gf624ae9
 THHalfTensor_squeeze1d@Base 0~20170106-gf624ae9
 THHalfTensor_squeeze@Base 0~20170106-gf624ae9
 THHalfTensor_storage@Base 0~20170106-gf624ae9
 THHalfTensor_storageOffset@Base 0~20170106-gf624ae9
 THHalfTensor_stride@Base 0~20170106-gf624ae9
 THHalfTensor_transpose@Base 0~20170106-gf624ae9
 THHalfTensor_unfold@Base 0~20170106-gf624ae9
 THHalfTensor_unsqueeze1d@Base 0~20170304-g329dff5
 THHeapUpdate@Base 0~20160803-g17ff317
 THInferNumThreads@Base 0~20170720-gaed3171
 THIntBlas_axpy@Base 0~20160803-g17ff317
 THIntBlas_copy@Base 0~20160803-g17ff317
 THIntBlas_dot@Base 0~20160803-g17ff317
 THIntBlas_gemm@Base 0~20160803-g17ff317
 THIntBlas_gemv@Base 0~20160803-g17ff317
 THIntBlas_ger@Base 0~20160803-g17ff317
 THIntBlas_scal@Base 0~20160803-g17ff317
 THIntBlas_swap@Base 0~20160803-g17ff317
 THIntStorage_clearFlag@Base 0~20160803-g17ff317
 THIntStorage_copy@Base 0~20160803-g17ff317
 THIntStorage_copyByte@Base 0~20160803-g17ff317
 THIntStorage_copyChar@Base 0~20160803-g17ff317
 THIntStorage_copyDouble@Base 0~20160803-g17ff317
 THIntStorage_copyFloat@Base 0~20160803-g17ff317
 THIntStorage_copyHalf@Base 0~20170106-gf624ae9
 THIntStorage_copyInt@Base 0~20160803-g17ff317
 THIntStorage_copyLong@Base 0~20160803-g17ff317
 THIntStorage_copyShort@Base 0~20160803-g17ff317
 THIntStorage_data@Base 0~20160803-g17ff317
 THIntStorage_elementSize@Base 0~20160803-g17ff317
 THIntStorage_fill@Base 0~20160803-g17ff317
 THIntStorage_free@Base 0~20160803-g17ff317
 THIntStorage_get@Base 0~20160803-g17ff317
 THIntStorage_new@Base 0~20160803-g17ff317
 THIntStorage_newWithAllocator@Base 0~20160803-g17ff317
 THIntStorage_newWithData@Base 0~20160803-g17ff317
 THIntStorage_newWithDataAndAllocator@Base 0~20160803-g17ff317
 THIntStorage_newWithMapping@Base 0~20160803-g17ff317
 THIntStorage_newWithSize1@Base 0~20160803-g17ff317
 THIntStorage_newWithSize2@Base 0~20160803-g17ff317
 THIntStorage_newWithSize3@Base 0~20160803-g17ff317
 THIntStorage_newWithSize4@Base 0~20160803-g17ff317
 THIntStorage_newWithSize@Base 0~20160803-g17ff317
 THIntStorage_rawCopy@Base 0~20160803-g17ff317
 THIntStorage_resize@Base 0~20160803-g17ff317
 THIntStorage_retain@Base 0~20160803-g17ff317
 THIntStorage_set@Base 0~20160803-g17ff317
 THIntStorage_setFlag@Base 0~20160803-g17ff317
 THIntStorage_size@Base 0~20160803-g17ff317
 THIntStorage_swap@Base 0~20160908-ge5ebac6
 THIntTensor_abs@Base 0~20160803-g17ff317
 THIntTensor_add@Base 0~20160803-g17ff317
 THIntTensor_addbmm@Base 0~20160803-g17ff317
 THIntTensor_addcdiv@Base 0~20160803-g17ff317
 THIntTensor_addcmul@Base 0~20160803-g17ff317
 THIntTensor_addmm@Base 0~20160803-g17ff317
 THIntTensor_addmv@Base 0~20160803-g17ff317
 THIntTensor_addr@Base 0~20160803-g17ff317
 THIntTensor_arange@Base 0~20170720-gaed3171
 THIntTensor_baddbmm@Base 0~20160803-g17ff317
 THIntTensor_bernoulli@Base 0~20160803-g17ff317
 THIntTensor_bernoulli_DoubleTensor@Base 0~20160803-g17ff317
 THIntTensor_bernoulli_FloatTensor@Base 0~20160803-g17ff317
 THIntTensor_bitand@Base 0~20170304-g329dff5
 THIntTensor_bitor@Base 0~20170304-g329dff5
 THIntTensor_bitxor@Base 0~20170304-g329dff5
 THIntTensor_cadd@Base 0~20160803-g17ff317
 THIntTensor_cappedRandom@Base 0~20170926-g89ede3b
 THIntTensor_cat@Base 0~20160803-g17ff317
 THIntTensor_catArray@Base 0~20160803-g17ff317
 THIntTensor_cbitand@Base 0~20170304-g329dff5
 THIntTensor_cbitor@Base 0~20170304-g329dff5
 THIntTensor_cbitxor@Base 0~20170304-g329dff5
 THIntTensor_cdiv@Base 0~20160803-g17ff317
 THIntTensor_cfmod@Base 0~20160803-g17ff317
 THIntTensor_clamp@Base 0~20160803-g17ff317
 THIntTensor_clampedRandom@Base 0~20170926-g89ede3b
 THIntTensor_clearFlag@Base 0~20160803-g17ff317
 THIntTensor_clshift@Base 0~20170304-g329dff5
 THIntTensor_cmax@Base 0~20160803-g17ff317
 THIntTensor_cmaxValue@Base 0~20160803-g17ff317
 THIntTensor_cmin@Base 0~20160803-g17ff317
 THIntTensor_cminValue@Base 0~20160803-g17ff317
 THIntTensor_cmul@Base 0~20160803-g17ff317
 THIntTensor_conv2DRevger@Base 0~20160803-g17ff317
 THIntTensor_conv2DRevgerm@Base 0~20160803-g17ff317
 THIntTensor_conv2Dcmul@Base 0~20160803-g17ff317
 THIntTensor_conv2Dger@Base 0~20160803-g17ff317
 THIntTensor_conv2Dmap@Base 0~20160803-g17ff317
 THIntTensor_conv2Dmm@Base 0~20160803-g17ff317
 THIntTensor_conv2Dmul@Base 0~20160803-g17ff317
 THIntTensor_conv2Dmv@Base 0~20160803-g17ff317
 THIntTensor_conv2d@Base 0~20160803-g17ff317
 THIntTensor_conv3DRevger@Base 0~20160803-g17ff317
 THIntTensor_conv3Dcmul@Base 0~20160803-g17ff317
 THIntTensor_conv3Dger@Base 0~20160803-g17ff317
 THIntTensor_conv3Dmap@Base 0~20160803-g17ff317
 THIntTensor_conv3Dmul@Base 0~20160803-g17ff317
 THIntTensor_conv3Dmv@Base 0~20160803-g17ff317
 THIntTensor_conv3d@Base 0~20160803-g17ff317
 THIntTensor_convsize@Base 0~20160803-g17ff317
 THIntTensor_copy@Base 0~20160803-g17ff317
 THIntTensor_copyByte@Base 0~20160803-g17ff317
 THIntTensor_copyChar@Base 0~20160803-g17ff317
 THIntTensor_copyDouble@Base 0~20160803-g17ff317
 THIntTensor_copyFloat@Base 0~20160803-g17ff317
 THIntTensor_copyHalf@Base 0~20170106-gf624ae9
 THIntTensor_copyInt@Base 0~20160803-g17ff317
 THIntTensor_copyLong@Base 0~20160803-g17ff317
 THIntTensor_copyShort@Base 0~20160803-g17ff317
 THIntTensor_copyTranspose@Base 0~20170720-gaed3171
 THIntTensor_copyTransposeValid@Base 0~20170720-gaed3171
 THIntTensor_cpow@Base 0~20160803-g17ff317
 THIntTensor_cremainder@Base 0~20160803-g17ff317
 THIntTensor_cross@Base 0~20160803-g17ff317
 THIntTensor_crshift@Base 0~20170304-g329dff5
 THIntTensor_csub@Base 0~20160803-g17ff317
 THIntTensor_cumprod@Base 0~20160803-g17ff317
 THIntTensor_cumsum@Base 0~20160803-g17ff317
 THIntTensor_data@Base 0~20160803-g17ff317
 THIntTensor_desc@Base 0~20160803-g17ff317
 THIntTensor_diag@Base 0~20160803-g17ff317
 THIntTensor_div@Base 0~20160803-g17ff317
 THIntTensor_dot@Base 0~20160803-g17ff317
 THIntTensor_eqTensor@Base 0~20160803-g17ff317
 THIntTensor_eqTensorT@Base 0~20160803-g17ff317
 THIntTensor_eqValue@Base 0~20160803-g17ff317
 THIntTensor_eqValueT@Base 0~20160803-g17ff317
 THIntTensor_equal@Base 0~20160803-g17ff317
 THIntTensor_expand@Base 0~20170720-gaed3171
 THIntTensor_expandNd@Base 0~20170720-gaed3171
 THIntTensor_eye@Base 0~20160803-g17ff317
 THIntTensor_fill@Base 0~20160803-g17ff317
 THIntTensor_fmod@Base 0~20160803-g17ff317
 THIntTensor_free@Base 0~20160803-g17ff317
 THIntTensor_freeCopyTo@Base 0~20160803-g17ff317
 THIntTensor_fullConv2Dptr@Base 0~20160803-g17ff317
 THIntTensor_fullConv3Dptr@Base 0~20160803-g17ff317
 THIntTensor_fullXCorr2Dptr@Base 0~20160803-g17ff317
 THIntTensor_fullXCorr3Dptr@Base 0~20160803-g17ff317
 THIntTensor_gather@Base 0~20160803-g17ff317
 THIntTensor_geTensor@Base 0~20160803-g17ff317
 THIntTensor_geTensorT@Base 0~20160803-g17ff317
 THIntTensor_geValue@Base 0~20160803-g17ff317
 THIntTensor_geValueT@Base 0~20160803-g17ff317
 THIntTensor_geometric@Base 0~20160803-g17ff317
 THIntTensor_get1d@Base 0~20160803-g17ff317
 THIntTensor_get2d@Base 0~20160803-g17ff317
 THIntTensor_get3d@Base 0~20160803-g17ff317
 THIntTensor_get4d@Base 0~20160803-g17ff317
 THIntTensor_gtTensor@Base 0~20160803-g17ff317
 THIntTensor_gtTensorT@Base 0~20160803-g17ff317
 THIntTensor_gtValue@Base 0~20160803-g17ff317
 THIntTensor_gtValueT@Base 0~20160803-g17ff317
 THIntTensor_indexAdd@Base 0~20160803-g17ff317
 THIntTensor_indexCopy@Base 0~20160803-g17ff317
 THIntTensor_indexFill@Base 0~20160803-g17ff317
 THIntTensor_indexSelect@Base 0~20160803-g17ff317
 THIntTensor_isContiguous@Base 0~20160803-g17ff317
 THIntTensor_isSameSizeAs@Base 0~20160803-g17ff317
 THIntTensor_isSetTo@Base 0~20160803-g17ff317
 THIntTensor_isSize@Base 0~20160803-g17ff317
 THIntTensor_isTransposed@Base 0~20170304-g329dff5
 THIntTensor_kthvalue@Base 0~20160803-g17ff317
 THIntTensor_leTensor@Base 0~20160803-g17ff317
 THIntTensor_leTensorT@Base 0~20160803-g17ff317
 THIntTensor_leValue@Base 0~20160803-g17ff317
 THIntTensor_leValueT@Base 0~20160803-g17ff317
 THIntTensor_lshift@Base 0~20170304-g329dff5
 THIntTensor_ltTensor@Base 0~20160803-g17ff317
 THIntTensor_ltTensorT@Base 0~20160803-g17ff317
 THIntTensor_ltValue@Base 0~20160803-g17ff317
 THIntTensor_ltValueT@Base 0~20160803-g17ff317
 THIntTensor_maskedCopy@Base 0~20160803-g17ff317
 THIntTensor_maskedFill@Base 0~20160803-g17ff317
 THIntTensor_maskedSelect@Base 0~20160803-g17ff317
 THIntTensor_match@Base 0~20160803-g17ff317
 THIntTensor_max@Base 0~20160803-g17ff317
 THIntTensor_maxall@Base 0~20160803-g17ff317
 THIntTensor_median@Base 0~20160803-g17ff317
 THIntTensor_medianall@Base 0~20170720-gaed3171
 THIntTensor_min@Base 0~20160803-g17ff317
 THIntTensor_minall@Base 0~20160803-g17ff317
 THIntTensor_mode@Base 0~20160803-g17ff317
 THIntTensor_mul@Base 0~20160803-g17ff317
 THIntTensor_nDimension@Base 0~20160803-g17ff317
 THIntTensor_nElement@Base 0~20160803-g17ff317
 THIntTensor_narrow@Base 0~20160803-g17ff317
 THIntTensor_neTensor@Base 0~20160803-g17ff317
 THIntTensor_neTensorT@Base 0~20160803-g17ff317
 THIntTensor_neValue@Base 0~20160803-g17ff317
 THIntTensor_neValueT@Base 0~20160803-g17ff317
 THIntTensor_neg@Base 0~20170926-g89ede3b
 THIntTensor_new@Base 0~20160803-g17ff317
 THIntTensor_newClone@Base 0~20160803-g17ff317
 THIntTensor_newContiguous@Base 0~20160803-g17ff317
 THIntTensor_newExpand@Base 0~20170511-gae1a805
 THIntTensor_newNarrow@Base 0~20160803-g17ff317
 THIntTensor_newSelect@Base 0~20160803-g17ff317
 THIntTensor_newSizeOf@Base 0~20160803-g17ff317
 THIntTensor_newStrideOf@Base 0~20160803-g17ff317
 THIntTensor_newTranspose@Base 0~20160803-g17ff317
 THIntTensor_newUnfold@Base 0~20160803-g17ff317
 THIntTensor_newView@Base 0~20170304-g329dff5
 THIntTensor_newWithSize1d@Base 0~20160803-g17ff317
 THIntTensor_newWithSize2d@Base 0~20160803-g17ff317
 THIntTensor_newWithSize3d@Base 0~20160803-g17ff317
 THIntTensor_newWithSize4d@Base 0~20160803-g17ff317
 THIntTensor_newWithSize@Base 0~20160803-g17ff317
 THIntTensor_newWithStorage1d@Base 0~20160803-g17ff317
 THIntTensor_newWithStorage2d@Base 0~20160803-g17ff317
 THIntTensor_newWithStorage3d@Base 0~20160803-g17ff317
 THIntTensor_newWithStorage4d@Base 0~20160803-g17ff317
 THIntTensor_newWithStorage@Base 0~20160803-g17ff317
 THIntTensor_newWithTensor@Base 0~20160803-g17ff317
 THIntTensor_nonzero@Base 0~20160803-g17ff317
 THIntTensor_numel@Base 0~20160803-g17ff317
 THIntTensor_ones@Base 0~20160803-g17ff317
 THIntTensor_onesLike@Base 0~20170926-g89ede3b
 THIntTensor_prod@Base 0~20160803-g17ff317
 THIntTensor_prodall@Base 0~20160803-g17ff317
 THIntTensor_random@Base 0~20160803-g17ff317
 THIntTensor_randperm@Base 0~20160803-g17ff317
 THIntTensor_range@Base 0~20160803-g17ff317
 THIntTensor_remainder@Base 0~20160803-g17ff317
 THIntTensor_reshape@Base 0~20160803-g17ff317
 THIntTensor_resize1d@Base 0~20160803-g17ff317
 THIntTensor_resize2d@Base 0~20160803-g17ff317
 THIntTensor_resize3d@Base 0~20160803-g17ff317
 THIntTensor_resize4d@Base 0~20160803-g17ff317
 THIntTensor_resize5d@Base 0~20160803-g17ff317
 THIntTensor_resize@Base 0~20160803-g17ff317
 THIntTensor_resizeAs@Base 0~20160803-g17ff317
 THIntTensor_resizeNd@Base 0~20170304-g329dff5
 THIntTensor_retain@Base 0~20160803-g17ff317
 THIntTensor_rshift@Base 0~20170304-g329dff5
 THIntTensor_scatter@Base 0~20160803-g17ff317
 THIntTensor_scatterAdd@Base 0~20170720-gaed3171
 THIntTensor_scatterFill@Base 0~20160803-g17ff317
 THIntTensor_select@Base 0~20160803-g17ff317
 THIntTensor_set1d@Base 0~20160803-g17ff317
 THIntTensor_set2d@Base 0~20160803-g17ff317
 THIntTensor_set3d@Base 0~20160803-g17ff317
 THIntTensor_set4d@Base 0~20160803-g17ff317
 THIntTensor_set@Base 0~20160803-g17ff317
 THIntTensor_setFlag@Base 0~20160803-g17ff317
 THIntTensor_setStorage1d@Base 0~20160803-g17ff317
 THIntTensor_setStorage2d@Base 0~20160803-g17ff317
 THIntTensor_setStorage3d@Base 0~20160803-g17ff317
 THIntTensor_setStorage4d@Base 0~20160803-g17ff317
 THIntTensor_setStorage@Base 0~20160803-g17ff317
 THIntTensor_setStorageNd@Base 0~20170304-g329dff5
 THIntTensor_sign@Base 0~20160803-g17ff317
 THIntTensor_size@Base 0~20160803-g17ff317
 THIntTensor_sizeDesc@Base 0~20160803-g17ff317
 THIntTensor_sort@Base 0~20160803-g17ff317
 THIntTensor_squeeze1d@Base 0~20160803-g17ff317
 THIntTensor_squeeze@Base 0~20160803-g17ff317
 THIntTensor_storage@Base 0~20160803-g17ff317
 THIntTensor_storageOffset@Base 0~20160803-g17ff317
 THIntTensor_stride@Base 0~20160803-g17ff317
 THIntTensor_sub@Base 0~20160803-g17ff317
 THIntTensor_sum@Base 0~20160803-g17ff317
 THIntTensor_sumall@Base 0~20160803-g17ff317
 THIntTensor_topk@Base 0~20160803-g17ff317
 THIntTensor_tpow@Base 0~20160803-g17ff317
 THIntTensor_trace@Base 0~20160803-g17ff317
 THIntTensor_transpose@Base 0~20160803-g17ff317
 THIntTensor_tril@Base 0~20160803-g17ff317
 THIntTensor_triu@Base 0~20160803-g17ff317
 THIntTensor_unfold@Base 0~20160803-g17ff317
 THIntTensor_unsqueeze1d@Base 0~20170304-g329dff5
 THIntTensor_validConv2Dptr@Base 0~20160803-g17ff317
 THIntTensor_validConv3Dptr@Base 0~20160803-g17ff317
 THIntTensor_validXCorr2DRevptr@Base 0~20160803-g17ff317
 THIntTensor_validXCorr2Dptr@Base 0~20160803-g17ff317
 THIntTensor_validXCorr3DRevptr@Base 0~20160803-g17ff317
 THIntTensor_validXCorr3Dptr@Base 0~20160803-g17ff317
 THIntTensor_zero@Base 0~20160803-g17ff317
 THIntTensor_zeros@Base 0~20160803-g17ff317
 THIntTensor_zerosLike@Base 0~20170926-g89ede3b
 THIntVector_adds@Base 0~20170304-g329dff5
 THIntVector_adds_DEFAULT@Base 0~20170304-g329dff5
 THIntVector_cadd@Base 0~20170304-g329dff5
 THIntVector_cadd_DEFAULT@Base 0~20170304-g329dff5
 THIntVector_cdiv@Base 0~20170304-g329dff5
 THIntVector_cdiv_DEFAULT@Base 0~20170304-g329dff5
 THIntVector_cmul@Base 0~20170304-g329dff5
 THIntVector_cmul_DEFAULT@Base 0~20170304-g329dff5
 THIntVector_copy@Base 0~20170304-g329dff5
 THIntVector_copy_DEFAULT@Base 0~20170304-g329dff5
 THIntVector_divs@Base 0~20170304-g329dff5
 THIntVector_divs_DEFAULT@Base 0~20170304-g329dff5
 THIntVector_fill@Base 0~20160908-ge5ebac6
 THIntVector_fill_DEFAULT@Base 0~20160908-ge5ebac6
 THIntVector_muls@Base 0~20170304-g329dff5
 THIntVector_muls_DEFAULT@Base 0~20170304-g329dff5
 THIntVector_vectorDispatchInit@Base 0~20160908-ge5ebac6
 THLog1p@Base 0~20160803-g17ff317
 THLog2Pi@Base 0~20160803-g17ff317
 THLogAdd@Base 0~20160803-g17ff317
 THLogOne@Base 0~20160803-g17ff317
 THLogSub@Base 0~20160803-g17ff317
 THLogZero@Base 0~20160803-g17ff317
 THLongBlas_axpy@Base 0~20160803-g17ff317
 THLongBlas_copy@Base 0~20160803-g17ff317
 THLongBlas_dot@Base 0~20160803-g17ff317
 THLongBlas_gemm@Base 0~20160803-g17ff317
 THLongBlas_gemv@Base 0~20160803-g17ff317
 THLongBlas_ger@Base 0~20160803-g17ff317
 THLongBlas_scal@Base 0~20160803-g17ff317
 THLongBlas_swap@Base 0~20160803-g17ff317
 THLongStorage_clearFlag@Base 0~20160803-g17ff317
 THLongStorage_copy@Base 0~20160803-g17ff317
 THLongStorage_copyByte@Base 0~20160803-g17ff317
 THLongStorage_copyChar@Base 0~20160803-g17ff317
 THLongStorage_copyDouble@Base 0~20160803-g17ff317
 THLongStorage_copyFloat@Base 0~20160803-g17ff317
 THLongStorage_copyHalf@Base 0~20170106-gf624ae9
 THLongStorage_copyInt@Base 0~20160803-g17ff317
 THLongStorage_copyLong@Base 0~20160803-g17ff317
 THLongStorage_copyShort@Base 0~20160803-g17ff317
 THLongStorage_data@Base 0~20160803-g17ff317
 THLongStorage_elementSize@Base 0~20160803-g17ff317
 THLongStorage_fill@Base 0~20160803-g17ff317
 THLongStorage_free@Base 0~20160803-g17ff317
 THLongStorage_get@Base 0~20160803-g17ff317
 THLongStorage_inferExpandGeometry@Base 0~20170720-gaed3171
 THLongStorage_inferSize2@Base 0~20170720-gaed3171
 THLongStorage_inferSizeN@Base 0~20170720-gaed3171
 THLongStorage_new@Base 0~20160803-g17ff317
 THLongStorage_newInferSize@Base 0~20170304-g329dff5
 THLongStorage_newWithAllocator@Base 0~20160803-g17ff317
 THLongStorage_newWithData@Base 0~20160803-g17ff317
 THLongStorage_newWithDataAndAllocator@Base 0~20160803-g17ff317
 THLongStorage_newWithMapping@Base 0~20160803-g17ff317
 THLongStorage_newWithSize1@Base 0~20160803-g17ff317
 THLongStorage_newWithSize2@Base 0~20160803-g17ff317
 THLongStorage_newWithSize3@Base 0~20160803-g17ff317
 THLongStorage_newWithSize4@Base 0~20160803-g17ff317
 THLongStorage_newWithSize@Base 0~20160803-g17ff317
 THLongStorage_rawCopy@Base 0~20160803-g17ff317
 THLongStorage_resize@Base 0~20160803-g17ff317
 THLongStorage_retain@Base 0~20160803-g17ff317
 THLongStorage_set@Base 0~20160803-g17ff317
 THLongStorage_setFlag@Base 0~20160803-g17ff317
 THLongStorage_size@Base 0~20160803-g17ff317
 THLongStorage_sizeDesc@Base 0~20170304-g329dff5
 THLongStorage_swap@Base 0~20160908-ge5ebac6
 THLongTensor_abs@Base 0~20160803-g17ff317
 THLongTensor_add@Base 0~20160803-g17ff317
 THLongTensor_addbmm@Base 0~20160803-g17ff317
 THLongTensor_addcdiv@Base 0~20160803-g17ff317
 THLongTensor_addcmul@Base 0~20160803-g17ff317
 THLongTensor_addmm@Base 0~20160803-g17ff317
 THLongTensor_addmv@Base 0~20160803-g17ff317
 THLongTensor_addr@Base 0~20160803-g17ff317
 THLongTensor_arange@Base 0~20170720-gaed3171
 THLongTensor_baddbmm@Base 0~20160803-g17ff317
 THLongTensor_bernoulli@Base 0~20160803-g17ff317
 THLongTensor_bernoulli_DoubleTensor@Base 0~20160803-g17ff317
 THLongTensor_bernoulli_FloatTensor@Base 0~20160803-g17ff317
 THLongTensor_bitand@Base 0~20170304-g329dff5
 THLongTensor_bitor@Base 0~20170304-g329dff5
 THLongTensor_bitxor@Base 0~20170304-g329dff5
 THLongTensor_cadd@Base 0~20160803-g17ff317
 THLongTensor_cappedRandom@Base 0~20170926-g89ede3b
 THLongTensor_cat@Base 0~20160803-g17ff317
 THLongTensor_catArray@Base 0~20160803-g17ff317
 THLongTensor_cbitand@Base 0~20170304-g329dff5
 THLongTensor_cbitor@Base 0~20170304-g329dff5
 THLongTensor_cbitxor@Base 0~20170304-g329dff5
 THLongTensor_cdiv@Base 0~20160803-g17ff317
 THLongTensor_cfmod@Base 0~20160803-g17ff317
 THLongTensor_clamp@Base 0~20160803-g17ff317
 THLongTensor_clampedRandom@Base 0~20170926-g89ede3b
 THLongTensor_clearFlag@Base 0~20160803-g17ff317
 THLongTensor_clshift@Base 0~20170304-g329dff5
 THLongTensor_cmax@Base 0~20160803-g17ff317
 THLongTensor_cmaxValue@Base 0~20160803-g17ff317
 THLongTensor_cmin@Base 0~20160803-g17ff317
 THLongTensor_cminValue@Base 0~20160803-g17ff317
 THLongTensor_cmul@Base 0~20160803-g17ff317
 THLongTensor_conv2DRevger@Base 0~20160803-g17ff317
 THLongTensor_conv2DRevgerm@Base 0~20160803-g17ff317
 THLongTensor_conv2Dcmul@Base 0~20160803-g17ff317
 THLongTensor_conv2Dger@Base 0~20160803-g17ff317
 THLongTensor_conv2Dmap@Base 0~20160803-g17ff317
 THLongTensor_conv2Dmm@Base 0~20160803-g17ff317
 THLongTensor_conv2Dmul@Base 0~20160803-g17ff317
 THLongTensor_conv2Dmv@Base 0~20160803-g17ff317
 THLongTensor_conv2d@Base 0~20160803-g17ff317
 THLongTensor_conv3DRevger@Base 0~20160803-g17ff317
 THLongTensor_conv3Dcmul@Base 0~20160803-g17ff317
 THLongTensor_conv3Dger@Base 0~20160803-g17ff317
 THLongTensor_conv3Dmap@Base 0~20160803-g17ff317
 THLongTensor_conv3Dmul@Base 0~20160803-g17ff317
 THLongTensor_conv3Dmv@Base 0~20160803-g17ff317
 THLongTensor_conv3d@Base 0~20160803-g17ff317
 THLongTensor_convsize@Base 0~20160803-g17ff317
 THLongTensor_copy@Base 0~20160803-g17ff317
 THLongTensor_copyByte@Base 0~20160803-g17ff317
 THLongTensor_copyChar@Base 0~20160803-g17ff317
 THLongTensor_copyDouble@Base 0~20160803-g17ff317
 THLongTensor_copyFloat@Base 0~20160803-g17ff317
 THLongTensor_copyHalf@Base 0~20170106-gf624ae9
 THLongTensor_copyInt@Base 0~20160803-g17ff317
 THLongTensor_copyLong@Base 0~20160803-g17ff317
 THLongTensor_copyShort@Base 0~20160803-g17ff317
 THLongTensor_copyTranspose@Base 0~20170720-gaed3171
 THLongTensor_copyTransposeValid@Base 0~20170720-gaed3171
 THLongTensor_cpow@Base 0~20160803-g17ff317
 THLongTensor_cremainder@Base 0~20160803-g17ff317
 THLongTensor_cross@Base 0~20160803-g17ff317
 THLongTensor_crshift@Base 0~20170304-g329dff5
 THLongTensor_csub@Base 0~20160803-g17ff317
 THLongTensor_cumprod@Base 0~20160803-g17ff317
 THLongTensor_cumsum@Base 0~20160803-g17ff317
 THLongTensor_data@Base 0~20160803-g17ff317
 THLongTensor_desc@Base 0~20160803-g17ff317
 THLongTensor_diag@Base 0~20160803-g17ff317
 THLongTensor_div@Base 0~20160803-g17ff317
 THLongTensor_dot@Base 0~20160803-g17ff317
 THLongTensor_eqTensor@Base 0~20160803-g17ff317
 THLongTensor_eqTensorT@Base 0~20160803-g17ff317
 THLongTensor_eqValue@Base 0~20160803-g17ff317
 THLongTensor_eqValueT@Base 0~20160803-g17ff317
 THLongTensor_equal@Base 0~20160803-g17ff317
 THLongTensor_expand@Base 0~20170720-gaed3171
 THLongTensor_expandNd@Base 0~20170720-gaed3171
 THLongTensor_eye@Base 0~20160803-g17ff317
 THLongTensor_fill@Base 0~20160803-g17ff317
 THLongTensor_fmod@Base 0~20160803-g17ff317
 THLongTensor_free@Base 0~20160803-g17ff317
 THLongTensor_freeCopyTo@Base 0~20160803-g17ff317
 THLongTensor_fullConv2Dptr@Base 0~20160803-g17ff317
 THLongTensor_fullConv3Dptr@Base 0~20160803-g17ff317
 THLongTensor_fullXCorr2Dptr@Base 0~20160803-g17ff317
 THLongTensor_fullXCorr3Dptr@Base 0~20160803-g17ff317
 THLongTensor_gather@Base 0~20160803-g17ff317
 THLongTensor_geTensor@Base 0~20160803-g17ff317
 THLongTensor_geTensorT@Base 0~20160803-g17ff317
 THLongTensor_geValue@Base 0~20160803-g17ff317
 THLongTensor_geValueT@Base 0~20160803-g17ff317
 THLongTensor_geometric@Base 0~20160803-g17ff317
 THLongTensor_get1d@Base 0~20160803-g17ff317
 THLongTensor_get2d@Base 0~20160803-g17ff317
 THLongTensor_get3d@Base 0~20160803-g17ff317
 THLongTensor_get4d@Base 0~20160803-g17ff317
 THLongTensor_gtTensor@Base 0~20160803-g17ff317
 THLongTensor_gtTensorT@Base 0~20160803-g17ff317
 THLongTensor_gtValue@Base 0~20160803-g17ff317
 THLongTensor_gtValueT@Base 0~20160803-g17ff317
 THLongTensor_indexAdd@Base 0~20160803-g17ff317
 THLongTensor_indexCopy@Base 0~20160803-g17ff317
 THLongTensor_indexFill@Base 0~20160803-g17ff317
 THLongTensor_indexSelect@Base 0~20160803-g17ff317
 THLongTensor_isContiguous@Base 0~20160803-g17ff317
 THLongTensor_isSameSizeAs@Base 0~20160803-g17ff317
 THLongTensor_isSetTo@Base 0~20160803-g17ff317
 THLongTensor_isSize@Base 0~20160803-g17ff317
 THLongTensor_isTransposed@Base 0~20170304-g329dff5
 THLongTensor_kthvalue@Base 0~20160803-g17ff317
 THLongTensor_leTensor@Base 0~20160803-g17ff317
 THLongTensor_leTensorT@Base 0~20160803-g17ff317
 THLongTensor_leValue@Base 0~20160803-g17ff317
 THLongTensor_leValueT@Base 0~20160803-g17ff317
 THLongTensor_lshift@Base 0~20170304-g329dff5
 THLongTensor_ltTensor@Base 0~20160803-g17ff317
 THLongTensor_ltTensorT@Base 0~20160803-g17ff317
 THLongTensor_ltValue@Base 0~20160803-g17ff317
 THLongTensor_ltValueT@Base 0~20160803-g17ff317
 THLongTensor_maskedCopy@Base 0~20160803-g17ff317
 THLongTensor_maskedFill@Base 0~20160803-g17ff317
 THLongTensor_maskedSelect@Base 0~20160803-g17ff317
 THLongTensor_match@Base 0~20160803-g17ff317
 THLongTensor_max@Base 0~20160803-g17ff317
 THLongTensor_maxall@Base 0~20160803-g17ff317
 THLongTensor_median@Base 0~20160803-g17ff317
 THLongTensor_medianall@Base 0~20170720-gaed3171
 THLongTensor_min@Base 0~20160803-g17ff317
 THLongTensor_minall@Base 0~20160803-g17ff317
 THLongTensor_mode@Base 0~20160803-g17ff317
 THLongTensor_mul@Base 0~20160803-g17ff317
 THLongTensor_nDimension@Base 0~20160803-g17ff317
 THLongTensor_nElement@Base 0~20160803-g17ff317
 THLongTensor_narrow@Base 0~20160803-g17ff317
 THLongTensor_neTensor@Base 0~20160803-g17ff317
 THLongTensor_neTensorT@Base 0~20160803-g17ff317
 THLongTensor_neValue@Base 0~20160803-g17ff317
 THLongTensor_neValueT@Base 0~20160803-g17ff317
 THLongTensor_neg@Base 0~20170926-g89ede3b
 THLongTensor_new@Base 0~20160803-g17ff317
 THLongTensor_newClone@Base 0~20160803-g17ff317
 THLongTensor_newContiguous@Base 0~20160803-g17ff317
 THLongTensor_newExpand@Base 0~20170511-gae1a805
 THLongTensor_newNarrow@Base 0~20160803-g17ff317
 THLongTensor_newSelect@Base 0~20160803-g17ff317
 THLongTensor_newSizeOf@Base 0~20160803-g17ff317
 THLongTensor_newStrideOf@Base 0~20160803-g17ff317
 THLongTensor_newTranspose@Base 0~20160803-g17ff317
 THLongTensor_newUnfold@Base 0~20160803-g17ff317
 THLongTensor_newView@Base 0~20170304-g329dff5
 THLongTensor_newWithSize1d@Base 0~20160803-g17ff317
 THLongTensor_newWithSize2d@Base 0~20160803-g17ff317
 THLongTensor_newWithSize3d@Base 0~20160803-g17ff317
 THLongTensor_newWithSize4d@Base 0~20160803-g17ff317
 THLongTensor_newWithSize@Base 0~20160803-g17ff317
 THLongTensor_newWithStorage1d@Base 0~20160803-g17ff317
 THLongTensor_newWithStorage2d@Base 0~20160803-g17ff317
 THLongTensor_newWithStorage3d@Base 0~20160803-g17ff317
 THLongTensor_newWithStorage4d@Base 0~20160803-g17ff317
 THLongTensor_newWithStorage@Base 0~20160803-g17ff317
 THLongTensor_newWithTensor@Base 0~20160803-g17ff317
 THLongTensor_nonzero@Base 0~20160803-g17ff317
 THLongTensor_numel@Base 0~20160803-g17ff317
 THLongTensor_ones@Base 0~20160803-g17ff317
 THLongTensor_onesLike@Base 0~20170926-g89ede3b
 THLongTensor_prod@Base 0~20160803-g17ff317
 THLongTensor_prodall@Base 0~20160803-g17ff317
 THLongTensor_random@Base 0~20160803-g17ff317
 THLongTensor_randperm@Base 0~20160803-g17ff317
 THLongTensor_range@Base 0~20160803-g17ff317
 THLongTensor_remainder@Base 0~20160803-g17ff317
 THLongTensor_reshape@Base 0~20160803-g17ff317
 THLongTensor_resize1d@Base 0~20160803-g17ff317
 THLongTensor_resize2d@Base 0~20160803-g17ff317
 THLongTensor_resize3d@Base 0~20160803-g17ff317
 THLongTensor_resize4d@Base 0~20160803-g17ff317
 THLongTensor_resize5d@Base 0~20160803-g17ff317
 THLongTensor_resize@Base 0~20160803-g17ff317
 THLongTensor_resizeAs@Base 0~20160803-g17ff317
 THLongTensor_resizeNd@Base 0~20170304-g329dff5
 THLongTensor_retain@Base 0~20160803-g17ff317
 THLongTensor_rshift@Base 0~20170304-g329dff5
 THLongTensor_scatter@Base 0~20160803-g17ff317
 THLongTensor_scatterAdd@Base 0~20170720-gaed3171
 THLongTensor_scatterFill@Base 0~20160803-g17ff317
 THLongTensor_select@Base 0~20160803-g17ff317
 THLongTensor_set1d@Base 0~20160803-g17ff317
 THLongTensor_set2d@Base 0~20160803-g17ff317
 THLongTensor_set3d@Base 0~20160803-g17ff317
 THLongTensor_set4d@Base 0~20160803-g17ff317
 THLongTensor_set@Base 0~20160803-g17ff317
 THLongTensor_setFlag@Base 0~20160803-g17ff317
 THLongTensor_setStorage1d@Base 0~20160803-g17ff317
 THLongTensor_setStorage2d@Base 0~20160803-g17ff317
 THLongTensor_setStorage3d@Base 0~20160803-g17ff317
 THLongTensor_setStorage4d@Base 0~20160803-g17ff317
 THLongTensor_setStorage@Base 0~20160803-g17ff317
 THLongTensor_setStorageNd@Base 0~20170304-g329dff5
 THLongTensor_sign@Base 0~20160803-g17ff317
 THLongTensor_size@Base 0~20160803-g17ff317
 THLongTensor_sizeDesc@Base 0~20160803-g17ff317
 THLongTensor_sort@Base 0~20160803-g17ff317
 THLongTensor_squeeze1d@Base 0~20160803-g17ff317
 THLongTensor_squeeze@Base 0~20160803-g17ff317
 THLongTensor_storage@Base 0~20160803-g17ff317
 THLongTensor_storageOffset@Base 0~20160803-g17ff317
 THLongTensor_stride@Base 0~20160803-g17ff317
 THLongTensor_sub@Base 0~20160803-g17ff317
 THLongTensor_sum@Base 0~20160803-g17ff317
 THLongTensor_sumall@Base 0~20160803-g17ff317
 THLongTensor_topk@Base 0~20160803-g17ff317
 THLongTensor_tpow@Base 0~20160803-g17ff317
 THLongTensor_trace@Base 0~20160803-g17ff317
 THLongTensor_transpose@Base 0~20160803-g17ff317
 THLongTensor_tril@Base 0~20160803-g17ff317
 THLongTensor_triu@Base 0~20160803-g17ff317
 THLongTensor_unfold@Base 0~20160803-g17ff317
 THLongTensor_unsqueeze1d@Base 0~20170304-g329dff5
 THLongTensor_validConv2Dptr@Base 0~20160803-g17ff317
 THLongTensor_validConv3Dptr@Base 0~20160803-g17ff317
 THLongTensor_validXCorr2DRevptr@Base 0~20160803-g17ff317
 THLongTensor_validXCorr2Dptr@Base 0~20160803-g17ff317
 THLongTensor_validXCorr3DRevptr@Base 0~20160803-g17ff317
 THLongTensor_validXCorr3Dptr@Base 0~20160803-g17ff317
 THLongTensor_zero@Base 0~20160803-g17ff317
 THLongTensor_zeros@Base 0~20160803-g17ff317
 THLongTensor_zerosLike@Base 0~20170926-g89ede3b
 THLongVector_adds@Base 0~20170304-g329dff5
 THLongVector_adds_DEFAULT@Base 0~20170304-g329dff5
 THLongVector_cadd@Base 0~20170304-g329dff5
 THLongVector_cadd_DEFAULT@Base 0~20170304-g329dff5
 THLongVector_cdiv@Base 0~20170304-g329dff5
 THLongVector_cdiv_DEFAULT@Base 0~20170304-g329dff5
 THLongVector_cmul@Base 0~20170304-g329dff5
 THLongVector_cmul_DEFAULT@Base 0~20170304-g329dff5
 THLongVector_copy@Base 0~20170304-g329dff5
 THLongVector_copy_DEFAULT@Base 0~20170304-g329dff5
 THLongVector_divs@Base 0~20170304-g329dff5
 THLongVector_divs_DEFAULT@Base 0~20170304-g329dff5
 THLongVector_fill@Base 0~20160908-ge5ebac6
 THLongVector_fill_DEFAULT@Base 0~20160908-ge5ebac6
 THLongVector_muls@Base 0~20170304-g329dff5
 THLongVector_muls_DEFAULT@Base 0~20170304-g329dff5
 THLongVector_vectorDispatchInit@Base 0~20160908-ge5ebac6
 THMapAllocator@Base 0~20160803-g17ff317
 THMapAllocatorContext_fd@Base 0~20160908-ge5ebac6
 THMapAllocatorContext_filename@Base 0~20160908-ge5ebac6
 THMapAllocatorContext_free@Base 0~20160803-g17ff317
 THMapAllocatorContext_new@Base 0~20160803-g17ff317
 THMapAllocatorContext_newWithFd@Base 0~20160908-ge5ebac6
 THMapAllocatorContext_size@Base 0~20160803-g17ff317
 THMemoryFile_longSize@Base 0~20160803-g17ff317
 THMemoryFile_new@Base 0~20160803-g17ff317
 THMemoryFile_newWithStorage@Base 0~20160803-g17ff317
 THMemoryFile_storage@Base 0~20160803-g17ff317
 THPipeFile_new@Base 0~20160803-g17ff317
 THRandom_bernoulli@Base 0~20160803-g17ff317
 THRandom_cauchy@Base 0~20160803-g17ff317
 THRandom_exponential@Base 0~20160803-g17ff317
 THRandom_geometric@Base 0~20160803-g17ff317
 THRandom_initialSeed@Base 0~20160803-g17ff317
 THRandom_logNormal@Base 0~20160803-g17ff317
 THRandom_manualSeed@Base 0~20160803-g17ff317
 THRandom_nextState@Base 0~20160803-g17ff317
 THRandom_normal@Base 0~20160803-g17ff317
 THRandom_random@Base 0~20160803-g17ff317
 THRandom_seed@Base 0~20160803-g17ff317
 THRandom_uniform@Base 0~20160803-g17ff317
 THRealloc@Base 0~20160803-g17ff317
 THRefcountedMapAllocator@Base 0~20160908-ge5ebac6
 THRefcountedMapAllocator_decref@Base 0~20160908-ge5ebac6
 THRefcountedMapAllocator_incref@Base 0~20160908-ge5ebac6
 THSetArgErrorHandler@Base 0~20160803-g17ff317
 THSetDefaultArgErrorHandler@Base 0~20161002-geb397ad
 THSetDefaultErrorHandler@Base 0~20161002-geb397ad
 THSetErrorHandler@Base 0~20160803-g17ff317
 THSetGCHandler@Base 0~20160803-g17ff317
 THSetNumThreads@Base 0~20161115-g552b086
 THShortBlas_axpy@Base 0~20160803-g17ff317
 THShortBlas_copy@Base 0~20160803-g17ff317
 THShortBlas_dot@Base 0~20160803-g17ff317
 THShortBlas_gemm@Base 0~20160803-g17ff317
 THShortBlas_gemv@Base 0~20160803-g17ff317
 THShortBlas_ger@Base 0~20160803-g17ff317
 THShortBlas_scal@Base 0~20160803-g17ff317
 THShortBlas_swap@Base 0~20160803-g17ff317
 THShortStorage_clearFlag@Base 0~20160803-g17ff317
 THShortStorage_copy@Base 0~20160803-g17ff317
 THShortStorage_copyByte@Base 0~20160803-g17ff317
 THShortStorage_copyChar@Base 0~20160803-g17ff317
 THShortStorage_copyDouble@Base 0~20160803-g17ff317
 THShortStorage_copyFloat@Base 0~20160803-g17ff317
 THShortStorage_copyHalf@Base 0~20170106-gf624ae9
 THShortStorage_copyInt@Base 0~20160803-g17ff317
 THShortStorage_copyLong@Base 0~20160803-g17ff317
 THShortStorage_copyShort@Base 0~20160803-g17ff317
 THShortStorage_data@Base 0~20160803-g17ff317
 THShortStorage_elementSize@Base 0~20160803-g17ff317
 THShortStorage_fill@Base 0~20160803-g17ff317
 THShortStorage_free@Base 0~20160803-g17ff317
 THShortStorage_get@Base 0~20160803-g17ff317
 THShortStorage_new@Base 0~20160803-g17ff317
 THShortStorage_newWithAllocator@Base 0~20160803-g17ff317
 THShortStorage_newWithData@Base 0~20160803-g17ff317
 THShortStorage_newWithDataAndAllocator@Base 0~20160803-g17ff317
 THShortStorage_newWithMapping@Base 0~20160803-g17ff317
 THShortStorage_newWithSize1@Base 0~20160803-g17ff317
 THShortStorage_newWithSize2@Base 0~20160803-g17ff317
 THShortStorage_newWithSize3@Base 0~20160803-g17ff317
 THShortStorage_newWithSize4@Base 0~20160803-g17ff317
 THShortStorage_newWithSize@Base 0~20160803-g17ff317
 THShortStorage_rawCopy@Base 0~20160803-g17ff317
 THShortStorage_resize@Base 0~20160803-g17ff317
 THShortStorage_retain@Base 0~20160803-g17ff317
 THShortStorage_set@Base 0~20160803-g17ff317
 THShortStorage_setFlag@Base 0~20160803-g17ff317
 THShortStorage_size@Base 0~20160803-g17ff317
 THShortStorage_swap@Base 0~20160908-ge5ebac6
 THShortTensor_abs@Base 0~20170511-gae1a805
 THShortTensor_add@Base 0~20160803-g17ff317
 THShortTensor_addbmm@Base 0~20160803-g17ff317
 THShortTensor_addcdiv@Base 0~20160803-g17ff317
 THShortTensor_addcmul@Base 0~20160803-g17ff317
 THShortTensor_addmm@Base 0~20160803-g17ff317
 THShortTensor_addmv@Base 0~20160803-g17ff317
 THShortTensor_addr@Base 0~20160803-g17ff317
 THShortTensor_arange@Base 0~20170720-gaed3171
 THShortTensor_baddbmm@Base 0~20160803-g17ff317
 THShortTensor_bernoulli@Base 0~20160803-g17ff317
 THShortTensor_bernoulli_DoubleTensor@Base 0~20160803-g17ff317
 THShortTensor_bernoulli_FloatTensor@Base 0~20160803-g17ff317
 THShortTensor_bitand@Base 0~20170304-g329dff5
 THShortTensor_bitor@Base 0~20170304-g329dff5
 THShortTensor_bitxor@Base 0~20170304-g329dff5
 THShortTensor_cadd@Base 0~20160803-g17ff317
 THShortTensor_cappedRandom@Base 0~20170926-g89ede3b
 THShortTensor_cat@Base 0~20160803-g17ff317
 THShortTensor_catArray@Base 0~20160803-g17ff317
 THShortTensor_cbitand@Base 0~20170304-g329dff5
 THShortTensor_cbitor@Base 0~20170304-g329dff5
 THShortTensor_cbitxor@Base 0~20170304-g329dff5
 THShortTensor_cdiv@Base 0~20160803-g17ff317
 THShortTensor_cfmod@Base 0~20160803-g17ff317
 THShortTensor_clamp@Base 0~20160803-g17ff317
 THShortTensor_clampedRandom@Base 0~20170926-g89ede3b
 THShortTensor_clearFlag@Base 0~20160803-g17ff317
 THShortTensor_clshift@Base 0~20170304-g329dff5
 THShortTensor_cmax@Base 0~20160803-g17ff317
 THShortTensor_cmaxValue@Base 0~20160803-g17ff317
 THShortTensor_cmin@Base 0~20160803-g17ff317
 THShortTensor_cminValue@Base 0~20160803-g17ff317
 THShortTensor_cmul@Base 0~20160803-g17ff317
 THShortTensor_conv2DRevger@Base 0~20160803-g17ff317
 THShortTensor_conv2DRevgerm@Base 0~20160803-g17ff317
 THShortTensor_conv2Dcmul@Base 0~20160803-g17ff317
 THShortTensor_conv2Dger@Base 0~20160803-g17ff317
 THShortTensor_conv2Dmap@Base 0~20160803-g17ff317
 THShortTensor_conv2Dmm@Base 0~20160803-g17ff317
 THShortTensor_conv2Dmul@Base 0~20160803-g17ff317
 THShortTensor_conv2Dmv@Base 0~20160803-g17ff317
 THShortTensor_conv2d@Base 0~20160803-g17ff317
 THShortTensor_conv3DRevger@Base 0~20160803-g17ff317
 THShortTensor_conv3Dcmul@Base 0~20160803-g17ff317
 THShortTensor_conv3Dger@Base 0~20160803-g17ff317
 THShortTensor_conv3Dmap@Base 0~20160803-g17ff317
 THShortTensor_conv3Dmul@Base 0~20160803-g17ff317
 THShortTensor_conv3Dmv@Base 0~20160803-g17ff317
 THShortTensor_conv3d@Base 0~20160803-g17ff317
 THShortTensor_convsize@Base 0~20160803-g17ff317
 THShortTensor_copy@Base 0~20160803-g17ff317
 THShortTensor_copyByte@Base 0~20160803-g17ff317
 THShortTensor_copyChar@Base 0~20160803-g17ff317
 THShortTensor_copyDouble@Base 0~20160803-g17ff317
 THShortTensor_copyFloat@Base 0~20160803-g17ff317
 THShortTensor_copyHalf@Base 0~20170106-gf624ae9
 THShortTensor_copyInt@Base 0~20160803-g17ff317
 THShortTensor_copyLong@Base 0~20160803-g17ff317
 THShortTensor_copyShort@Base 0~20160803-g17ff317
 THShortTensor_copyTranspose@Base 0~20170720-gaed3171
 THShortTensor_copyTransposeValid@Base 0~20170720-gaed3171
 THShortTensor_cpow@Base 0~20160803-g17ff317
 THShortTensor_cremainder@Base 0~20160803-g17ff317
 THShortTensor_cross@Base 0~20160803-g17ff317
 THShortTensor_crshift@Base 0~20170304-g329dff5
 THShortTensor_csub@Base 0~20160803-g17ff317
 THShortTensor_cumprod@Base 0~20160803-g17ff317
 THShortTensor_cumsum@Base 0~20160803-g17ff317
 THShortTensor_data@Base 0~20160803-g17ff317
 THShortTensor_desc@Base 0~20160803-g17ff317
 THShortTensor_diag@Base 0~20160803-g17ff317
 THShortTensor_div@Base 0~20160803-g17ff317
 THShortTensor_dot@Base 0~20160803-g17ff317
 THShortTensor_eqTensor@Base 0~20160803-g17ff317
 THShortTensor_eqTensorT@Base 0~20160803-g17ff317
 THShortTensor_eqValue@Base 0~20160803-g17ff317
 THShortTensor_eqValueT@Base 0~20160803-g17ff317
 THShortTensor_equal@Base 0~20160803-g17ff317
 THShortTensor_expand@Base 0~20170720-gaed3171
 THShortTensor_expandNd@Base 0~20170720-gaed3171
 THShortTensor_eye@Base 0~20160803-g17ff317
 THShortTensor_fill@Base 0~20160803-g17ff317
 THShortTensor_fmod@Base 0~20160803-g17ff317
 THShortTensor_free@Base 0~20160803-g17ff317
 THShortTensor_freeCopyTo@Base 0~20160803-g17ff317
 THShortTensor_fullConv2Dptr@Base 0~20160803-g17ff317
 THShortTensor_fullConv3Dptr@Base 0~20160803-g17ff317
 THShortTensor_fullXCorr2Dptr@Base 0~20160803-g17ff317
 THShortTensor_fullXCorr3Dptr@Base 0~20160803-g17ff317
 THShortTensor_gather@Base 0~20160803-g17ff317
 THShortTensor_geTensor@Base 0~20160803-g17ff317
 THShortTensor_geTensorT@Base 0~20160803-g17ff317
 THShortTensor_geValue@Base 0~20160803-g17ff317
 THShortTensor_geValueT@Base 0~20160803-g17ff317
 THShortTensor_geometric@Base 0~20160803-g17ff317
 THShortTensor_get1d@Base 0~20160803-g17ff317
 THShortTensor_get2d@Base 0~20160803-g17ff317
 THShortTensor_get3d@Base 0~20160803-g17ff317
 THShortTensor_get4d@Base 0~20160803-g17ff317
 THShortTensor_gtTensor@Base 0~20160803-g17ff317
 THShortTensor_gtTensorT@Base 0~20160803-g17ff317
 THShortTensor_gtValue@Base 0~20160803-g17ff317
 THShortTensor_gtValueT@Base 0~20160803-g17ff317
 THShortTensor_indexAdd@Base 0~20160803-g17ff317
 THShortTensor_indexCopy@Base 0~20160803-g17ff317
 THShortTensor_indexFill@Base 0~20160803-g17ff317
 THShortTensor_indexSelect@Base 0~20160803-g17ff317
 THShortTensor_isContiguous@Base 0~20160803-g17ff317
 THShortTensor_isSameSizeAs@Base 0~20160803-g17ff317
 THShortTensor_isSetTo@Base 0~20160803-g17ff317
 THShortTensor_isSize@Base 0~20160803-g17ff317
 THShortTensor_isTransposed@Base 0~20170304-g329dff5
 THShortTensor_kthvalue@Base 0~20160803-g17ff317
 THShortTensor_leTensor@Base 0~20160803-g17ff317
 THShortTensor_leTensorT@Base 0~20160803-g17ff317
 THShortTensor_leValue@Base 0~20160803-g17ff317
 THShortTensor_leValueT@Base 0~20160803-g17ff317
 THShortTensor_lshift@Base 0~20170304-g329dff5
 THShortTensor_ltTensor@Base 0~20160803-g17ff317
 THShortTensor_ltTensorT@Base 0~20160803-g17ff317
 THShortTensor_ltValue@Base 0~20160803-g17ff317
 THShortTensor_ltValueT@Base 0~20160803-g17ff317
 THShortTensor_maskedCopy@Base 0~20160803-g17ff317
 THShortTensor_maskedFill@Base 0~20160803-g17ff317
 THShortTensor_maskedSelect@Base 0~20160803-g17ff317
 THShortTensor_match@Base 0~20160803-g17ff317
 THShortTensor_max@Base 0~20160803-g17ff317
 THShortTensor_maxall@Base 0~20160803-g17ff317
 THShortTensor_median@Base 0~20160803-g17ff317
 THShortTensor_medianall@Base 0~20170720-gaed3171
 THShortTensor_min@Base 0~20160803-g17ff317
 THShortTensor_minall@Base 0~20160803-g17ff317
 THShortTensor_mode@Base 0~20160803-g17ff317
 THShortTensor_mul@Base 0~20160803-g17ff317
 THShortTensor_nDimension@Base 0~20160803-g17ff317
 THShortTensor_nElement@Base 0~20160803-g17ff317
 THShortTensor_narrow@Base 0~20160803-g17ff317
 THShortTensor_neTensor@Base 0~20160803-g17ff317
 THShortTensor_neTensorT@Base 0~20160803-g17ff317
 THShortTensor_neValue@Base 0~20160803-g17ff317
 THShortTensor_neValueT@Base 0~20160803-g17ff317
 THShortTensor_neg@Base 0~20170926-g89ede3b
 THShortTensor_new@Base 0~20160803-g17ff317
 THShortTensor_newClone@Base 0~20160803-g17ff317
 THShortTensor_newContiguous@Base 0~20160803-g17ff317
 THShortTensor_newExpand@Base 0~20170511-gae1a805
 THShortTensor_newNarrow@Base 0~20160803-g17ff317
 THShortTensor_newSelect@Base 0~20160803-g17ff317
 THShortTensor_newSizeOf@Base 0~20160803-g17ff317
 THShortTensor_newStrideOf@Base 0~20160803-g17ff317
 THShortTensor_newTranspose@Base 0~20160803-g17ff317
 THShortTensor_newUnfold@Base 0~20160803-g17ff317
 THShortTensor_newView@Base 0~20170304-g329dff5
 THShortTensor_newWithSize1d@Base 0~20160803-g17ff317
 THShortTensor_newWithSize2d@Base 0~20160803-g17ff317
 THShortTensor_newWithSize3d@Base 0~20160803-g17ff317
 THShortTensor_newWithSize4d@Base 0~20160803-g17ff317
 THShortTensor_newWithSize@Base 0~20160803-g17ff317
 THShortTensor_newWithStorage1d@Base 0~20160803-g17ff317
 THShortTensor_newWithStorage2d@Base 0~20160803-g17ff317
 THShortTensor_newWithStorage3d@Base 0~20160803-g17ff317
 THShortTensor_newWithStorage4d@Base 0~20160803-g17ff317
 THShortTensor_newWithStorage@Base 0~20160803-g17ff317
 THShortTensor_newWithTensor@Base 0~20160803-g17ff317
 THShortTensor_nonzero@Base 0~20160803-g17ff317
 THShortTensor_numel@Base 0~20160803-g17ff317
 THShortTensor_ones@Base 0~20160803-g17ff317
 THShortTensor_onesLike@Base 0~20170926-g89ede3b
 THShortTensor_prod@Base 0~20160803-g17ff317
 THShortTensor_prodall@Base 0~20160803-g17ff317
 THShortTensor_random@Base 0~20160803-g17ff317
 THShortTensor_randperm@Base 0~20160803-g17ff317
 THShortTensor_range@Base 0~20160803-g17ff317
 THShortTensor_remainder@Base 0~20160803-g17ff317
 THShortTensor_reshape@Base 0~20160803-g17ff317
 THShortTensor_resize1d@Base 0~20160803-g17ff317
 THShortTensor_resize2d@Base 0~20160803-g17ff317
 THShortTensor_resize3d@Base 0~20160803-g17ff317
 THShortTensor_resize4d@Base 0~20160803-g17ff317
 THShortTensor_resize5d@Base 0~20160803-g17ff317
 THShortTensor_resize@Base 0~20160803-g17ff317
 THShortTensor_resizeAs@Base 0~20160803-g17ff317
 THShortTensor_resizeNd@Base 0~20170304-g329dff5
 THShortTensor_retain@Base 0~20160803-g17ff317
 THShortTensor_rshift@Base 0~20170304-g329dff5
 THShortTensor_scatter@Base 0~20160803-g17ff317
 THShortTensor_scatterAdd@Base 0~20170720-gaed3171
 THShortTensor_scatterFill@Base 0~20160803-g17ff317
 THShortTensor_select@Base 0~20160803-g17ff317
 THShortTensor_set1d@Base 0~20160803-g17ff317
 THShortTensor_set2d@Base 0~20160803-g17ff317
 THShortTensor_set3d@Base 0~20160803-g17ff317
 THShortTensor_set4d@Base 0~20160803-g17ff317
 THShortTensor_set@Base 0~20160803-g17ff317
 THShortTensor_setFlag@Base 0~20160803-g17ff317
 THShortTensor_setStorage1d@Base 0~20160803-g17ff317
 THShortTensor_setStorage2d@Base 0~20160803-g17ff317
 THShortTensor_setStorage3d@Base 0~20160803-g17ff317
 THShortTensor_setStorage4d@Base 0~20160803-g17ff317
 THShortTensor_setStorage@Base 0~20160803-g17ff317
 THShortTensor_setStorageNd@Base 0~20170304-g329dff5
 THShortTensor_sign@Base 0~20160803-g17ff317
 THShortTensor_size@Base 0~20160803-g17ff317
 THShortTensor_sizeDesc@Base 0~20160803-g17ff317
 THShortTensor_sort@Base 0~20160803-g17ff317
 THShortTensor_squeeze1d@Base 0~20160803-g17ff317
 THShortTensor_squeeze@Base 0~20160803-g17ff317
 THShortTensor_storage@Base 0~20160803-g17ff317
 THShortTensor_storageOffset@Base 0~20160803-g17ff317
 THShortTensor_stride@Base 0~20160803-g17ff317
 THShortTensor_sub@Base 0~20160803-g17ff317
 THShortTensor_sum@Base 0~20160803-g17ff317
 THShortTensor_sumall@Base 0~20160803-g17ff317
 THShortTensor_topk@Base 0~20160803-g17ff317
 THShortTensor_tpow@Base 0~20160803-g17ff317
 THShortTensor_trace@Base 0~20160803-g17ff317
 THShortTensor_transpose@Base 0~20160803-g17ff317
 THShortTensor_tril@Base 0~20160803-g17ff317
 THShortTensor_triu@Base 0~20160803-g17ff317
 THShortTensor_unfold@Base 0~20160803-g17ff317
 THShortTensor_unsqueeze1d@Base 0~20170304-g329dff5
 THShortTensor_validConv2Dptr@Base 0~20160803-g17ff317
 THShortTensor_validConv3Dptr@Base 0~20160803-g17ff317
 THShortTensor_validXCorr2DRevptr@Base 0~20160803-g17ff317
 THShortTensor_validXCorr2Dptr@Base 0~20160803-g17ff317
 THShortTensor_validXCorr3DRevptr@Base 0~20160803-g17ff317
 THShortTensor_validXCorr3Dptr@Base 0~20160803-g17ff317
 THShortTensor_zero@Base 0~20160803-g17ff317
 THShortTensor_zeros@Base 0~20160803-g17ff317
 THShortTensor_zerosLike@Base 0~20170926-g89ede3b
 THShortVector_adds@Base 0~20170304-g329dff5
 THShortVector_adds_DEFAULT@Base 0~20170304-g329dff5
 THShortVector_cadd@Base 0~20170304-g329dff5
 THShortVector_cadd_DEFAULT@Base 0~20170304-g329dff5
 THShortVector_cdiv@Base 0~20170304-g329dff5
 THShortVector_cdiv_DEFAULT@Base 0~20170304-g329dff5
 THShortVector_cmul@Base 0~20170304-g329dff5
 THShortVector_cmul_DEFAULT@Base 0~20170304-g329dff5
 THShortVector_copy@Base 0~20170304-g329dff5
 THShortVector_copy_DEFAULT@Base 0~20170304-g329dff5
 THShortVector_divs@Base 0~20170304-g329dff5
 THShortVector_divs_DEFAULT@Base 0~20170304-g329dff5
 THShortVector_fill@Base 0~20160908-ge5ebac6
 THShortVector_fill_DEFAULT@Base 0~20160908-ge5ebac6
 THShortVector_muls@Base 0~20170304-g329dff5
 THShortVector_muls_DEFAULT@Base 0~20170304-g329dff5
 THShortVector_vectorDispatchInit@Base 0~20160908-ge5ebac6
 THSize_isSameSizeAs@Base 0~20170720-gaed3171
 THSize_nElement@Base 0~20170720-gaed3171
 TH_float2half@Base 0~20170106-gf624ae9
 TH_float2halfbits@Base 0~20170203-g68f34f6
 TH_half2float@Base 0~20170106-gf624ae9
 TH_halfbits2float@Base 0~20170203-g68f34f6
 _THArgCheck@Base 0~20160803-g17ff317
 _THAssertionFailed@Base 0~20160803-g17ff317
 _THError@Base 0~20160803-g17ff317
 _THSizeDesc@Base 0~20170720-gaed3171
 (optional)convolve_5x5@Base 0~20170511-gae1a805
 (optional)convolve_5x5_16x16_avx@Base 0~20170511-gae1a805
 (optional)convolve_5x5_1_avx@Base 0~20170511-gae1a805
 (optional)convolve_5x5_1_sse@Base 0~20170511-gae1a805
 (optional)convolve_5x5_2_avx@Base 0~20170511-gae1a805
 (optional)convolve_5x5_2_sse@Base 0~20170511-gae1a805
 (optional)convolve_5x5_32x32_avx@Base 0~20170511-gae1a805
 (optional)convolve_5x5_4_avx@Base 0~20170511-gae1a805
 (optional)convolve_5x5_4_sse@Base 0~20170511-gae1a805
 (optional)convolve_5x5_5_avx@Base 0~20170511-gae1a805
 (optional)convolve_5x5_64x64_avx@Base 0~20170511-gae1a805
 (optional)convolve_5x5_6_avx@Base 0~20170511-gae1a805
 (optional)convolve_5x5_6_sse@Base 0~20170511-gae1a805
 (optional)convolve_5x5_7_avx@Base 0~20170511-gae1a805
 (optional)convolve_5x5_8_avx@Base 0~20170511-gae1a805
 (optional)convolve_5x5_8_sse@Base 0~20170511-gae1a805
 (optional)convolve_5x5_8x8_avx@Base 0~20170511-gae1a805
 (optional)convolve_5x5_avx@Base 0~20170511-gae1a805
 (optional)convolve_5x5_sse@Base 0~20170511-gae1a805
 unknown_filename@Base 0~20160908-ge5ebac6