Skip to content
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
151 changes: 0 additions & 151 deletions Makefile

This file was deleted.

3 changes: 1 addition & 2 deletions apps/cpp_rpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ This folder contains a simple recipe to make RPC server in c++.

- From within the configured tvm build directory, compile `tvm_runtime` and the `tvm_rpc` server:
```
cd $TVM_ROOT/build
make -jN tvm_runtime tvm_rpc
cmake --build $TVM_ROOT/build --target tvm_runtime tvm_rpc -j$(nproc)
```
- Use `./tvm_rpc server` to start the RPC server

Expand Down
6 changes: 3 additions & 3 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ tasks.
- lint the python codes

```bash
./docker/build.sh ci_lint make pylint
./docker/build.sh ci_lint pre-commit run --all-files
```

- build codes with CUDA support

```bash
./docker/build.sh ci_gpu make -j$(nproc)
./docker/build.sh ci_gpu bash -c "cd build && cmake -GNinja .. && ninja -j$(nproc)"
```

- do the python unittest
Expand All @@ -128,5 +128,5 @@ tasks.
- build the documents. The results will be available at `docs/_build/html`

```bash
./docker/ci_build.sh ci_gpu make -C docs html
./docker/ci_build.sh ci_gpu bash -c "cd docs && make html"
```
4 changes: 2 additions & 2 deletions jvm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ First please refer to [Installation Guide](https://tvm.apache.org/docs/install/)
Then you can compile tvm4j by

```bash
make jvmpkg
bash tests/scripts/task_jvm_build.sh
```

(Optional) run unit test by
Expand All @@ -62,7 +62,7 @@ sh tests/scripts/task_java_unittest.sh
After it is compiled and packaged, you can install tvm4j in your local maven repository,

```bash
make jvminstall
bash tests/scripts/task_jvm_build.sh install
```

## Convert and Register Java Function as TVM Function
Expand Down
20 changes: 0 additions & 20 deletions tests/lint/blocklint.sh

This file was deleted.

20 changes: 0 additions & 20 deletions tests/lint/check_asf_header.sh

This file was deleted.

2 changes: 1 addition & 1 deletion tests/lint/cppdocs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function cleanup() {
}
trap cleanup EXIT

make cppdoc 2>/tmp/$$.log.txt
doxygen docs/Doxyfile 2>/tmp/$$.log.txt

grep -v -E "ENABLE_PREPROCESSING|unsupported tag|Inheritance graph|use_default_type_traits_v" < /tmp/$$.log.txt > /tmp/$$.logclean.txt || true
echo "---------Error Log----------"
Expand Down
20 changes: 0 additions & 20 deletions tests/lint/flake8.sh

This file was deleted.

20 changes: 0 additions & 20 deletions tests/lint/git-black.sh

This file was deleted.

20 changes: 0 additions & 20 deletions tests/lint/git-clang-format.sh

This file was deleted.

20 changes: 0 additions & 20 deletions tests/lint/jnilint.sh

This file was deleted.

20 changes: 0 additions & 20 deletions tests/lint/pylint.sh

This file was deleted.

20 changes: 0 additions & 20 deletions tests/lint/whitespace.sh

This file was deleted.

6 changes: 3 additions & 3 deletions tests/scripts/task_java_unittest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ cleanup()
}
trap cleanup 0

make jvmpkg
bash "$(dirname "$0")/task_jvm_build.sh"

# Skip the Java Tests for now
exit 0

# expose tvm runtime lib to system env
export LD_LIBRARY_PATH=$CURR_DIR/../../build/:$LD_LIBRARY_PATH
python "$SCRIPT_DIR"/prepare_test_libs.py "$TEMP_DIR"
make jvmpkg JVM_TEST_ARGS="-DskipTests=false\
-Dtest.tempdir=$TEMP_DIR"
JVM_TEST_ARGS="-DskipTests=false -Dtest.tempdir=$TEMP_DIR" \
bash "$(dirname "$0")/task_jvm_build.sh"
Loading
Loading