Tweaks doxygen so that we have a better main page.

This commit is contained in:
Daniel Lemire 2020-06-17 11:07:21 -04:00
parent 7ea05d038e
commit b5ea504ad2
6 changed files with 34 additions and 3 deletions

View File

@ -829,7 +829,7 @@ WARN_LOGFILE =
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.
INPUT = include
INPUT = doc include
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
@ -1026,7 +1026,7 @@ FILTER_SOURCE_PATTERNS =
# (index.html). This can be useful if you have a project on for instance GitHub
# and want to reuse the introduction page also for the doxygen output.
USE_MDFILE_AS_MAINPAGE =
USE_MDFILE_AS_MAINPAGE = doc/basics.md
#---------------------------------------------------------------------------
# Configuration options related to source browsing

View File

@ -516,3 +516,12 @@ Backwards Compatibility
The only header file supported by simdjson is simdjson.h. Older versions of simdjson published a
number of other include files such as document.h or ParsedJson.h alongside simdjson.h; these headers
may be moved or removed in future versions.
Further Reading
-------------
* [Performance](doc/performance.md) shows some more advanced scenarios and how to tune for them.
* [Implementation Selection](doc/implementation-selection.md) describes runtime CPU detection and
how you can work with it.

View File

@ -81,3 +81,11 @@ can select the CPU architecture yourself:
// Use the fallback implementation, even though my machine is fast enough for anything
simdjson::active_implementation = simdjson::available_implementations["fallback"];
```
Further Reading
-------------
* [Performance](doc/performance.md) shows some more advanced scenarios and how to tune for them.
* [Implementation Selection](doc/implementation-selection.md) describes runtime CPU detection and
how you can work with it.

View File

@ -154,3 +154,11 @@ From [jsonlines.org](http://jsonlines.org/examples/):
```
JSON Lines' biggest strength is in handling lots of similar nested data structures. One .jsonl file is easier to
work with than a directory full of XML files.
Further Reading
-------------
* [Performance](doc/performance.md) shows some more advanced scenarios and how to tune for them.
* [Implementation Selection](doc/implementation-selection.md) describes runtime CPU detection and
how you can work with it.

View File

@ -152,3 +152,10 @@ On Intel and AMD Windows platforms, Microsoft Visual Studio enables programmers
We do not recommend that you compile simdjson with architecture-specific flags such as `arch:AVX2`. The simdjson library automatically selects the best execution kernel at runtime.
Recent versions of Microsoft Visual Studio on Windows provides support for the LLVM Clang compiler. You only need to install the "Clang compiler" optional component. You may also get a copy of the 64-bit LLVM CLang compiler for [Windows directly from LLVM](https://releases.llvm.org/download.html). The simdjson library fully supports the LLVM Clang compiler under Windows. In fact, you may get better performance out of simdjson with the LLVM Clang compiler than with the regular Visual Studio compiler.
Further Reading
-------------
* [Implementation Selection](doc/implementation-selection.md) describes runtime CPU detection and
how you can work with it.

View File

@ -134,4 +134,3 @@ In-between these two tape elements, we alternate between key (which must be stri
All the content of the object is located between these two tape elements, including arrays and objects.
Performance consideration: We can skip the content of an object entirely by accessing the first 64-bit tape element, reading the payload and moving to the corresponding index on the tape.