summaryrefslogtreecommitdiff
path: root/test/test_jit.py
AgeCommit message (Expand)AuthorFilesLines
2018-09-05Handling for py2/py3 division differences (#11016)Richard Zou1-5/+51
2018-09-05Add import export step to end to end testsRoy Li1-7/+9
2018-09-05Port PackedSequences functions to C++ (#11224)Adam Paszke1-20/+0
2018-09-05Treat numerical differences as warnings instead of errors when tracing (#11246)Adam Paszke1-19/+36
2018-09-04Report an error when trying to record a mutable operator when (#11129)Zachary DeVito1-31/+55
2018-09-04Logical short circuit (#11116)Elias Ellison1-0/+26
2018-09-02improve docker packages, fix bugs, enable tests, enable FFT (#10893)iotamudelta1-0/+10
2018-09-01Dont optimize slicing dispatch when we are tracing (#11156)James Reed1-0/+8
2018-08-31Traceable detach (#11038)James Reed1-0/+37
2018-08-31Warn about non-traceable behavior when tracing (#11088)Adam Paszke1-1/+38
2018-08-31Fix a bug in addmm fusion in the JIT (#11100)Adam Paszke1-0/+9
2018-08-30Change specialization rules in GraphExecutors (#10977)Adam Paszke1-8/+11
2018-08-30Don't flatten output lists in the JIT IR (#10949)Adam Paszke1-22/+13
2018-08-30Change torch.jit.trace to no longer be a decorator (#11069)Zachary DeVito1-69/+74
2018-08-30Add ATen pdist CPU kernel (#10782)Erik Brinkman1-0/+9
2018-08-29Record tensor factory functions in trace (#10935)Zachary DeVito1-4/+24
2018-08-29Make it possible to disable JIT using env variables (#10867)Adam Paszke1-0/+22
2018-08-28Sanity checks for tracing (#10841)James Reed1-8/+72
2018-08-28Resolve builtins using a dict rather than by name (#10927)Zachary DeVito1-3/+12
2018-08-27Fix negative indices in tracer (#10560)Elias Ellison1-0/+36
2018-08-27Tuples/Lists can now be inputs/outputs to script and other simple fixes. (#10...Zachary DeVito1-21/+34
2018-08-27fix xfails involving literals (#10905)Richard Zou1-17/+13
2018-08-27Remove FIXME_zerol() from test_jit.py (#10900)Richard Zou1-78/+54
2018-08-26Prevent JIT from overspecializing to every single size configuration (#10844)Adam Paszke1-5/+20
2018-08-24fix ivalue printing for lists (#10777)Elias Ellison1-1/+1
2018-08-24If none of the schema match, add ImplicitTensorToNum conversions where needed...Elias Ellison1-4/+63
2018-08-24Support multidimensional indexing (#10787)Richard Zou1-0/+73
2018-08-23Add support for vararg style functions. (#10250)Zachary DeVito1-2/+8
2018-08-22Force types on values returned from if blocks to be equivalent (#10281)Elias Ellison1-0/+74
2018-08-22Allow tracing functions that take tuples of tensors as inputs (#10637)Adam Paszke1-10/+13
2018-08-22Relax RHS type assert for augassign (#10730)Richard Zou1-0/+8
2018-08-22Erase ListConstruct nodes for ONNX export (#10713)James Reed1-0/+12
2018-08-20Make empty list literals construct empty Tensor[] (#10705)Michael Suo1-1/+1
2018-08-20Allow method-style casts on tensors (#10641)James Reed1-0/+16
2018-08-18Move at::chunk into the graph fuser (#10178)Richard Zou1-0/+78
2018-08-17graph fuser inserts explicit expands where necessary (#10325)Richard Zou1-0/+15
2018-08-17Fuse tensor-scalar ops when scalar is constant (#10511)Richard Zou1-0/+26
2018-08-17Add nn functional tests in JIT (#10409)Wanchao Liang1-12/+223
2018-08-17Adding support for inlining if branches (#10084)Elias Ellison1-15/+24
2018-08-16Build mechanism for custom operators (#10226)Peter Goldsborough1-13/+24
2018-08-16Perform CSE across block boundaries. (#10105)Owen Anderson1-0/+14
2018-08-14Unified type annotation parsing for script frontends (#10279)James Reed1-1/+206
2018-08-14Add LSTMCell backward pass expect tests (#10506)Richard Zou1-2/+101
2018-08-14Schema-based creation of graph nodes (#10198)Zachary DeVito1-13/+13
2018-08-13Fix prim::FusedConcat bug (#10466)Richard Zou1-0/+18
2018-08-13improve use of ROCm libraries, enable more tests, small fixes (#10406)iotamudelta1-13/+13
2018-08-10Use serialization container in ir import export (#10394)Roy Li1-28/+23
2018-08-09support list slicing (#10318)Michael Suo1-0/+36
2018-08-07fix off-by-one bug in open-ended slicing (#10286)Michael Suo1-0/+5
2018-08-07Support some basic list operations (#10225)Michael Suo1-11/+128