Commit graph

38 commits

Author SHA1 Message Date
Yangqing Jia
8286ce1e3a Re-license to Apache
Summary: Closes https://github.com/caffe2/caffe2/pull/1260

Differential Revision: D5906739

Pulled By: Yangqing

fbshipit-source-id: e482ba9ba60b5337d9165f28f7ec68d4518a0902
2017-09-28 16:22:00 -07:00
Aaron Markham
9c3e59d484 updated research proposal link
Summary: Closes https://github.com/caffe2/caffe2/pull/957

Differential Revision: D5480191

Pulled By: aaronmarkham

fbshipit-source-id: 445a4955795a2b16d53238029e9140533f7888e5
2017-07-24 08:56:02 -07:00
Aaron Markham
82c38daa85 added research award info
Summary: Closes https://github.com/caffe2/caffe2/pull/863

Differential Revision: D5320787

Pulled By: akyrola

fbshipit-source-id: f59e874fafeba8879b1cf638be31fc54aa967cbb
2017-06-26 10:18:19 -07:00
Aaron Markham
31769fbaf8 removed events and user group info
Summary: Closes https://github.com/caffe2/caffe2/pull/816

Differential Revision: D5276778

Pulled By: akyrola

fbshipit-source-id: 28bf0724a360e37cd3171eef9c47addf8b4e6b42
2017-06-19 12:21:24 -07:00
Luke Yeager
dc0e857e76 README: TravisCI and Appveyor badges
Summary:
The existing per-branch TravisCI badges don't work, and will be out-dated when https://github.com/caffe2/caffe2/pull/735 is merged.

I also added an Appveyor badge.
Closes https://github.com/caffe2/caffe2/pull/786

Differential Revision: D5253408

Pulled By: aaronmarkham

fbshipit-source-id: b274b30fcef9df3d2ff7cda1046f8462ad56c83b
2017-06-15 15:07:57 -07:00
Aaron Markham
05e060974f added events and user group info
Summary:
also contains previous edits on statuses which should be in here....
Closes https://github.com/caffe2/caffe2/pull/657

Differential Revision: D5158733

Pulled By: aaronmarkham

fbshipit-source-id: faba2ab8e2dab206e09f57021b973b3e7d01af95
2017-06-01 09:35:26 -07:00
Yangqing Jia
deb1327b6e Re-apply #266
Summary: Closes https://github.com/caffe2/caffe2/pull/404

Differential Revision: D4943280

Pulled By: Yangqing

fbshipit-source-id: c0988598d8ccb8329feac88382686324b90d4d46
2017-04-25 21:17:04 -07:00
Madelaine Boyd
199a09c7dd XCode -> Xcode
Summary: Insufferable Apple fanboys have burned this into my brain.

Reviewed By: Yangqing

Differential Revision: D4913772

fbshipit-source-id: 486c20e9c921
2017-04-24 15:52:24 -07:00
Yangqing Jia
a48062b1a2 temporarily fix sync script bugs changes by reverting partially https://github.com/caffe2/caffe2/pull/266/files 2017-04-24 15:49:22 -07:00
Chalise Grogan
41b7217898 Fix url to original Caffe external resource in README. (#317) 2017-04-20 11:31:50 -07:00
Aaron Markham
d58141ec4c launch updates (#309)
* updated ubuntu instructions

* updated ubuntu notes and troubleshooting

* updated tutorials using local files

* added doxygen python blocks for docs generation

* doxygen related files for generating docs

* removing Mac and Windows build status while those are in beta

* inference lookup is local now

* launch updates
2017-04-19 11:40:51 -07:00
Ajinkya Kolhe
6cae3fa896 Typo in Build version of ubuntu (#294) 2017-04-19 11:25:59 -07:00
Aaron Markham
dd80310681 inference lookup in now local for tutorial (#267)
* updated ubuntu instructions

* updated ubuntu notes and troubleshooting

* updated tutorials using local files

* added doxygen python blocks for docs generation

* doxygen related files for generating docs

* removing Mac and Windows build status while those are in beta

* inference lookup is local now
2017-04-16 10:06:56 -07:00
Aaron Markham
67468212e3 updated ubuntu instructions (#259) 2017-04-11 11:36:22 -07:00
Yangqing Jia
b5e5001426 update detailed build info
Summary:
Fun on the plane. This basically reveals the per-platform build status on the README.md file.
Closes https://github.com/caffe2/caffe2/pull/188

Differential Revision: D4668460

Pulled By: Yangqing

fbshipit-source-id: 242b916cca0a46f8d797c6430c1875d6ffaae7ce
2017-03-07 15:46:33 -08:00
Yangqing Jia
1741fd839f Re-apply windows diff D4657831
Summary:
(Note: previous revert was due to a race condition between D4657831 and
D4659953 that I failed to catch.)

After this, we should have contbuild guarding the Windows build both with
and without CUDA.

This includes a series of changes that are needed to make Windows build,
specifically:

(1) Various flags that are needed in the cmake system, specially dealing
with /MD, /MT, cuda, cudnn, whole static linking, etc.
(2) Contbuild scripts based on appveyo.
(3) For Windows build, note that one will need to use "cmake --build" to
build stuff so that the build type is consistent between configuration and
actual build. see scripts\build_windows.bat for details.
(4) In logging.h, ERROR is already defined by Windows. I don't have a good
solution now, and as a result, LOG(ERROR) on windows is going to be
LOG(INFO).
(5) variable length array is not supported by MSVC (and it is not part of
C++ standard). As a result I replaced them with vectors.
(6) sched.h is not available on Windows, so akyrola 's awesome simple
async net might encounter some slowdown due to no affinity setting on
Windows.
(7) MSVC has a bug that does not work very well with template calls inide
a templated function call, which is a known issue that should be fixed in
MSVC 2017. However for now this means changes to conv_op_impl.h and
recurrent_net_op.h. No actual functionalities are changed.
(8) std host function calls are not supported in CUDA8+MSVC, so I changed
lp_pool (and maybe a few others) to use cuda device functions.
(9) The current Scale and Axpy has heavy templating that does not work
well with MSVC. As a result I reverted azzolini 's changes to the Scale
and Axpy interface, moved the fixed-length version to ScaleFixedSize and
AxpyFixedSize.
(10) CUDA + MSVC does not deal with Eigen well, so I guarded all Eigen
parts to only the non-CUDA part.
(11) In conclusion, it is fun but painful to deal with visual c++.

Differential Revision: D4666745

fbshipit-source-id: 3c9035083067bdb19a16d9c345c1ce66b6a86600
2017-03-07 11:02:12 -08:00
Avani Nandini
039c3cf0ba Revert D4657831: [caffe2][PR] Changes for Windows build to pass.
Summary: This reverts commit 070ded372ed78a7e3e3919fdffa1d337640f146e

Differential Revision: D4657831

fbshipit-source-id: 3a0fb403936a9257776d637ce3ba5dbd81e1119f
2017-03-06 21:02:36 -08:00
Yangqing Jia
7b8c7b11d2 Changes for Windows build to pass.
Summary:
After this, we should have contbuild guarding the Windows build both with
and without CUDA.

This includes a series of changes that are needed to make Windows build,
specifically:

(1) Various flags that are needed in the cmake system, specially dealing
with /MD, /MT, cuda, cudnn, whole static linking, etc.
(2) Contbuild scripts based on appveyo.
(3) For Windows build, note that one will need to use "cmake --build" to
build stuff so that the build type is consistent between configuration and
actual build. see scripts\build_windows.bat for details.
(4) In logging.h, ERROR is already defined by Windows. I don't have a good
solution now, and as a result, LOG(ERROR) on windows is going to be
LOG(INFO).
(5) variable length array is not supported by MSVC (and it is not part of
C++ standard). As a result I replaced them with vectors.
(6) sched.h is not available on Windows, so akyrola 's awesome simple
async net might encounter some slowdown due to no affinity setting on
Windows.
(7) MSVC has a
Closes https://github.com/caffe2/caffe2/pull/183

Reviewed By: ajtulloch

Differential Revision: D4657831

Pulled By: Yangqing

fbshipit-source-id: 070ded372ed78a7e3e3919fdffa1d337640f146e
2017-03-06 20:03:37 -08:00
Michael Houston
2d8784ce55 Add python-protobuf install instructions
Summary:
Fixes #158
Closes https://github.com/caffe2/caffe2/pull/159

Differential Revision: D4592503

Pulled By: Yangqing

fbshipit-source-id: 9398ee30e507fd6958818fe407786a7895792775
2017-02-21 12:03:00 -08:00
Luke Yeager
b9f4977be9 Fix git URL in README
Summary:
URL was changed in f516943841
Closes https://github.com/caffe2/caffe2/pull/127

Differential Revision: D4559705

Pulled By: Yangqing

fbshipit-source-id: 72b653924d85763ac3e26081f275d699f16b494f
2017-02-14 11:48:09 -08:00
Yangqing Jia
274ac2b590 Add cmake guard for python, build for tegra X1
Summary:
In short: cmake is lovely.
Closes https://github.com/caffe2/caffe2/pull/131

Differential Revision: D4517234

Pulled By: Yangqing

fbshipit-source-id: 1117878393f8fe7d6bebbc4a06a3c37b734f3222
2017-02-07 13:17:50 -08:00
Bram Wasti
0e6ebdf50a Speed up travis slightly and fix documentation mistake
Summary: Closes https://github.com/caffe2/caffe2/pull/90

Differential Revision: D4404418

Pulled By: bwasti

fbshipit-source-id: a45af5624eff12abbb103f1e55d2906d35e0dee5
2017-01-11 10:44:27 -08:00
Bram Wasti
73fe3d5f59 Update travis to test more versions of GCC and fix README build status link
Summary: Closes https://github.com/caffe2/caffe2/pull/87

Reviewed By: Yangqing

Differential Revision: D4387686

Pulled By: bwasti

fbshipit-source-id: 068ab542bbbd793cbabd06cd77c95ce13ebaf012
2017-01-08 21:29:35 -08:00
Bram Wasti
dd133edf84 Update README.md 2017-01-05 10:15:27 -08:00
Bram Wasti
a358ed4297 Update docs to reflect current build status 2017-01-05 09:59:31 -08:00
Bram Wasti
425ce989e2 Update README.md 2017-01-04 11:25:17 -08:00
Bram Wasti
6303dab3ab Update README.md 2017-01-03 10:48:57 -08:00
Bram Wasti
d515d8ffb8 Update README.md 2016-12-29 12:35:47 -05:00
Bram Wasti
033acae6b4 Update README.md 2016-12-15 09:56:55 -08:00
Bram Wasti
b348e9677c Removed deprecated installation instructions 2016-12-14 17:02:19 -08:00
Bram Wasti
8f398d795e Added basic build system 2016-12-04 16:42:00 -08:00
Bram Wasti
61c0bcf91d removed deprecated readme info
Summary: Removed deprecated information.

Reviewed By: Yangqing

Differential Revision: D4208320

fbshipit-source-id: 6906e9c56b9f0abf0582c2ba1bb8e6a5a9f89a84
2016-11-18 17:03:20 -08:00
Yangqing Jia
92100e4b66 Update README.md 2016-05-16 21:42:12 -07:00
Yangqing Jia
42d310afdd Update README.md
installation link.
2015-09-12 20:26:08 -07:00
Yangqing Jia
eac3b5bd28 Update README.md 2015-08-09 18:46:52 -07:00
Yangqing Jia
30fb5b94ac Update README.md 2015-08-09 18:46:26 -07:00
Yangqing Jia
59e1ad7e77 Update license and readme. 2015-07-06 22:13:14 -07:00
Yangqing Jia
2ed1077a83 A clean init for Caffe2, removing my earlier hacky
commits.
2015-06-25 16:26:01 -07:00