forked from facebookincubator/velox
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove .gitmodules. (facebookincubator#9674)
Summary: It appears that git submodules are no longer used in this repository, as `gtest` and `xsimd` were moved to `resolve_dependency` in facebookincubator#4218. However, the `.gitmodules` file still exists. I think this file is safe to remove now. Pull Request resolved: facebookincubator#9674 Reviewed By: Yuhta Differential Revision: D56791639 Pulled By: kgpai fbshipit-source-id: 78bb4d530340c6bbd0e4c126090a34cda39cebb2
- Loading branch information
1 parent
b1defb5
commit 82aa0c4
Showing
2 changed files
with
5 additions
and
14 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,11 +72,8 @@ Blog posts are available [here](https://velox-lib.io/blog). | |
|
||
### Get the Velox Source | ||
``` | ||
git clone --recursive https://github.com/facebookincubator/velox.git | ||
git clone https://github.com/facebookincubator/velox.git | ||
cd velox | ||
# if you are updating an existing checkout | ||
git submodule sync --recursive | ||
git submodule update --init --recursive | ||
``` | ||
Once Velox is checked out, the first step is to install the dependencies. | ||
Details on the dependencies and how Velox manages some of them for you | ||
|
@@ -90,7 +87,7 @@ dependencies for a given platform. | |
On an Intel MacOS machine you can setup and then build like so: | ||
|
||
```shell | ||
$ ./scripts/setup-macos.sh | ||
$ ./scripts/setup-macos.sh | ||
$ make | ||
``` | ||
|
||
|
@@ -117,7 +114,7 @@ $ CPU_TARGET="aarch64" make | |
Once you have checked out Velox, you can setup and build like so: | ||
|
||
```shell | ||
$ ./scripts/setup-ubuntu.sh | ||
$ ./scripts/setup-ubuntu.sh | ||
$ make | ||
``` | ||
|
||
|
@@ -135,7 +132,7 @@ Note that, | |
* f16c | ||
* Velox tries to use the following (or equivalent) instruction sets where available: | ||
* On Intel CPUs | ||
* avx | ||
* avx | ||
* avx2 | ||
* sse | ||
* On ARM | ||
|
@@ -167,7 +164,7 @@ contribute to the project. | |
## Community | ||
|
||
The main communication channel with the Velox OSS community is through the | ||
[the Velox-OSS Slack workspace](http://velox-oss.slack.com). | ||
[the Velox-OSS Slack workspace](http://velox-oss.slack.com). | ||
Please reach out to **[email protected]** to get access to Velox Slack Channel. | ||
|
||
|
||
|