Skip to content

Commit 375bac4

Browse files
authoredOct 24, 2022
Move documentation docs top level folder (#584)
* update root readme * add readme file to docs folder * mode env setup to docs folder * move build-and-run to docs * move adding-custom-backend to docs * move custom-tasks to docs * move firebase to docs * move result-spec to docs * move result json schema to tools * fix linter
1 parent 1bb7c44 commit 375bac4

15 files changed

+48
-34
lines changed
 

‎README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This project contains the MLPerf mobile app, an app-based implementation of
44
[MLPerf Inference](https://github.com/mlperf/inference) tasks.
55

6-
**Table of Contents**:
6+
## Table of Contents
77

88
* [Overview](#overview)
99
* [Folder Structure](#folder-structure)
@@ -47,15 +47,15 @@ frameworks contributed by the broader MLPerf community.
4747

4848
## Folder Structure
4949

50-
* flutter - Contains the Flutter (cross-platform) version of the app
51-
* mobile_back_qti - QTI backend for Android
52-
* mobile_back_samsung - Samsung backend for Android
53-
* mobile_back_pixel - Google Pixel backend for Android
54-
* mobile_back_tflite - Combined TFLite / MediaTek backends for Android and TFLite backend for iOS
55-
* mobile_back_apple - Apple backend (Core ML) for iOS
56-
* datasets - Contains scripts to prepare test and calibration data used for accuracy evaluation and model quantization
57-
* docs - contains documentation
58-
* tools - contains miscellaneous tools (e.g. formatting commands, code scanner)
50+
* [datasets](./datasets) - Contains scripts to prepare test and calibration data used for accuracy evaluation and model quantization
51+
* [docs](./docs) - contains documentation
52+
* [flutter](./flutter) - Contains the Flutter (cross-platform) version of the app
53+
* [mobile_back_apple](./mobile_back_apple) - Apple backend (Core ML) for iOS
54+
* [mobile_back_pixel](./mobile_back_pixel) - Google Pixel backend for Android
55+
* [mobile_back_qti](./mobile_back_qti) - QTI backend for Android
56+
* [mobile_back_samsung](./mobile_back_samsung) - Samsung backend for Android
57+
* [mobile_back_tflite](./mobile_back_tflite) - Combined TFLite / MediaTek backends for Android and TFLite backend for iOS
58+
* [tools](./tools) - contains miscellaneous tools (e.g. formatting commands, code scanner)
5959

6060
## Related Repositories
6161

‎flutter/documentation/adding-custom-backend.md ‎docs/adding-custom-backend.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,19 @@ Set `backend_<vendor>_android_target` to appropriate value for your build system
4343
You will need to do few things:
4444

4545
* Include your `<vendor>_backend.mk` into the root makefile.
46-
* Add new line with your `<VENDOR>_TAG` into [list.in](../lib/backend/list.in).
46+
* Add new line with your `<VENDOR>_TAG` into [list.in](../flutter/lib/backend/list.in).
4747
Note that order is important in this file. Backends are evaluated in the order they are defined, and the app never checks backends after TFLite.
4848
Place your tag before TFLite tag.
49-
* Add line to substitute this tag with the actual name of your backend lib into [flutter.mk](../flutter.mk) in the `flutter/backend-list` make target
49+
* Add line to substitute this tag with the actual name of your backend lib into [flutter.mk](../flutter/flutter.mk) in the `flutter/backend-list` make target
5050
* Add commands to build your backend when `WITH_<VENDOR>=1` make variable is supplied.
51-
Modify `flutter/android/libs` ([android.mk](../android/android.mk)) or `flutter/windows/libs` ([windows.mk](../windows/windows.mk)), depending on your platform:
51+
Modify `flutter/android/libs` ([android.mk](../flutter/android/android.mk))
52+
or `flutter/windows/libs` ([windows.mk](../flutter/windows/windows.mk)), depending on your platform:
5253
* If you use bazel as your build system, just add a line `${backend_<vendor>_android_target}` into appropriate position
5354
* If you use different build system, add a condition to only build your backend when `WITH_<VENDOR>=1` is defined.
54-
* Add a line `${backend_<vendor>_android_files}` into the copy command
55+
* Add a line `${backend_<vendor>_android_files}` into the `copy` command
5556

5657
## Implementing backend interface
5758

58-
Backend C API is defined in [flutter/cpp/c/backend_c.h](../../flutter/cpp/c/backend_c.h).
59+
Backend C API is defined in [flutter/cpp/c/backend_c.h](../flutter/cpp/c/backend_c.h).
5960
Unfortunately, we don't have any documentation on details of how to implement it yet.
60-
You can look at the [reference TFLite backend implementation](../../mobile_back_tflite) for hints or create an issue if something is not clear.
61+
You can look at the [reference TFLite backend implementation](../mobile_back_tflite) for hints or create an issue if something is not clear.

‎docs/build_and_release.md ‎docs/build-and-release.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Build and Release
1+
# Build and Release Rules
22

33
## Build artifacts
44

‎flutter/documentation/build-and-run.md ‎docs/build-and-run.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -99,16 +99,17 @@ You can run `make flutter/build-info` manually before you do hot reload to updat
9999
[comment]: # (TODO add information about using Android emulators)
100100

101101
On Linux command `make flutter` builds native libs automatically.
102-
See [Android environment setup guide](./env-setup-android.md#setting-up-the-environment-on-ubuntu).
102+
See [Android environment setup guide](./environment-setup/env-setup-android.md#setting-up-the-environment-on-ubuntu).
103103

104104
On macOS `make flutter` will try to build native libs for iOS. Run `make flutter/android` to build android libs on macOS.
105105
Unfortunately, there is no complete environment setup guide for now.
106-
See [macOS guide](./env-setup-ios.md#setting-up-the-environment) for general setup and [Ubuntu guide](./env-setup-android.md#setting-up-the-environment-on-ubuntu) for android-specific parts.
106+
See [macOS guide](./environment-setup/env-setup-ios.md#setting-up-the-environment) for general setup
107+
and [Ubuntu guide](./environment-setup/env-setup-android.md#setting-up-the-environment-on-ubuntu) for android-specific parts.
107108

108109
On Windows building libs for Android is not available.
109110
You can copy `.so` files from some Linux or macOS system, then run `make flutter/prepare`, and then run Flutter commands locally.
110111
For example, it's relatively convenient to use WSL to build native libs.
111-
See [Windows environment setup guide](./env-setup-windows.md#setting-up-the-environment) to set up your system to run Flutter.
112+
See [Windows environment setup guide](./environment-setup/env-setup-windows.md#setting-up-the-environment) to set up your system to run Flutter.
112113

113114
Run `make OFFICIAL_BUILD=false FLUTTER_BUILD_NUMBER=0 flutter/android/release` to build APK from scratch,
114115
or run `make flutter/android/apk` after `make flutter/prepare` and you already have native libs.
@@ -129,7 +130,7 @@ rm -f flutter/android/gradle/wrapper/gradle-wrapper.jar
129130

130131
Building for iOS is available only on macOS.
131132

132-
See [iOS environment setup guide](./env-setup-ios.md#setting-up-the-environment).
133+
See [iOS environment setup guide](./environment-setup/env-setup-ios.md#setting-up-the-environment).
133134

134135
If you want to run the app on a real device, you have to change settings in XCode:
135136

@@ -160,7 +161,7 @@ Run `make OFFICIAL_BUILD=false FLUTTER_BUILD_NUMBER=0 flutter/ios/release` to cr
160161

161162
Building for Windows is available only on Windows.
162163

163-
See [Windows environment setup guide](./env-setup-windows.md#setting-up-the-environment).
164+
See [Windows environment setup guide](./environment-setup/env-setup-windows.md#setting-up-the-environment).
164165

165166
On Windows it's pretty easy to use Visual Studio debugger for native libs.
166167

‎flutter/documentation/custom-tasks.md ‎docs/custom-tasks.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ The `benchmarksConfigurations.json` looks like this:
3030
See [How to specify a resource](#how-to-specify-a-resource) for details on how to specify a path to the config.
3131

3232
The `tasks.pbtxt` file is a text file in [protobuf](https://developers.google.com/protocol-buffers) format.
33-
The format specification for this app is [here](../cpp/proto/mlperf_task.proto).
34-
The easiest way to create a custom config is to copy and modify [the default config](../assets/tasks.pbtxt).
33+
The format specification for this app is [here](../flutter/cpp/proto/mlperf_task.proto).
34+
The easiest way to create a custom config is to copy and modify [the default config](../flutter/assets/tasks.pbtxt).
3535

3636
After adding new option into the `benchmarksConfigurations.json` file
3737
run application and open setting screen.

‎flutter/documentation/env-setup-android.md ‎docs/environment-setup/env-setup-android.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Android environment setup guide
22

3-
This file describes how to setup the environment for Android builds on Ubuntu.
3+
This file describes how to setup the environment for Android builds.
44

55
Android native libs can not be built on Windows.
66
If you use Windows as your primary build system you will have to use a helper linux or macos system to build libs.
File renamed without changes.
File renamed without changes.

‎docs/readme.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
# Documentation overview
3+
4+
This folder contains most of the documentation files. Documentation contains mostly development instructions.
5+
6+
Refer to the [root README file](../README.md) for general overview of the repo.
7+
8+
## Table of Contents
9+
10+
* [Build and Release Rules](./build-and-release.md)
11+
* [Glossary](./glossary.md)
12+
* [Environment setup for Android builds](./environment-setup/env-setup-android.md)
13+
* [Environment setup for iOS builds](./environment-setup/env-setup-ios.md)
14+
* [Environment setup for Windows builds](./environment-setup/env-setup-windows.md)
15+
* [Build and Run the app](./build-and-run.md)
16+
* [Adding support for a new custom backend](./adding-custom-backend.md)
17+
* [Using custom benchmark configuration](./custom-tasks.md)
18+
* [Working with Firebase](./firebase.md)
19+
* [Formal result specification](./result-spec.md)
File renamed without changes.

‎flutter/README.md

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
11
# flutter
22

33
This folder contains sources of Flutter version of the MLPerfBench application.
4-
5-
## Documentation
6-
7-
* [Building for app on different platforms](./documentation/build-and-run.md)
8-
* [Using custom benchmark configuration](./documentation/custom-tasks.md)
9-
* [Adding support for your custom backend](./documentation/adding-custom-backend.md)
10-
* [Working with Firebase](./documentation/firebase.md)

‎flutter/flutter.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ flutter/result/test-sample:
119119
make flutter/result/sample \
120120
RESULT_JSON_SAMPLE_PATH=flutter_common/test/data/result_sample.json
121121

122-
default_result_json_schema_path=flutter/documentation/extended-result.schema.json
122+
default_result_json_schema_path=tools/extended-result.schema.json
123123
RESULT_JSON_SCHEMA_PATH?=${default_result_json_schema_path}
124124
.PHONY: flutter/result/schema
125125
flutter/result/schema: flutter/result/sample

‎website/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
This folder contains files for the Flutter Web Single Page Application
44
that provides access to the online database of results from the MLPerfBench benchmark.
55

6-
See [documentation](../flutter/documentation/firebase.md#developing-website) for details about developing and deploying the website.
6+
See [documentation](../docs/firebase.md#developing-website) for details about developing and deploying the website.

0 commit comments

Comments
 (0)
Please sign in to comment.