Searched +full:- +full:- +full:graph (Results 1 – 14 of 14) sorted by relevance
/Zephyr-Core-3.4.0/scripts/dts/python-devicetree/src/devicetree/ |
D | grutils.py | 1 # 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. 33 The nodes are added to the graph if necessary. 58 # Execute Tarjan's algorithm on the graph. 62 # computes the strongly-connected components 64 # of the graph: i.e., the sets of nodes that form a minimal 79 … raise Exception('TARJAN: No roots found in graph with {} nodes'.format(len(self.__nodes))) 116 if v == scc[-1]: [all …]
|
D | edtlib.py | 3 # 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.4.0/scripts/build/ |
D | elf_parser.py | 5 # SPDX-License-Identifier: Apache-2.0 52 DEVICE_HANDLE_SEP = -32768 67 self._ordinals_split.append(self._ordinals[prev:idx-1]) 129 True if the elf file is for a little-endian architecture. 158 offset = addr - (0 if self.relocatable else section['sh_addr']) 183 # Compute the dependency graph induced from the full graph restricted to the 185 # induced graph correspond to paths in the full graph.
|
D | gen_handles.py | 6 # 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-handles", 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.4.0/samples/modules/tflite-micro/magic_wand/src/ |
D | main_functions.cpp | 8 * http://www.apache.org/licenses/LICENSE-2.0 29 /* Globals, used for compatibility with Arduino-style sketches. */ 59 if (model->version() != TFLITE_SCHEMA_VERSION) { in setup() 63 model->version(), TFLITE_SCHEMA_VERSION); in setup() 68 * This relies on a complete list of all the ops needed by this graph. in setup() 71 * needed by this graph. in setup() 86 interpreter->AllocateTensors(); in setup() 89 model_input = interpreter->input(0); in setup() 90 if ((model_input->dims->size != 4) || (model_input->dims->data[0] != 1) || in setup() 91 (model_input->dims->data[1] != 128) || in setup() [all …]
|
/Zephyr-Core-3.4.0/.github/workflows/ |
D | scripts_tests.yml | 2 # 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 …]
|
/Zephyr-Core-3.4.0/doc/ |
D | zephyr.doxyfile.in | 20 # 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.4.0/samples/net/cloud/tagoio_http_post/ |
D | README.rst | 1 .. _cloud-tagoio-http-post-sample: 11 values to simulate a real device. This can be used to speed-up development 20 - A free `TagoIO`_ account 21 - A board with internet connectivity, see :ref:`networking` 22 - The example provides three ways to get internet: 49 tagoio-http-client sample application with minimal configuration: 51 .. zephyr-app-commands:: 52 :zephyr-app: samples/net/cloud/tagoio_http_post 66 :zephyr_file:`samples/net/cloud/tagoio_http_post/overlay-wifi.conf` file. 68 .. zephyr-app-commands:: [all …]
|
/Zephyr-Core-3.4.0/scripts/west_commands/zspdx/ |
D | cmakefileapi.py | 3 # 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.4.0/samples/modules/tflite-micro/magic_wand/train/ |
D | train_magic_wand_model.ipynb | 11 " 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.4.0/subsys/debug/ |
D | Kconfig | 4 # SPDX-License-Identifier: Apache-2.0 24 module-str = thread analyzer 57 the interrupts for a long time - long enough to disconnect when 107 Generate call graph profile data for the application that can be 116 recent-ish compiler with the ``-fsanitize=address`` command line option, 119 Note that at exit leak detection is disabled for 64-bit boards when 155 architecture, and requires a recent-ish compiler with the 156 ``-fsanitize=undefined`` command line option. 174 on a per-function basis. 279 bool "Force-disable no assertions" [all …]
|
/Zephyr-Core-3.4.0/drivers/eeprom/ |
D | eeprom_emulator.c | 4 * 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.4.0/samples/modules/tflite-micro/hello_world/train/ |
D | train_hello_world_model.ipynb | 31 "<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.4.0/scripts/kconfig/ |
D | kconfiglib.py | 1 # 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 …]
|