Skip to content

Commit c5ddd8c

Browse files
authored
Fix broken links in md docks (#228)
1 parent 4d0ec1a commit c5ddd8c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ in the LCE root directory.
7575
## Build LCE Runtime
7676

7777
LCE runtime has a diverse platform support, covering
78-
[Android](/compute-engine/quickstart_android) and [ARM-based boards](/compute-engine/build_arm)
78+
[Android](https://docs.larq.dev/compute-engine/quickstart_android) and [ARM-based boards](https://docs.larq.dev/compute-engine/build_arm)
7979
such as Raspberry Pi. To build/install/run LCE runtime on
8080
each of these platforms, please refer to the corresponding guide.
8181

docs/build_arm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ the following order:
1919
[Cross-compiling LCE with Make](#cross-compiling-lce-with-make).
2020

2121
This guide will show you how to build the [LCE example program](https://github.com/larq/compute-engine/blob/master/examples/lce_minimal.cc).
22-
See [here](/compute-engine/inference) to find out how you can create your own LCE
22+
See [here](https://docs.larq.dev/compute-engine/inference) to find out how you can create your own LCE
2323
inference binary.
2424

2525
NOTE: Although the Raspberry Pi 3 and Raspberry Pi 4 have 64-bit CPUs, the
@@ -29,7 +29,7 @@ as [Manjaro](https://manjaro.org/download/#raspberry-pi-4-xfce) should be used.
2929

3030
## Cross-compiling LCE with Bazel
3131

32-
First configure Bazel using the instructions [here](/compute-engine/build#configure-bazelrc).
32+
First configure Bazel using the instructions [here](https://docs.larq.dev/compute-engine/build#configure-bazelrc).
3333

3434
To cross-compile the LCE example for ARM architectures, the bazel
3535
target needs to be built with the `--config=rpi3` (32-bit ARM) or

docs/inference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ uses LCE custom operators instead of built-in TensorFlow Lite operators for each
77
subgraph of the model.
88

99
This guide describes how to create a TensorFlow Lite interpreter with registered
10-
LCE custom Ops and perform an inference with a [converted Larq model](/compute-engine/converter)
10+
LCE custom Ops and perform an inference with a [converted Larq model](https://docs.larq.dev/compute-engine/converter)
1111
using LCE C++ API.
1212

1313
## Load and run a model in C++

docs/quickstart_android.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ you must have the [Android NDK](https://developer.android.com/ndk) and
66
Below we explain how to install the Android prerequisites in the LCE
77
Docker container and how to configure the LCE Bazel build settings
88
accordingly. Before proceeding with the next steps, please follow
9-
the instructions in the main [LCE build guide](/compute-engine/build) to setup the
9+
the instructions in the main [LCE build guide](https://docs.larq.dev/compute-engine/build) to setup the
1010
Docker container for LCE and the Bazel build system.
1111

1212
NOTE: we recommend using the docker volume as described in the
13-
[LCE build guide](/compute-engine/build) to be able to easily transfer
13+
[LCE build guide](https://docs.larq.dev/compute-engine/build) to be able to easily transfer
1414
files in-between the container and host machine.
1515

1616
#### Install prerequisites
@@ -47,7 +47,7 @@ build --action_env ANDROID_SDK_HOME="/usr/local/android/android-sdk-linux"
4747

4848
#### Build an LCE inference binary
4949

50-
To build an LCE inference binary for Android (see [here](/compute-engine/inference) for creating your
50+
To build an LCE inference binary for Android (see [here](https://docs.larq.dev/compute-engine/inference) for creating your
5151
own LCE binary) the Bazel target needs to build with `--config=android_arm64` flag.
5252

5353
To build the [minimal example](https://github.com/larq/compute-engine/blob/master/examples/lce_minimal.cc) for Android,
@@ -70,7 +70,7 @@ See below on how to copy them to your android device.
7070

7171
#### Run inference
7272

73-
To run the inference with a [Larq converted model](/compute-engine/converter) on an android phone,
73+
To run the inference with a [Larq converted model](https://docs.larq.dev/compute-engine/converter) on an android phone,
7474
please follow these steps on your host machine (replace the `lce_benchmark_model` with your
7575
desired inference binary):
7676

0 commit comments

Comments
 (0)