Home
last modified time | relevance | path

Searched +full:- +full:- +full:graph (Results 1 – 16 of 16) sorted by relevance

/Zephyr-Core-3.7.0/scripts/dts/python-devicetree/src/devicetree/
Dgrutils.py1 # Copyright 2009-2013, 2019 Peter A. Bigot
3 # SPDX-License-Identifier: Apache-2.0
11 class Graph: class
13 Represent a directed graph with edtlib Node objects as nodes.
31 Add a node without any target to the graph.
39 The nodes are added to the graph if necessary.
64 # Execute Tarjan's algorithm on the graph.
68 # computes the strongly-connected components
70 # of the graph: i.e., the sets of nodes that form a minimal
85 … raise Exception('TARJAN: No roots found in graph with {} nodes'.format(len(self.__nodes)))
[all …]
Dedtlib.py3 # SPDX-License-Identifier: BSD-3-Clause
17 but a binding can also come from a 'child-binding:' key in the binding for the
23 The top-level entry points for the library are the EDT and Binding classes.
31 # --------------------
47 # - Consider using @property for APIs that don't need parameters. It makes
51 # - Think about the data type of the thing you're exposing. Exposing something
55 # - Avoid get_*() prefixes on functions. Name them after the thing they return
60 # - Don't expose dtlib stuff directly.
62 # - Add documentation for any new APIs you add.
90 from devicetree.grutils import Graph
[all …]
/Zephyr-Core-3.7.0/scripts/build/
Delf_parser.py5 # SPDX-License-Identifier: Apache-2.0
55 DEVICE_HANDLE_SEP = -32768
70 self._ordinals_split.append(self._ordinals[prev:idx-1])
135 True if the elf file is for a little-endian architecture.
164 offset = addr - (0 if self.relocatable else section['sh_addr'])
189 # Compute the dependency graph induced from the full graph restricted to the
191 # induced graph correspond to paths in the full graph.
Dgen_device_deps.py6 # SPDX-License-Identifier: Apache-2.0
12 This information is encoded in the first-pass binary using identifiers
17 For example the sensor might have a first-pass handle defined by its
26 driver-specific object file.
38 'dts', 'python-devicetree', 'src'))
47 parser.add_argument("-k", "--kernel", required=True,
49 parser.add_argument("--dynamic-deps", action="store_true",
51 parser.add_argument("-d", "--num-dynamic-devices", required=False, default=0,
53 parser.add_argument("-o", "--output-source", required=True,
55 parser.add_argument("-g", "--output-graphviz",
[all …]
/Zephyr-Core-3.7.0/samples/modules/tflite-micro/magic_wand/src/
Dmain_functions.cpp8 * http://www.apache.org/licenses/LICENSE-2.0
29 /* Globals, used for compatibility with Arduino-style sketches. */
51 if (model->version() != TFLITE_SCHEMA_VERSION) { in setup()
54 model->version(), TFLITE_SCHEMA_VERSION); in setup()
59 * This relies on a complete list of all the ops needed by this graph. in setup()
62 * needed by this graph. in setup()
77 interpreter->AllocateTensors(); in setup()
80 model_input = interpreter->input(0); in setup()
81 if ((model_input->dims->size != 4) || (model_input->dims->data[0] != 1) || in setup()
82 (model_input->dims->data[1] != 128) || in setup()
[all …]
/Zephyr-Core-3.7.0/.github/workflows/
Dscripts_tests.yml2 # SPDX-License-Identifier: Apache-2.0
9 - main
10 - v*-branch
12 - 'scripts/build/**'
13 - '.github/workflows/scripts_tests.yml'
16 - main
17 - v*-branch
19 - 'scripts/build/**'
20 - '.github/workflows/scripts_tests.yml'
23 scripts-tests:
[all …]
Dhello_world_multiplatform.yaml6 - main
7 - v*-branch
8 - collab-*
11 - main
12 - v*-branch
13 - collab-*
15 - 'scripts/build/**'
16 - 'scripts/requirements*.txt'
17 - '.github/workflows/hello_world_multiplatform.yaml'
18 - 'SDK_VERSION'
[all …]
Ddoc-build.yml2 # SPDX-License-Identifier: Apache-2.0
8 - cron: '0 */3 * * *'
11 - v*
22 # and each sphinx-build process may use more than 2GiB of RAM.
26 doc-file-check:
28 runs-on: ubuntu-22.04
30 github.repository_owner == 'zephyrproject-rtos'
32 file_check: ${{ steps.check-doc-files.outputs.any_changed }}
34 - name: checkout
38 fetch-depth: 0
[all …]
/Zephyr-Core-3.7.0/samples/net/cloud/tagoio_http_post/
DREADME.rst1 .. zephyr:code-sample:: tagoio-http-post
3 :relevant-api: bsd_sockets http_client dns_resolve tls_credentials
12 values to simulate a real device. This can be used to speed-up development
21 - A free `TagoIO`_ account
22 - A board with internet connectivity, see :ref:`networking`
23 - The example provides three ways to get internet:
48 tagoio-http-client sample application with minimal configuration:
50 .. zephyr-app-commands::
51 :zephyr-app: samples/net/cloud/tagoio_http_post
65 :zephyr_file:`samples/net/cloud/tagoio_http_post/overlay-wifi.conf` file.
[all …]
/Zephyr-Core-3.7.0/doc/
Dzephyr.doxyfile.in20 # doxygen -x [configFile]
24 # doxygen -x_noenv [configFile]
26 #---------------------------------------------------------------------------
28 #---------------------------------------------------------------------------
31 # file that follow. The default is UTF-8 which is also the encoding used for all
35 # The default value is: UTF-8.
37 DOXYFILE_ENCODING = UTF-8
40 # double-quotes, unless you are using Doxywizard) that should identify the
74 # sub-directories (in 2 levels) under the output directory of each output format
79 # control the number of sub-directories.
[all …]
/Zephyr-Core-3.7.0/scripts/west_commands/zspdx/
Dcmakefileapi.py3 # SPDX-License-Identifier: Apache-2.0
44 self.parentIndex = -1
46 self.projectIndex = -1
67 self.parentIndex = -1
89 self.directoryIndex = -1
90 self.projectIndex = -1
120 self.backtrace = -1
145 self.backtrace = -1
157 self.compileGroupIndex = -1
158 self.sourceGroupIndex = -1
[all …]
/Zephyr-Core-3.7.0/samples/modules/tflite-micro/magic_wand/train/
Dtrain_magic_wand_model.ipynb11 " http://www.apache.org/licenses/LICENSE-2.0\n",
43 "<table class=\"tfo-notebook-buttons\" align=\"left\">\n",
48 …ic_wand_model.ipynb\"><img src=\"https://www.tensorflow.org/images/GitHub-Mark-32px.png\" />View s…
60 …efore you proceed, ensure you are using a GPU runtime by going to **Runtime -> Change runtime type…
96 "!git clone --depth 1 -q https://github.com/tensorflow/tensorflow\n",
98 "!cp -r tensorflow/tensorflow/lite/micro/examples/magic_wand/train train"
126 "!tar xvzf data.tar.gz -C train 1>/dev/null"
161 "id": "5-cmVbFvhTvy"
166 … "Now, we set up TensorBoard so that we can graph our accuracy and loss as training proceeds."
181 "%tensorboard --logdir logs/scalars"
[all …]
/Zephyr-Core-3.7.0/subsys/debug/
DKconfig4 # SPDX-License-Identifier: Apache-2.0
24 module-str = thread analyzer
58 the interrupts for a long time - long enough to disconnect when
83 on cache-incoherent architectures.
117 Generate call graph profile data for the application that can be
126 recent-ish compiler with the ``-fsanitize=address`` command line option,
129 Note that at exit leak detection is disabled for 64-bit boards when
165 architecture, and requires a recent-ish compiler with the
166 ``-fsanitize=undefined`` command line option.
184 on a per-function basis.
[all …]
/Zephyr-Core-3.7.0/drivers/eeprom/
Deeprom_emulator.c4 * SPDX-License-Identifier: Apache-2.0
14 * data are written as address-data combinations. The size of such a combination
27 * The representation of the EEPROM on flash is shown in the next graph.
29 * |-----------------------------------------------------------------------|
30 * ||----------------------| |----------------------| |-------------------||
31 * || EEPROM data | | | |-Flash page--------||
34 * ||----------------------| |----------------------| ... |
39 * ||--EEPROM page 0-------| |--EEPROM page 1-------| |
40 * |------------------------------------------------------------Partition--|
70 /* EEPROM is read-only */
[all …]
/Zephyr-Core-3.7.0/samples/modules/tflite-micro/hello_world/train/
Dtrain_hello_world_model.ipynb31 "<table class=\"tfo-notebook-buttons\" align=\"left\">\n",
36 …o_world_model.ipynb\"><img src=\"https://www.tensorflow.org/images/GitHub-Mark-32px.png\" />View s…
53 "id": "5PYwRFppd-WB"
84 "outputId": "510567d6-300e-40e2-f5b8-c3520a3f3a8b",
97 …"Requirement already satisfied: tensorflow==2.4.0rc0 in /usr/local/lib/python3.6/dist-packages (2.…
98 …"Requirement already satisfied: termcolor~=1.1.0 in /usr/local/lib/python3.6/dist-packages (from t…
99 …"Requirement already satisfied: gast==0.3.3 in /usr/local/lib/python3.6/dist-packages (from tensor…
100 …"Requirement already satisfied: astunparse~=1.6.3 in /usr/local/lib/python3.6/dist-packages (from …
101 …"Requirement already satisfied: absl-py~=0.10 in /usr/local/lib/python3.6/dist-packages (from tens…
102 …"Requirement already satisfied: keras-preprocessing~=1.1.2 in /usr/local/lib/python3.6/dist-packag…
[all …]
/Zephyr-Core-3.7.0/scripts/kconfig/
Dkconfiglib.py1 # Copyright (c) 2011-2019, Ulf Magnusson
2 # SPDX-License-Identifier: ISC
9 from Kconfig (https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt)
27 $ wget -qO- https://raw.githubusercontent.com/ulfalizer/Kconfiglib/master/makefile.patch | git am
28 …$ wget -qO- https://raw.githubusercontent.com/ulfalizer/Kconfiglib/master/makefile.patch | patch -
30 Warning: Not passing -p1 to patch will cause the wrong file to be patched.
43 $ git am Kconfiglib/makefile.patch (or 'patch -p1 < Kconfiglib/makefile.patch')
53 ----------------
61 --------------
69 --------------------------------
[all …]