Skip to content

Introduced readies submodule #377

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 3 commits into from
May 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ commands:
type: string
steps:
- checkout
- run:
name: Submodule checkout
command: git submodule update --init --recursive
- restore_cache:
keys:
- v1-dependencies-{{ checksum "get_deps.sh" }}
Expand Down Expand Up @@ -34,6 +37,9 @@ commands:
type: string
steps:
- checkout
- run:
name: Submodule checkout
command: git submodule update --init --recursive
- run:
name: Build
command: make -C opt all SHOW=1
Expand Down Expand Up @@ -81,6 +87,9 @@ jobs:
- image: redisfab/rmbuilder:6.0.1-x64-buster
steps:
- checkout
- run:
name: Submodule checkout
command: git submodule update --init --recursive
- restore_cache:
keys:
- build-dependencies-{{ checksum "get_deps.sh" }}
Expand Down Expand Up @@ -127,6 +136,9 @@ jobs:
image: ubuntu-1604:201903-01
steps:
- checkout
- run:
name: Submodule checkout
command: git submodule update --init --recursive
- run:
name: Checkout LFS
command: |
Expand Down Expand Up @@ -154,6 +166,9 @@ jobs:
image: ubuntu-1604-cuda-10.1:201909-23
steps:
- checkout
- run:
name: Submodule checkout
command: git submodule update --init --recursive
- run:
name: Build
command: |
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "opt/readies"]
path = opt/readies
url = https://github.com/RedisLabsModules/readies.git
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ You can compile and build the module from its source code. The [Developer](devel
You can obtain the module's source code by cloning the project's repository using git like so:

```sh
git clone https://github.com/RedisAI/RedisAI
git clone --recursive https://github.com/RedisAI/RedisAI
```

Switch to the project's directory with:
Expand Down
2 changes: 2 additions & 0 deletions get_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ LIBTORCH=libtorch
MKL=mkl
ONNXRUNTIME=onnxruntime

git submodule update --init --recursive || true

######################################################################################## DLPACK

if [[ $WITH_DLPACK != 0 ]]; then
Expand Down
1 change: 1 addition & 0 deletions opt/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

ROOT:=..
MK.pyver:=3
include readies/mk/main

MK.cmake:=1
Expand Down
1 change: 1 addition & 0 deletions opt/readies
Submodule readies added at c46471
36 changes: 0 additions & 36 deletions opt/readies/.gitignore

This file was deleted.

29 changes: 0 additions & 29 deletions opt/readies/LICENSE

This file was deleted.

9 changes: 0 additions & 9 deletions opt/readies/README.md

This file was deleted.

4 changes: 0 additions & 4 deletions opt/readies/bin/filter-colors

This file was deleted.

61 changes: 0 additions & 61 deletions opt/readies/bin/getdocker

This file was deleted.

36 changes: 0 additions & 36 deletions opt/readies/bin/getgosu

This file was deleted.

35 changes: 0 additions & 35 deletions opt/readies/bin/getpy2

This file was deleted.

35 changes: 0 additions & 35 deletions opt/readies/bin/getpy3

This file was deleted.

57 changes: 0 additions & 57 deletions opt/readies/bin/getredis5

This file was deleted.

Loading