Commit Graph

652 Commits

Author SHA1 Message Date
3aa7ee6fe6 Updating submodules
Reviewed By: yns88

fbshipit-source-id: 17161d7e1e742b402715f8ed006e5b3abfa78561
2019-05-23 20:40:14 -07:00
cfb6c4a8ee Updating submodules
Reviewed By: yns88

fbshipit-source-id: 58b230ad12620032f391733c7f9c1e44aeaa390b
2019-05-23 19:49:06 -07:00
810816a1f9 Automatic update of fbcode/onnx to cc2333a3f929caca7223b98699237f19388dd585 (#20763)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/20763

Previous import was ead449a30d026a7a0a59e2ba0a42ca8e52ec2359

Included changes:
- **[cc2333a3](https://github.com/onnx/onnx/commit/cc2333a3)**: Version Conversion of Min, Max, Mean from opset 7 to 8 (#2032) <Ksenija Stanojevic>
- **[5d0975f4](https://github.com/onnx/onnx/commit/5d0975f4)**: Fix auto_pad shape inference bug (#2028) <stevenlix>
- **[819afd05](https://github.com/onnx/onnx/commit/819afd05)**: Version Conversion from opset 8 to 9 (#2007) <Ksenija Stanojevic>
- **[6c913669](https://github.com/onnx/onnx/commit/6c913669)**: fix macro ONNX_DISALLOW_COPY_AND_ASSIGN bug (#2017) <one-hello>

Reviewed By: BIT-silence

Differential Revision: D15425957

fbshipit-source-id: b799357930e8c9421e9bfcbfd97907e086862a6d
2019-05-22 11:37:01 -07:00
980982ac09 Updating submodules
Reviewed By: cdelahousse

fbshipit-source-id: d0158f7e77a915ffbc28c10de8864d2ae9b24e6f
2019-05-16 16:06:55 -07:00
75d04900fe Updating submodules
Reviewed By: cdelahousse

fbshipit-source-id: 2ee799db589f63e7b9336a02d047afcc768e8b58
2019-05-16 09:48:39 -07:00
428104c60a Automatic update of fbcode/onnx to ead449a30d026a7a0a59e2ba0a42ca8e52ec2359 (#20542)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/20542

Previous import was e08efaa35ed54362dfa283240506c003175889b7

Included changes:
- **[ead449a3](https://github.com/onnx/onnx/commit/ead449a3)**: fix array range bug (#2015) <one-hello>
- **[0442d426](https://github.com/onnx/onnx/commit/0442d426)**: Relax constraint on subgraph input/output type and shape (#2009) <Bowen Bao>

Reviewed By: zrphercule

Differential Revision: D15350320

fbshipit-source-id: 2cc5db926785cda0b79efb6747da3900361dba76
2019-05-15 15:12:59 -07:00
ea13b53856 Updating submodules
Reviewed By: cdelahousse

fbshipit-source-id: 63e9b4a8cf5b15a6ba20d1946aac36c1604d8079
2019-05-14 19:02:43 -07:00
b46a630836 Update Sleef to include fix for FMA4 detection (#20450)
Summary:
FMA4 support is in bit 16 of register ECX, not EDX of the "extended
processor info" (0x80000001).

Once we verify that this change fixes https://github.com/pytorch/pytorch/issues/12112, I'll make a PR for upstream Sleef.

The mapping of registers to reg is:

```
  reg[0] = eax
  reg[1] = ebx
  reg[2] = ecx <---
  reg[3] = edx
```

Bit 16 of EDX is PAT (Page Attribute Table) on AMD CPUs, which is widely
supported. Intel CPUs do not set this bit. This causes "Illegal
instruction"
errors on AMD CPUs that do not support FMA4.

See https://github.com/pytorch/pytorch/issues/12112
See https://github.com/shibatch/sleef/issues/261

http://developer.amd.com/wordpress/media/2012/10/254811.pdf (Page 20)
Pull Request resolved: https://github.com/pytorch/pytorch/pull/20450

Differential Revision: D15324405

Pulled By: colesbury

fbshipit-source-id: 96fb344c646998ff5da19e4cdbf493f5a4e9892a
2019-05-14 08:33:18 -07:00
2dc9152dbe Automatic update of fbcode/onnx to e08efaa35ed54362dfa283240506c003175889b7 (#20443)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/20443

Previous import was 5bde6371620b76302864bce90f521d72eda95d0e

Included changes:
- **[e08efaa3](https://github.com/onnx/onnx/commit/e08efaa3)**: Fix shape inference logic for TopK operator (#2005) <Hariharan Seshadri>
- **[d80ea947](https://github.com/onnx/onnx/commit/d80ea947)**: Nullary variadic (#1889) <G. Ramalingam>
- **[50dc186b](https://github.com/onnx/onnx/commit/50dc186b)**: Removed setting MD/MDd flags manually through cmake. The MTd/MT part is still necessary. Looks like CI fails without it. (#1995) <Alexander Yermolovich>
- **[e7f81c5e](https://github.com/onnx/onnx/commit/e7f81c5e)**: Move NonMaxSupression to object_detection folder (#2001) <Hector Li>
- **[86ab4517](https://github.com/onnx/onnx/commit/86ab4517)**: Prevent using invalid iterator, fix arithmetics. (#2004) <Dmitri Smirnov>

Reviewed By: zrphercule

Differential Revision: D15302141

fbshipit-source-id: 146c346c188934e5125371b261ecfde93b4aa166
2019-05-13 14:47:11 -07:00
48e649b803 Automatic update of fbcode/onnx to 5bde6371620b76302864bce90f521d72eda95d0e (#20232)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/20232

Previous import was 7d7bc83d29a328233d3e8affa4c4ea8b3e3599ef

Included changes:
- **[5bde6371](https://github.com/onnx/onnx/commit/5bde6371)**: Add shape inference for legacy auto_pad modes (#1988) <stevenlix>
- **[6c9b3407](https://github.com/onnx/onnx/commit/6c9b3407)**: Move Quantization working group to completed state (#1980) <Prasanth Pulavarthi>
- **[8eba124e](https://github.com/onnx/onnx/commit/8eba124e)**: Define the IR acronym (#1985) <Senja Filipi>

Reviewed By: bddppq

Differential Revision: D15244357

fbshipit-source-id: e1a4eaee5de44f9eb944a290afac7a678b50b033
2019-05-07 17:32:48 -07:00
bc5398451e Enable ROCm multi-gpu with Gloo
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/18640

Differential Revision: D15185822

Pulled By: bddppq

fbshipit-source-id: 1b49ab3fb0f251cfc7ef3ddd62033ae0065a4ec3
2019-05-07 09:55:47 -07:00
f29858ff14 Resolve host_define.h warnings (#19917)
Summary:
Eigen was updated with the commit needed to get rid of this warning that plagued the CI. This PR bumps third_party/eigen to that commit head.
```
warning: #warning "host_defines.h is an internal header file and must not be used directly.  This file will be removed in a future CUDA release.  Please use cuda_runtime_api.h or cuda_runtime.h instead." [-Wcpp]
```
Pull Request resolved: https://github.com/pytorch/pytorch/pull/19917

Differential Revision: D15218183

Pulled By: ezyang

fbshipit-source-id: 653c7d61ea401a7d4469c2009612dc43cc70122d
2019-05-06 08:19:57 -07:00
002009b5a9 Automatic update of fbcode/onnx to 7d7bc83d29a328233d3e8affa4c4ea8b3e3599ef (#20012)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/20012

Previous import was f1311e74ec8a91cbf86094cd6f10157cbf00c536

Included changes:
- **[7d7bc83d](https://github.com/onnx/onnx/commit/7d7bc83d)**: fix shape inference (#1984) <Ashwini Khade>
- **[68630bbd](https://github.com/onnx/onnx/commit/68630bbd)**: fixing some of Mod test cases (#1962) <Jeff Saremi>

Reviewed By: zrphercule

Differential Revision: D15160934

fbshipit-source-id: c53aff401f56b2febeb6c4ee302670eb12b9b495
2019-05-01 22:15:30 -07:00
965c3b2761 Automatic update of fbcode/onnx to f1311e74ec8a91cbf86094cd6f10157cbf00c536 (#19949)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/19949

Previous import was 22662bfd4dcc6baebf29e3b823a051676f991001

Included changes:
- **[f1311e74](https://github.com/onnx/onnx/commit/f1311e74)**: Lint the docs name (#1982) <Lu Fang>
- **[c1c04af4](https://github.com/onnx/onnx/commit/c1c04af4)**:  Fix a shapeinference bug in upsample v9/10 (#1969) <Raymond Yang>
- **[2f7dc10f](https://github.com/onnx/onnx/commit/2f7dc10f)**: Create managingexperimentalops (#1974) <Joseph Spisak>
- **[419582b7](https://github.com/onnx/onnx/commit/419582b7)**: Create archivefileformat doc based on the wiki equivalent (#1973) <Joseph Spisak>
- **[4fcf3842](https://github.com/onnx/onnx/commit/4fcf3842)**: Create NLPinONNXproposal (#1975) <Joseph Spisak>
- **[153c4f9a](https://github.com/onnx/onnx/commit/153c4f9a)**: Create ONNXIFIproposal (#1976) <Joseph Spisak>
- **[c695016a](https://github.com/onnx/onnx/commit/c695016a)**: Create onnxreleases (#1977) <Joseph Spisak>
- **[ccf4b383](https://github.com/onnx/onnx/commit/ccf4b383)**: Create functionsproposal (#1978) <Joseph Spisak>
- **[c4d32371](https://github.com/onnx/onnx/commit/c4d32371)**: Create typeannotations.md (#1979) <Joseph Spisak>

Reviewed By: zrphercule

Differential Revision: D15145652

fbshipit-source-id: eca661fe5a735dce5af992e16b6a4013e896b8b4
2019-04-30 11:57:47 -07:00
4e6608e86d Revert D15103223: [pytorch][PR] [CUDA 10] Resolve host_define.h warnings
Differential Revision:
D15103223

Original commit changeset: 5b56c4dd9cc4

fbshipit-source-id: f9a8e5ff0ee54cf5bb588896ab26dd9f0fb9ba45
2019-04-26 16:01:27 -07:00
2573e695b0 Resolve host_define.h warnings (#19789)
Summary:
Eigen was updated with the commit needed to get rid of this warning that plagued the CI. This PR bumps third_party/eigen to that commit head.
```
warning: #warning "host_defines.h is an internal header file and must not be used directly.  This file will be removed in a future CUDA release.  Please use cuda_runtime_api.h or cuda_runtime.h instead." [-Wcpp]
```
Pull Request resolved: https://github.com/pytorch/pytorch/pull/19789

Differential Revision: D15103223

Pulled By: ezyang

fbshipit-source-id: 5b56c4dd9cc41ff1794570ba2f6abfbe23f6ab68
2019-04-26 13:52:21 -07:00
c182824f69 Update foxi version (#19793)
Summary:
Update foxi to the latest version for group quantization.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/19793

Reviewed By: jackm321, houseroad

Differential Revision: D15095982

Pulled By: zrphercule

fbshipit-source-id: 0d1cb403cbda47a4fda9035e1712fced60ced283
2019-04-25 22:39:40 -07:00
20c22bcae4 Automatic update of fbcode/onnx to 22662bfd4dcc6baebf29e3b823a051676f991001 (#19790)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/19790

Previous import was 27d4b617e7097cda7d0d4c45ff2b09d248f33179

Included changes:
- **[22662bfd](https://github.com/onnx/onnx/commit/22662bfd)**: Bump up version number and update Versioning for 1.5.0 release (#1965) <Raymond Yang>
- **[b1a3a8c8](https://github.com/onnx/onnx/commit/b1a3a8c8)**: fix the ci (#1964) <Lu Fang>

Reviewed By: zrphercule

Differential Revision: D15095183

fbshipit-source-id: b69cb62685122b83a1493b2702aa6ec950ee15bf
2019-04-25 22:23:25 -07:00
5025d1d5e4 Automatic update of fbcode/onnx to 27d4b617e7097cda7d0d4c45ff2b09d248f33179 (#19718)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/19718

Previous import was 0e8d2bc5e51455c70ef790b9f65aa632ed9bc8a7

Included changes:
- **[27d4b617](https://github.com/onnx/onnx/commit/27d4b617)**: Adding RoIAlign operator (#1869) <Sam Pepose>
- **[70c9026c](https://github.com/onnx/onnx/commit/70c9026c)**: add ReverseSequence op (#1927) <Guoliang Hua>
- **[ed2db02a](https://github.com/onnx/onnx/commit/ed2db02a)**: README.md: Update badge style for build status (#1942) <Yulong Wang>
- **[e36d3b54](https://github.com/onnx/onnx/commit/e36d3b54)**: Enable python 3.7 in CI for Windows (#1943) <Raymond Yang>

Differential Revision: D15077516

fbshipit-source-id: c8c6935381ff5a96ab9a4ee519685814f4ea6e59
2019-04-25 10:54:15 -07:00
5a796d15be Automatic update of fbcode/onnx to 0e8d2bc5e51455c70ef790b9f65aa632ed9bc8a7 (#19568)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/19568

Previous import was 83dd62659fc07d5b7fa93b5d1c1879f93509c7db

Included changes:
- **[0e8d2bc5](https://github.com/onnx/onnx/commit/0e8d2bc5)**: [Minor need to be in 1.5]Fix an issue in NMS test data which introduce wrong shape. (#1953) <Hector Li>
- **[9346dd5d](https://github.com/onnx/onnx/commit/9346dd5d)**: adding modulus operator (#1874) <Jeff Saremi>
- **[414dbc73](https://github.com/onnx/onnx/commit/414dbc73)**: Fix shape inference for slice (#1950) <Hariharan Seshadri>
- **[6fb0775d](https://github.com/onnx/onnx/commit/6fb0775d)**: Fix shape inference for ConstantOfShape op (#1951) <Ashwini Khade>

Reviewed By: bddppq, zrphercule, benoitsteiner

Differential Revision: D15033070

fbshipit-source-id: f7eb90b142cbdc9bf1600cfd33e5a8df709045fb
2019-04-22 17:36:36 -07:00
e714429bf4 Automatic update of fbcode/onnx to 83dd62659fc07d5b7fa93b5d1c1879f93509c7db (#19454)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/19454

Previous import was ad7313470a9119d7e1afda7edf1d654497ee80ab

Included changes:
- **[83dd6265](https://github.com/onnx/onnx/commit/83dd6265)**: Add NonMaxSuppression operator (#1703) <Hector Li>
- **[31ca5d6f](https://github.com/onnx/onnx/commit/31ca5d6f)**: add node tests for quantized ops (#1944) <Ashwini Khade>
- **[e6076c1d](https://github.com/onnx/onnx/commit/e6076c1d)**: Fix test stat coverage script (#1948) <Raymond Yang>
- **[ad036405](https://github.com/onnx/onnx/commit/ad036405)**: Add IsInf to detect infinity values (#1884) <Wei-Sheng Chin>

Reviewed By: benoitsteiner

Differential Revision: D15010015

fbshipit-source-id: 4b29de21de60f8e6a2db75309809a4e619c92532
2019-04-22 10:46:08 -07:00
638ffac359 Update mkldnn-bridge to fix crash issue in DNNLOWP dequantize op (#19159)
Summary:
Remove an useless format checker in mkldnn-bridge to fix the crash issue in DNNLOWP dequantize op.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/19159

Differential Revision: D15027670

Pulled By: yinghai

fbshipit-source-id: ac97d6ff94de013105108b9596b1bd7621c5aa75
2019-04-21 14:05:13 -07:00
1e78252de7 Updating submodules
Reviewed By: cdelahousse

fbshipit-source-id: a727513842c0a240b377bda4e313fbedbc54c2e8
2019-04-18 18:34:36 -07:00
789c438d86 Automatic update of fbcode/onnx to ad7313470a9119d7e1afda7edf1d654497ee80ab (#19339)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/19339

Previous import was 971311db58f2fa8306d15e1458b5fd47dbc8d11c

Included changes:
- **[ad731347](https://github.com/onnx/onnx/commit/ad731347)**: Fix shape inference for matmul (#1941) <Bowen Bao>
- **[3717dc61](https://github.com/onnx/onnx/commit/3717dc61)**: Shape Inference Tests for QOps (#1929) <Ashwini Khade>
- **[a80c3371](https://github.com/onnx/onnx/commit/a80c3371)**: Prevent unused variables from generating warnings across all platforms.  (#1930) <Pranav Sharma>
- **[be9255c1](https://github.com/onnx/onnx/commit/be9255c1)**: add title (#1919) <Prasanth Pulavarthi>
- **[7a112a6f](https://github.com/onnx/onnx/commit/7a112a6f)**: add quantization ops in onnx (#1908) <Ashwini Khade>
- **[6de42d7d](https://github.com/onnx/onnx/commit/6de42d7d)**: Create working-groups.md (#1916) <Prasanth Pulavarthi>

Reviewed By: yinghai

Differential Revision: D14969962

fbshipit-source-id: 5ec64ef7aee5161666ed0c03e201be0ae20826f9
2019-04-18 00:45:20 -07:00
72e171dc52 Automatic update of fbcode/onnx to 971311db58f2fa8306d15e1458b5fd47dbc8d11c (#19046)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/19046

Previous import was 079c2639f9bb79b1774d1e3bfa05b0c093816ca7

Included changes:
- **[971311db](https://github.com/onnx/onnx/commit/971311db)**: use ONNX_NAMESPACE::to_string instead of std::to_string (#1915) <Lu Fang>
- **[65227446](https://github.com/onnx/onnx/commit/65227446)**: Remove all the experimental ops (#1909) <Lu Fang>
- **[bdb28f29](https://github.com/onnx/onnx/commit/bdb28f29)**: opset converter backward compatibility support for opset versions 9 and 8 (#1847) <Peyman Manikashani>
- **[47692338](https://github.com/onnx/onnx/commit/47692338)**: Create CODEOWNERS for automatic reviewer assignment for PRs (#1910) <Prasanth Pulavarthi>
- **[8121c731](https://github.com/onnx/onnx/commit/8121c731)**: Revert "quantization support in onnx (#1872)" (#1911) <Lu Fang>
- **[4cfa5426](https://github.com/onnx/onnx/commit/4cfa5426)**: quantization support in onnx (#1872) <Ke Zhang>
- **[030bbb80](https://github.com/onnx/onnx/commit/030bbb80)**: Update LICENSE formatting and clarify # of WG chairs (#1907) <Prasanth Pulavarthi>

Reviewed By: yinghai

Differential Revision: D14843284

fbshipit-source-id: 96c1c79abb62beff227a9fc8b2af9382c4673755
2019-04-08 23:20:02 -07:00
bb16e8dacb Automatic update of fbcode/onnx to 079c2639f9bb79b1774d1e3bfa05b0c093816ca7 (#18841)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18841

Previous import was f0d7df2c643c4e37f1fd7735ef02c972c4d19fb5

Included changes:
- **[079c2639](https://github.com/onnx/onnx/commit/079c2639)**: update the squeeze and unsqueeze doc (#1905) <Lu Fang>
- **[a8b45d62](https://github.com/onnx/onnx/commit/a8b45d62)**: fix the ir_version onnx-operators.proto (#1903) <Lu Fang>

Reviewed By: zrphercule

Differential Revision: D14767158

fbshipit-source-id: 2d772fece45e25d72bf1d10fad156189397f3f86
2019-04-04 13:01:37 -07:00
2658190def Updating submodules
Reviewed By: zpao

fbshipit-source-id: ea0b06ce68d3fd6092eaea7c835a8b51c1120ea0
2019-04-03 08:30:25 -07:00
1f5a46ab05 Automatic update of fbcode/onnx to f0d7df2c643c4e37f1fd7735ef02c972c4d19fb5 (#18695)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18695

Previous import was fb1a80692c1ab0bd27b1072f2e7bffacba336777

Included changes:
- **[f0d7df2c](https://github.com/onnx/onnx/commit/f0d7df2c)**: fix testcase names of maxpool_2d_ceil and averagepool_2d_ceil (#1896) <karljang>

Reviewed By: zrphercule

Differential Revision: D14709993

fbshipit-source-id: 7fe2145a481ea2c1b6d85ba1c85c662200a53241
2019-04-02 09:16:48 -07:00
af84371ba8 Updating submodules
Reviewed By: zpao

fbshipit-source-id: da3cd711bb81b07c6c284426ffc5e10a969b0d2b
2019-04-02 06:50:53 -07:00
a0285dd0f4 Updating submodules
Reviewed By: zpao

fbshipit-source-id: 735fc388bff7066e8f46526266a73bf35e121442
2019-04-01 13:59:58 -07:00
e3b1758f19 Upgrade mkldnn-bridge to revert tensor capacity patch and prepare for DNNLOWP support (#18471)
Summary:
1. Upgrade mkldnn-bridge to revert tensor capacity patch to avoid ASAN issue.
2. Prepare for DNNLOWP support.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18471

Differential Revision: D14621569

Pulled By: yinghai

fbshipit-source-id: 9df300b77d0f2acd1a4f63c2925b7a7cab7a474e
2019-03-29 13:54:04 -07:00
a5a1c9a171 Automatic update of fbcode/onnx to fb1a80692c1ab0bd27b1072f2e7bffacba336777 (#18585)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18585

Previous import was b29e78a4efb8e5d8995f576bbf19a846807829b6

Included changes:
- **[fb1a8069](https://github.com/onnx/onnx/commit/fb1a8069)**: Fix wrongly handled attribute in MVN and test generating scripts (#1877) <Raymond Yang>
- **[b22041c3](https://github.com/onnx/onnx/commit/b22041c3)**: Add dilation attribute to MaxPool (#1864) <karljang>

Reviewed By: zrphercule, benoitsteiner

Differential Revision: D14668623

fbshipit-source-id: fa7f44b1ecc949d8dd654939d20b1e93db98b1d2
2019-03-28 23:47:10 -07:00
0fd1ee3145 Automatic update of fbcode/foxi to 81e1683d6348eee4b5ed1145222dc2c41be4269c (#18596)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18596

Previous import was 2bcc4064c90e87b9638615c733485f07c47b7558

Included changes:
- **[81e1683](https://github.com/houseroad/foxi/commit/81e1683)**: Merge pull request #9 from zrphercule/add_foxi_quantization <Rui Zhu>
- **[580559c](https://github.com/houseroad/foxi/commit/580559c)**: char=>uint8 <zrphercule>
- **[1a572f7](https://github.com/houseroad/foxi/commit/1a572f7)**: add quantization <zrphercule>

Reviewed By: zrphercule

Differential Revision: D14677404

fbshipit-source-id: 09429b3bf0e7783a25b8145020e505761bad887d
2019-03-28 23:24:30 -07:00
b1a0233ee4 Update NNPACK to current master (#18580)
Summary:
This fixes builds on x86 (32 bits).
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18580

Differential Revision: D14672462

Pulled By: soumith

fbshipit-source-id: 7629b001c2bfa3e5b6ade7f1b03a8280232a4c16
2019-03-28 22:23:08 -07:00
a3933b87c6 Back out "Revert D14613517: [pytorch][PR] Updating onnxtrt submodule to master branch" (#18514)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18514

Original commit changeset: d6267ddfc339

Reviewed By: bddppq

Differential Revision: D14634476

fbshipit-source-id: 2633b0b4c512d71001e5c20cd79c0c0d7856f942
2019-03-26 23:44:33 -07:00
eae7ad4ca8 Automatic update of fbcode/onnx to b29e78a4efb8e5d8995f576bbf19a846807829b6 (#18503)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18503

Previous import was c05f2ae412daf8fd64136ca354b97ccf73e0ea6c

Included changes:
- **[b29e78a4](https://github.com/onnx/onnx/commit/b29e78a4)**: update copyright for open governance (#1885) <Prasanth Pulavarthi>
- **[3b0ecd55](https://github.com/onnx/onnx/commit/3b0ecd55)**: open governance (#1881) <Prasanth Pulavarthi>
- **[bbe28349](https://github.com/onnx/onnx/commit/bbe28349)**: Revert "Adding Reverse op (#1804)" (#1882) <Lu Fang>
- **[5be3e223](https://github.com/onnx/onnx/commit/5be3e223)**: Adding Reverse op (#1804) <Peyman Manikashani>

Reviewed By: zrphercule

Differential Revision: D14632717

fbshipit-source-id: 2637a4090e7071a59caff3a910fa4f077906bf3c
2019-03-26 21:58:22 -07:00
66e8c74814 Revert D14613517: [pytorch][PR] Updating onnxtrt submodule to master branch
Differential Revision:
D14613517

Original commit changeset: dd20d718db55

fbshipit-source-id: d6267ddfc339d04f182e2de1750a601c8d6bf8c6
2019-03-26 17:37:55 -07:00
bbe110f4e1 Updating onnxtrt submodule to master branch
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/18441

Differential Revision: D14613517

Pulled By: bddppq

fbshipit-source-id: dd20d718db55942df9cce7acd1151d6902bc57ff
2019-03-26 14:25:55 -07:00
6f3186a578 Upgrade mkldnn to version 0.18.1 (#18463)
Summary:
Upgrade mkldnn to version 0.18.1
Fix the MKLDNN build issue if linking with MKL 2019.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18463

Differential Revision: D14620228

Pulled By: ezyang

fbshipit-source-id: 136074ad0e4631e1dde4ca1b0af4ee6a41e50913
2019-03-26 11:00:25 -07:00
17fcdfb925 Updating submodules
Reviewed By: yns88

fbshipit-source-id: b2c5eb7dfa9048e399461c00d1103e945a30a5bc
2019-03-25 10:32:26 -07:00
afc7574aed Automatic update of fbcode/onnx to c05f2ae412daf8fd64136ca354b97ccf73e0ea6c (#18285)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18285

Previous import was 96c58ceeacf0f2b73d752e413e4fd78787a12da3

Included changes:
- **[c05f2ae4](https://github.com/onnx/onnx/commit/c05f2ae4)**: update both core and ml docs (#1879) <Lu Fang>
- **[f895279b](https://github.com/onnx/onnx/commit/f895279b)**: fix the problems introduced in previous PRs in operator registration (#1878) <Lu Fang>
- **[f6f80657](https://github.com/onnx/onnx/commit/f6f80657)**: Skip the schema check on ops in non-standard domain (#1876) <Lu Fang>
- **[8c8be722](https://github.com/onnx/onnx/commit/8c8be722)**: Introduce Function Body Helper  (#1868) <Sherlock>
- **[b605eafb](https://github.com/onnx/onnx/commit/b605eafb)**: Support down sampling for Upsample with scales < 1. (#1773) <Ke Zhang>
- **[47f7aa71](https://github.com/onnx/onnx/commit/47f7aa71)**: Remove scaledtanh (#1866) <Ashwini Khade>
- **[4dfc56de](https://github.com/onnx/onnx/commit/4dfc56de)**: Add Ceil support for Max and Average Pooling (#1860) <Lara Haidar>
- **[552a8efc](https://github.com/onnx/onnx/commit/552a8efc)**: Add testcase generator for functions (#1862) <Raymond Yang>
- **[fdb978a5](https://github.com/onnx/onnx/commit/fdb978a5)**: Promote Thresholded Relu Op (#1856) <Ashwini Khade>
- **[ce332628](https://github.com/onnx/onnx/commit/ce332628)**: Update Slice with dynamic input & optional input steps (#1836) <Bowen Bao>
- **[3a9a8787](https://github.com/onnx/onnx/commit/3a9a8787)**: Merge function into opschema (#1834) <Raymond Yang>
- **[3dbf8fe9](https://github.com/onnx/onnx/commit/3dbf8fe9)**: Handle string comparision represented as np.objects (#1851) <Dmitri Smirnov>
- **[3b0d3bb2](https://github.com/onnx/onnx/commit/3b0d3bb2)**: remove global variable in header file (#1850) <Lu Fang>
- **[1cca8733](https://github.com/onnx/onnx/commit/1cca8733)**: bump the version for drop out - fix the issue that the version was not bumped when changing its type constraint declaration. (#1848) <Ke Zhang>
- **[1ec81bc6](https://github.com/onnx/onnx/commit/1ec81bc6)**: Change TopK operator to allow dynamic 'k' (#1829) <Hariharan Seshadri>
- **[a89a4a16](https://github.com/onnx/onnx/commit/a89a4a16)**: Remove exp op: Affine, ImageScaler,ParametricSoftplus, Crop. (#1832) <Ke Zhang>

Reviewed By: yinghai

Differential Revision: D14566202

fbshipit-source-id: b1e5912ae6887e2865fc628363071e2b9938dfa4
2019-03-22 00:13:42 -07:00
cf19ad2152 Updating submodules
Reviewed By: yns88

fbshipit-source-id: 80b00c33e6f6c7cfa08f645cd33419f6545f45d2
2019-03-21 13:15:54 -07:00
d5328a8a30 Update nccl submodule to 2.4.2 (#17883)
Summary:
Didn't test this. Let's see what happens.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/17883

Differential Revision: D14547470

Pulled By: pietern

fbshipit-source-id: c35d232f6bcc5a2dce55da636a0acbea5c2725d8
2019-03-20 14:39:52 -07:00
86f1dd3fb0 Updating submodules
Reviewed By: yns88

fbshipit-source-id: eeeec4229e05916f2c17e525aee5ac4465ef52db
2019-03-18 20:40:35 -07:00
0a8efce51e Updating submodules
Reviewed By: yns88

fbshipit-source-id: ed297c07c681f5f45d3f99edf48680015ca5b138
2019-03-18 16:21:23 -07:00
0fe6e8c870 Remove ComputeLibrary submodule
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/18052

Reviewed By: ezyang

Differential Revision: D14477355

fbshipit-source-id: c56b802f6d69701596c327cf9af6782f30e335fa
2019-03-16 09:06:42 -07:00
cb2ea17707 Automatic update of fbcode/foxi to 2bcc4064c90e87b9638615c733485f07c47b7558 (#18070)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18070

Previous import was d1f45b1a2b1585d0e9bc65e15e463db344fc3ff6

Included changes:
- **[2bcc406](https://github.com/houseroad/foxi/commit/2bcc406)**: Merge pull request #7 from jackm321/tracing_fixes <Jack Montgomery>
- **[c39033c](https://github.com/houseroad/foxi/commit/c39033c)**: Fixes for tracing events <Jack Montgomery>
- **[50912cf](https://github.com/houseroad/foxi/commit/50912cf)**: Merge pull request #5 from jackm321/add_trace_events <Jack Montgomery>
- **[ba2fdcb](https://github.com/houseroad/foxi/commit/ba2fdcb)**: Merge pull request #5 from jackm321/add_trace_events <Jack Montgomery>
- **[7d42b12](https://github.com/houseroad/foxi/commit/7d42b12)**: address comments <Jack Montgomery>
- **[dcabd8d](https://github.com/houseroad/foxi/commit/dcabd8d)**: Add trace events interface <Jack Montgomery>

Reviewed By: houseroad

Differential Revision: D14483201

fbshipit-source-id: f51ed869c9a89521079df89903abc0ac0a45ac7b
2019-03-15 16:49:08 -07:00
9de4350b77 Automatic update of fbcode/foxi to d1f45b1a2b1585d0e9bc65e15e463db344fc3ff6 (#18028)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18028

Previous import was 520e8e135f1ad75959bf9b5bd15c361b8caeb8d6

Included changes:
- **[d1f45b1](https://github.com/houseroad/foxi/commit/d1f45b1)**: update the gitignore (#6) <Lu Fang>
- **[398135c](https://github.com/houseroad/foxi/commit/398135c)**: Remove static variable in header (#3) <Lu Fang>
- **[f817be1](https://github.com/houseroad/foxi/commit/f817be1)**: sync to ONNX cb544d07cc022e3fe83622fda9b2b1fa00b75b89 (#2) <Lu Fang>

Reviewed By: zrphercule

Differential Revision: D14464213

fbshipit-source-id: b5d166f05f7fd503dec11d676e219cc6c6a373f9
2019-03-14 15:47:36 -07:00
4f939dded1 Updating submodules
Reviewed By: zpao

fbshipit-source-id: 7d454d0f58898741f293b356dfc10d7fc31fd55c
2019-03-12 20:34:05 -07:00
40ecdc57ff Updating submodules
Reviewed By: zpao

fbshipit-source-id: 06c0f738c791cccf79025d15f1fc2076bf34fcd1
2019-03-12 13:29:46 -07:00