Lines Matching refs:to

7 to provide a simulated performance measurement and quickly identify
15 In addition to this readme, the project includes a Doxygen configuration, which
22 # How to run
29 [How to write .ditto files](#how-to-write-ditto-files)
36 - `--log-level=<int | string>` (default: INFO). Select to output messages which are at or below
42 # How to write .ditto files
78 `init` is optional and can be used to initialize the benchmarking environment. It executes
79 instructions similar to `main`, but the results are not collected in the end.
88 `clean_up` is optional and can be used to reset the benchmarking environment to the initial state,
89 e.g, delete benchmark files. Similar to `init`, it executes instructions like `main`, but results
141 - `string list_name` - Shared variable name pointing to a list of values.
142 - `string item_name` - Shared variable name to which a selected value should be stored.
159 spawn: <number of threads to spawn with the provided instruction>
202 Opens the file with a file path or a shared variable name pointing to a file path. If neither of
210 `string input` - Shared variable name pointing to a file path.
211 - (optional) `string output_fd` - Shared variable name to which output file descriptor
218 Deletes the file with a file path or a shared variable name pointing to a file path.
224 `string input` - Shared variable name pointing to a file path.
233 - `string input_fd` - Shared variable name pointing to a file descriptor.
242 - `string input_fd` - Shared variable name pointing to a file descriptor.
253 - `string input_fd` - Shared variable name pointing to a file descriptor.
264 Writes to file with the provided file descriptor. For `SEQUENTIAL`
267 `RANDOM` access, the block offset, to which data should be written, will
269 write operation to fill the memory with alternating ones and zeroes. Uses
273 - `string input_fd` - Shared variable name pointing to a file descriptor.
275 If it is set to `-1`, then file size is used.
277 once. If it is set to `-1`, then file size is used.
279 set to `SEQUENTIAL`, then the blocks, to which the data should be written,
301 - `string input_fd` - Shared variable name pointing to a file descriptor.
303 If it is set to `-1`, then file size is used.
305 once. If it is set to `-1`, then file size is used.
307 set to `SEQUENTIAL`, then the blocks, from which the data should be read,
328 - `string output` - Shared variable name to which files names should be saved.
333 then writing `3` to `/proc/sys/vm/drop_caches`. No arguments.
340 Project (AOSP) and is supposed to run out-of-the-box.
344 The following utilities are required to build the project on Linux:
368 As an extension to testing, coverage is not a metric that guarantees good
371 One way of getting coverage data is to rely on `llvm` to build the code with
372 extra flags to generate coverage information, `llvm-cov` to extract coverage
373 data, and `lcov` to aggregate and export all the coverage information into a
388 Cannot derive function end line.`. This can be solved by downgrading to version
403 These operations should be able to be triggered in a multiprogrammed fashion.
409 operations that are parallely contributing to the generation of display frames.
422 T1 runs the following operations: Read, Write, Read, sends a request to T2 and
424 T2 waits for a request, then Read, Write, then sends the reply to the requester.
439 After the initialization phase completes the graph can be traversed again to
445 A final graph traversal can be performed to fetch all the measurements that
451 All the measurements must be ordered and later processed to provide useful
452 information to the user.