Searched refs:build (Results 1 – 25 of 39) sorted by relevance
12
/cmsis-dsp-latest/ |
D | README.md | 21 …build and use CMSIS-DSP library. Building the other projects may require installation of other lib… 59 * [How to build](#how-to-build) 60 * [How to build with MDK or Open CMSIS-Pack](#how-to-build-with-mdk-or-open-cmsis-pack) 61 * [How to build with Make](#how-to-build-with-make) 62 * [How to build with cmake](#how-to-build-with-cmake) 63 * [How to build with any other build system](#how-to-build-with-any-other-build-system) 64 * [How to build for aarch64](#how-to-build-for-aarch64) 106 ## How to build 108 You can build CMSIS-DSP with the open CMSIS-Pack, or cmake, or Makefile and it is also easy to buil… 110 ### How to build with MDK or Open CMSIS-Pack argument [all …]
|
D | .gitignore | 5 DSP_Lib_TestSuite/build/ 11 build 38 PythonWrapper/build_linux/build.sh
|
D | pyproject.toml | 1 [build-system] 7 build-backend = "setuptools.build_meta"
|
D | setup.py | 160 def build(): function 217 build()
|
D | PythonWrapper_README.md | 16 # How to build and install 48 …t is not possible for us to test all configurations), you can then try to build and install the wr… 57 Once `NumPy` is installed, you can build the [CMSIS-DSP](https://github.com/ARM-software/CMSIS-DSP)… 65 …The `build` folders in `PythonWrapper` are giving some examples of the options to use with the `cm… 67 This library is then used by the `setup.py` script to build the Python extension.
|
/cmsis-dsp-latest/PythonWrapper/ |
D | .gitignore | 3 build/bin_dsp 4 build/cmake_install.cmake 5 build/CMakeFiles 6 build/Makefile 7 build/CMakeCache.txt
|
/cmsis-dsp-latest/PythonWrapper/docs/ |
D | make.bat | 8 set SPHINXBUILD=sphinx-build 11 set BUILDDIR=build 18 echo.The 'sphinx-build' command was not found. Make sure you have Sphinx 20 echo.to the full path of the 'sphinx-build' executable. Alternatively you
|
D | Makefile | 7 SPHINXBUILD ?= sphinx-build 9 BUILDDIR = build
|
/cmsis-dsp-latest/Testing/cmsis_build/ |
D | runall.py | 155 def runAVH(build,core,compiler): argument 156 axf="cprj/out/test/%s/Release/test.axf" % (build,) 157 elf="cprj/out/test/%s/Release/test.elf" % (build,) 299 for build,core in solutions: 301 print("<h2>Core %s</h2>" % build,file=f) 302 printTitle("Process core %s (%d/%d)" % (build,buildNb,maxNbBuilds)) 303 buildFile="test.Release+%s" % build 335 res=runAVH(build,core,compiler)
|
/cmsis-dsp-latest/Documentation/Doxygen/src/ |
D | memory_static_dynamic.md | 6 * `Vector<T,NB>` with a dimension known at build time 12 With "static" vectors : the length is fixed at build time and will never change at runtime. 18 The advantage of static objects is that the dimension is known at build time. The compiler can thus… 24 If you need lots of objects of different dimensions, or if the dimensions are not known at build ti… 30 Also when dimension is not know at build time, some instruction selection made by the C++ library a…
|
D | memory_allocator.md | 9 is allocating a vector of dimension `NB` (known at build time) and datatype `float32_t`. 32 /* Dimension L know at build time (L > 0) */ 44 …ten in DSP pipelines, the dimensions of the vectors and matrixes are fixed and known at build time. 86 …given as example in this library is only working with dimensions known at build time. For runtime …
|
D | template.md | 37 `Vector<float32_t,10>` for a vector of `float` and of length `10`. The length being known at build … 50 …) used to tell the compiler that the length of the vector is not known at build time but only at r… 52 …` definition whereas other variants do not need this field since the length is known at build time. 56 …eader. You only need to include this header to start using the template. There is nothing to build.
|
D | vector.md | 15 …tic length of the vector (length known at build time). `L<0` when the length is dynamic and not kn… 111 * The end of the view (`L` by default : the length known at build time). Note that it is the first …
|
D | vectorop.md | 44 `Vector<float32_t,NB>` is creating a vector of dimension `NB` (known at build time) and datatype `f… 52 If you don't know the dimension at build time, you can use a different type of vector with: 58 For the trade-off between vector with build time dimension or runtime dimension please see the sect…
|
D | history.txt | 15 * Updated support for cmsis build tools 2.0 20 * If you know the size of the transform at build time, prefer functions like
|
D | guidelines.md | 3 … generally be allocated through a `malloc` since the size is not known at build time. It can be an…
|
D | building.md | 3 ## To build
|
D | dsppp_main.md | 5 …RM-software/CMSIS-DSP/tree/main/dsppp/Include/dsppp). There is nothing to build. Just include the …
|
/cmsis-dsp-latest/Examples/ |
D | .gitignore | 1 build/
|
/cmsis-dsp-latest/dsppp/RTE/Device/ARMCM0P/ |
D | clang_linker_script.ld | 308 .gnu.build.attributes : { *(.gnu.build.attributes .gnu.build.attributes.*) }
|
/cmsis-dsp-latest/dsppp/RTE/Device/SSE_300_MPS3/ |
D | clang_linker_script.ld | 308 .gnu.build.attributes : { *(.gnu.build.attributes .gnu.build.attributes.*) }
|
/cmsis-dsp-latest/dsppp/linker_scripts/ |
D | clang_sse300_mps3.sct | 319 .gnu.build.attributes : { *(.gnu.build.attributes .gnu.build.attributes.*) }
|
D | clang_sse310_mps3.sct | 318 .gnu.build.attributes : { *(.gnu.build.attributes .gnu.build.attributes.*) }
|
D | clang_m0p_mps3.ld | 308 .gnu.build.attributes : { *(.gnu.build.attributes .gnu.build.attributes.*) }
|
/cmsis-dsp-latest/dsppp/RTE/Device/ARMCM4/ |
D | clang_linker_script.ld | 308 .gnu.build.attributes : { *(.gnu.build.attributes .gnu.build.attributes.*) }
|
12