Searched +full:- +full:gen (Results 1 – 12 of 12) sorted by relevance
/cmsis-dsp-latest/Testing/FrameworkSource/ |
D | FPGA.cpp | 1 /* ---------------------------------------------------------------------- 13 * Target Processor: Cortex-M cores 14 * -------------------------------------------------------------------- */ 16 * Copyright (C) 2010-2019 ARM Limited or its affiliates. All rights reserved. 18 * SPDX-License-Identifier: Apache-2.0 24 * www.apache.org/licenses/LICENSE-2.0 59 this->m_testDesc=testDesc; in FPGA() 60 this->m_patterns=patterns; in FPGA() 62 this->currentDesc=testDesc; in FPGA() 63 this->path=new std::vector<std::string>(); in FPGA() [all …]
|
D | Semihosting.cpp | 1 /* ---------------------------------------------------------------------- 12 * Target Processor: Cortex-M cores 13 * -------------------------------------------------------------------- */ 15 * Copyright (C) 2010-2019 ARM Limited or its affiliates. All rights reserved. 17 * SPDX-License-Identifier: Apache-2.0 23 * www.apache.org/licenses/LICENSE-2.0 59 this->infile=fopen(path.c_str(), "r"); in Semihosting() 60 this->path=new std::vector<std::string>(); in Semihosting() 61 this->patternRootPath=patternRootPath; in Semihosting() 62 this->outputRootPath=outputRootPath; in Semihosting() [all …]
|
/cmsis-dsp-latest/ |
D | gen_pack.sh | 3 # Date: 2023-11-06 4 # This bash script generates a CMSIS-DSP Software Pack: 7 set -o pipefail 9 # Set version of gen pack library 10 # For available versions see https://github.com/Open-CMSIS-Pack/gen-pack/tags. 15 DEFAULT_ARGS=(-c "v") 17 # Pack warehouse directory - destination 76 # - full Tag annotations, release descriptions, or commit messages (in order) 77 # - release Tag annotations, or release descriptions (in order) 78 # - tag Tag annotations only [all …]
|
/cmsis-dsp-latest/Documentation/Doxygen/ |
D | gen_doc.sh | 3 # Date: 2023-11-06 4 # This bash script generates CMSIS-DSP Documentation: 6 # Pre-requisites: 7 # - bash shell (for Windows: install git for Windows) 8 # - doxygen 1.9.6 9 # - linkchecker (can be skipped with -s) 11 set -o pipefail 13 # Set version of gen pack library 14 # For available versions see https://github.com/Open-CMSIS-Pack/gen-pack/tags. 18 DIRNAME=$(dirname "$(readlink -f "$0")") [all …]
|
/cmsis-dsp-latest/.github/workflows/ |
D | pack.yml | 11 group: ${{ github.workflow }}-${{ github.ref }} 12 cancel-in-progress: true 17 runs-on: ubuntu-22.04 19 - uses: actions/checkout@v4 21 fetch-depth: 0 23 - name: Fetch tags 25 git fetch --tags --force 27 - uses: Open-CMSIS-Pack/gen-pack-action@main 29 doxygen-version: 1.9.6 30 packchk-version: 1.4.1 [all …]
|
D | runtest.yaml | 11 security-events: write 16 fail-fast: false 19 runs-on: ubuntu-latest 22 - name: Checkout 25 - name: Setup Python 3.10 26 uses: actions/setup-python@v5 28 python-version: '3.10' 30 cache-dependency-path: Testing/requirements.txt 32 - name: Install system packages 34 sudo add-apt-repository ppa:deadsnakes/ppa [all …]
|
/cmsis-dsp-latest/Testing/ |
D | processTests.py | 8 parser.add_argument('-f', nargs='?',type = str, default="Output.pickle", help="Pickle path") 10 parser.add_argument('-p', nargs='?',type = str, default="Patterns", help="Pattern dir path") 11 parser.add_argument('-d', nargs='?',type = str, default="Parameters", help="Parameter dir path") 12 parser.add_argument('-gen', nargs='?',type = str, default=".", help="Folder for generated C sources… 14 # -e true when no semihosting 18 parser.add_argument('-e', action='store_true', help="Embedded test") 20 parser.add_argument('-b', action='store_true', help="Benchmark mode to use different generated fold… 38 c.genCodeForTree(args.gen,root,args.b)
|
/cmsis-dsp-latest/Testing/cmsis_build/ |
D | quicktest.bat | 2 ECHO "Gen Test" 4 python processTests.py -f Output.pickle -e UnaryTestsF32 8 REM cbuild "test.Release+VHT-Corstone-300.cprj" 10 …orstone_SSE-300_Ethos-U55.exe -f configs/ARM_VHT_Corstone_300_config.txt -a cpu0="out\test\VHT-Cor… 12 REM python ..\processResult.py -f ..\Output.pickle -e -r results_cs300_u55.txt 19 REM C:\Keil_v5\ARM\VHT_11.18.29\VHT_MPS2_Cortex-M7.exe -f configs/ARM_VHT_MPS2_M7DP_config.txt out\… 21 REM python ..\processResult.py -f ..\Output.pickle -e -r results_m7_unrolled.txt 28 C:\Keil_v5\ARM\VHT_11.18.29\VHT_MPS2_Cortex-M0plus.exe -f configs/ARM_VHT_MPS2_M0plus_config.txt ou… 30 python ..\processResult.py -f ..\Output.pickle -e -r results_m0p.txt 37 REM C:\Keil_v5\ARM\VHT_11.18.29\VHT_MPS2_Cortex-M55.exe -f configs/ARM_VHT_MPS2_M55_config.txt -a c… [all …]
|
D | runall.py | 11 parser.add_argument('-avh', nargs='?',type = str, default="C:/Keil_v5/ARM/avh-fvp/bin/models", help… 12 parser.add_argument('-d', action='store_true', help="Debug log") 13 parser.add_argument('-n', action='store_true', help="No force rebuild") 14 parser.add_argument('-r', action='store_true', help="Raw results only") 15 parser.add_argument('-c', action='store_true', help="Display cycles (so passing test are displayed)… 16 parser.add_argument('-g', nargs='?',type = str,help="AC6 / CLANG / GCC") 17 parser.add_argument('-s', action='store_true', help="Take into account AVH error code") 129 "CS310":"FVP_Corstone_SSE-310_Ethos-U65", 130 "CS300":"FVP_Corstone_SSE-300_Ethos-U55", 131 "M55":"FVP_MPS2_Cortex-M55", [all …]
|
/cmsis-dsp-latest/dsppp/ |
D | run_all.py | 59 print("--------------",file=err) 86 parser.add_argument('-c', nargs='?',type = str, default="M55",help="M55/M4/M0") 87 parser.add_argument('-p', nargs='?',type = str, default="VHT",help="VHT/MPS3") 88 parser.add_argument('-a', action='store_true', help="Generate allocator definitions") 89 parser.add_argument('-i', action='store_true', help="Refresh global allocator index") 90 parser.add_argument('-b', action='store_true', help="Only benchmarks") 91 parser.add_argument('-d', action='store_true', help="Dry run") 92 parser.add_argument('-g', nargs='?',type = str, default="AC6",help="AC6 / CLANG / GCC") 93 parser.add_argument('-u', nargs='?',type = str, default="L85986697A",help="Debug UUID") 94 parser.add_argument('-t', action='store_true', help="Enable test mode") [all …]
|
/cmsis-dsp-latest/Testing/PatternGeneration/ |
D | Support.py | 82 # Gen samples for datatype conversions 86 sat = np.array([-1.0,1.0,-2.1,2.1])
|
/cmsis-dsp-latest/Testing/TestScripts/ |
D | CodeGen.py | 29 if value & (1 << (bits-1)): 30 value -= 1 << bits 104 testInit += "this->addContainer(NULL);" 108 testInit += "this->addContainer(&%s);\n" % (theMemberVar) 153 … testInit += "this->addTest(%d,(Client::test)&%s::%s);\n" % (theId,theClass,theTestName) 302 gen data if a generator 604 pad = self._alignment*math.ceil(newOffset / self._alignment) - newOffset 671 pad = self._alignment*math.ceil(newOffset / self._alignment) - newOffset
|