Home
last modified time | relevance | path

Searched +full:turing +full:- +full:complete (Results 1 – 25 of 36) sorted by relevance

12

/external/mesa3d/docs/drivers/
Dnvk.rst7 ----------------
9 NVK currently supports Turing (RTX 20XX and GTX 16XX) and later GPUs.
11 series) GPUs but anything pre-Turing is currently disabled by default.
14 -------------------
19 -------------------
26 ---------
32 a comma-separated list of named flags, which do various things:
38 Waits for submit to complete before continuing
49 ----------------------
51 What little documentation we have can be found in the `NVIDIA open-gpu-doc
[all …]
/external/clang/test/SemaCXX/
Dconstexpr-turing.cpp1 // RUN: %clang_cc1 -verify -std=c++11 %s
2 // expected-no-diagnostics
4 // A direct proof that constexpr is Turing-complete, once DR1454 is implemented.
6 const unsigned halt = (unsigned)-1;
22 l(dir == L ? old.l ? old.l->l : 0 : &old), in Tape()
23 val(dir == L ? old.l ? old.l->val : false in Tape()
24 : old.r ? old.r->val : false), in Tape()
25 r(dir == R ? old.r ? old.r->r : 0 : &old) {} in Tape()
33 // Run turing machine 'tm' on tape 'tape' from state 'state'. Return number of
42 // 3-state busy beaver. S(bb3) = 21.
[all …]
/external/googleapis/google/api/expr/
Dcel.yaml7 - name: google.api.expr.v1alpha1.ConformanceService
8 - name: google.api.expr.v1alpha1.CelService
12 overview: |-
31 free, and not Turing-complete. This limitation is a feature of the language
36 software that embeds it. 3. Developer-friendly * The language is
50 more typed variables, often protobuf messages. Most use-case will use
58 transaction.withdrawal - account.balance)
60 // Object construction common.GeoPoint{ latitude: 10.0, longitude: -5.5 }
/external/bc/gen/
Dbc_help.txt4 * SPDX-License-Identifier: BSD-2-Clause
6 * Copyright (c) 2018-2023 Gavin D. Howard and contributors.
38 bc is a command-line, arbitrary-precision calculator with a Turing-complete
56 unary minus (-), or negation, operator. This still allows POSIX-compliant
66 -C --no-digit-clamp
75 If multiple of this option and the -c option are given, the last is used.
77 -c --digit-clamp
87 If multiple of this option and the -C option are given, the last is used.
90 -E seed --seed=seed
97 -e expr --expression=expr
[all …]
/external/llvm/docs/tutorial/
DLangImpl04.rst12 LLVM <index.html>`_" tutorial. Chapters 1-3 described the implementation
101 to make complete decisions about what optimizations to use, in which
107 program). It also supports and includes "per-function" passes which just
117 to run a few per-function optimizations as the user types the function
122 In order to get per-function optimizations going, we need to set up a
123 `FunctionPassManager <../WritingAnLLVMPass.html#what-passmanager-doesr>`_ to hold
130 .. code-block:: c++
136 TheModule->setDataLayout(TheJIT->getTargetMachine().createDataLayout());
143 // Do simple "peephole" optimizations and bit-twiddling optzns.
168 .. code-block:: c++
[all …]
DOCamlLangImpl4.rst12 LLVM <index.html>`_" tutorial. Chapters 1-3 described the implementation
111 to make complete decisions about what optimizations to use, in which
117 program). It also supports and includes "per-function" passes which just
127 to run a few per-function optimizations as the user types the function
132 In order to get per-function optimizations going, we need to set up a
133 `Llvm.PassManager <../WritingAnLLVMPass.html#what-passmanager-does>`_ to hold and
137 .. code-block:: ocaml
147 (* Do simple "peephole" optimizations and bit-twiddling optzn. *)
181 .. code-block:: ocaml
220 passes <../Passes.html>`_ is available, but it isn't very complete.
[all …]
DLangImpl02.rst20 `Operator-Precedence
21 Parsing <http://en.wikipedia.org/wiki/Operator-precedence_parser>`_ to
36 .. code-block:: c++
38 /// ExprAST - Base class for all expression nodes.
44 /// NumberExprAST - Expression class for numeric literals like "1.0".
64 .. code-block:: c++
66 /// VariableExprAST - Expression class for referencing a variable, like "a".
74 /// BinaryExprAST - Expression class for a binary operator.
85 /// CallExprAST - Expression class for function calls.
96 This is all (intentionally) rather straight-forward: variables capture
[all …]
DOCamlLangImpl2.rst21 `Operator-Precedence
22 Parsing <http://en.wikipedia.org/wiki/Operator-precedence_parser>`_ to
37 .. code-block:: ocaml
39 (* expr - Base type for all expression nodes. *)
55 .. code-block:: ocaml
66 This is all (intentionally) rather straight-forward: variables capture
76 Turing-complete; we'll fix that in a later installment. The two things
80 .. code-block:: ocaml
82 (* proto - This type represents the "prototype" for a function, which captures
87 (* func - This type represents a function definition itself. *)
[all …]
/external/mesa3d/src/amd/vulkan/radix_sort/shaders/
Dscatter.glsl2 // Use of this source code is governed by a BSD-style license that can be
5 // #pragma use_vulkan_memory_model // results in spirv-remap validation error
10 // clang-format off
16 // clang-format on
34 // Use NVIDIA Turing/Volta+ partitioning operator (`match_any()`)?
130 // clang-format off
136 // clang-format on
141 // clang-format off
148 #define RS_RADIX_MASK ((1 << RS_RADIX_LOG2) - 1)
149 // clang-format on
[all …]
/external/eigen/doc/
DInsideEigenExample.dox24 … understand how Eigen compiles it, assuming that SSE2 vectorization is enabled (GCC option -msse2).
28 … us explain what is nontrivial in compiling it correctly -- that is, producing optimized code -- s…
79 …at MatrixBase is what unifies matrices/vectors and all the expressions types -- more on that below.
87-size and dynamic-size. The storage method is not the same in these two cases. For fixed-size, the…
89 …eating separately the cases where dimensions are Dynamic or fixed at compile-time. The partial spe…
102 … that if vectorization is enabled, then it uses a platform-specific call to allocate a 128-bit-ali…
104 …ial specialization of DenseStorage, we know the number of columns at compile-time, since the _Cols…
108 …thod in the base class MatrixBase. It determines that the vector is a column-vector, since ColsAtC…
136-wise product of vectors" expressions, we unify them all as "coefficient-wise binary operations", …
150 …ion, gets resolved at compile-time. This is crucial: if the abstraction can't get resolved at comp…
[all …]
/external/mesa3d/docs/
Dfeatures.txt10 driver-side.
29 specific version without the forward-compatiblity flag, such drivers
37 ------------------------------------------------------- ------------------------
39 GL 3.0, GLSL 1.30 --- all DONE: freedreno, nv50, nvc0, r600, radeonsi, llvmpipe, softpipe, virgl, z…
54 GL_EXT_draw_buffers2 (Per-buffer blend and masks) DONE (v3d)
66 …Multisample anti-aliasing DONE (freedreno/a5xx+, freedreno (*), llvmpi…
69 (*) freedreno (a2xx-a4xx), llvmpipe, and softpipe have fake Multisample anti-aliasing support
72 GL 3.1, GLSL 1.40 --- all DONE: freedreno, nv50, nvc0, r600, radeonsi, llvmpipe, softpipe, virgl, z…
85 GL 3.2, GLSL 1.50 --- all DONE: freedreno, nv50, nvc0, r600, radeonsi, llvmpipe, softpipe, virgl, z…
100 GL 3.3, GLSL 3.30 --- all DONE: freedreno, nv50, nvc0, r600, radeonsi, llvmpipe, softpipe, virgl, z…
[all …]
/external/pcre/doc/
Dpcre2.txt1 -----------------------------------------------------------------------------
8 -----------------------------------------------------------------------------
16 PCRE2 - Perl-compatible regular expressions (revised API)
26 API is more extensible, and it was simplified by abolishing the sepa-
32 As well as Perl-style regular expression patterns, some features that
39 The source code for PCRE2 can be compiled to support strings of 8-bit,
40 16-bit, or 32-bit code units, which means that up to three separate li-
43 64-bit environment that also supports 32-bit applications, versions of
44 PCRE2 that are compiled in both 64-bit and 32-bit modes may be needed.
46 The original work to extend PCRE to 16-bit and 32-bit code units was
[all …]
/external/mesa3d/docs/relnotes/
D24.0.0.rst1 Mesa 24.0.0 Release Notes / 2024-02-01
20 ---------------
24 dc7e8c077bc5884df95478263b34bdebb7e88e600689cb56fb07be2b8c304c36 mesa-24.0.0.tar.xz
28 ------------
30 - VK_EXT_image_compression_control on RADV
31 - VK_EXT_device_fault on RADV
32 - OpenGL 3.3 on Asahi
33 - Geometry shaders on Asahi
34 - GL_ARB_texture_cube_map_array on Asahi
35 - GL_ARB_clip_control on Asahi
[all …]
/external/angle/third_party/spirv-tools/src/
DCHANGES1 Revision history for SPIRV-Tools
3 v2024.2 2024-04-22
4 - General
5 - Add SPIRV_TOOLS_EXPORT to public C++ API (#5591)
6 - Use bazel 7 and bzlmod (#5601)
7 - Optimizer
8 - opt: add GroupNonUniformPartitionedNV capability to trim pass (#5648)
9 - Fix rebuilding types with circular references. (#5637)
10 - Add AliasedPointer decoration (#5635)
11 - add support for vulkan-shader-profiler external passes (#5512)
[all …]
/external/swiftshader/third_party/SPIRV-Tools/
DCHANGES1 Revision history for SPIRV-Tools
3 v2024.2 2024-04-22
4 - General
5 - Add SPIRV_TOOLS_EXPORT to public C++ API (#5591)
6 - Use bazel 7 and bzlmod (#5601)
7 - Optimizer
8 - opt: add GroupNonUniformPartitionedNV capability to trim pass (#5648)
9 - Fix rebuilding types with circular references. (#5637)
10 - Add AliasedPointer decoration (#5635)
11 - add support for vulkan-shader-profiler external passes (#5512)
[all …]
/external/deqp-deps/SPIRV-Tools/
DCHANGES1 Revision history for SPIRV-Tools
3 v2023.6 2023-12-18
4 - General
5 - update_build_version.py produce deterministic header. (#5426)
6 - Support missing git in update_build_version.py (#5473)
7 - Optimizer
8 - Add ComputeDerivativeGroup*NV capabilities to trim capabilities pass. (#5430)
9 - Do not crash when tryingto fold unsupported spec constant (#5496)
10 - instrument: Fix handling of gl_InvocationID (#5493)
11 - Fix nullptr argument in MarkInsertChain (#5465)
[all …]
/external/one-true-awk/testdir/
Dfunstack.in2 %%% BibTeX-file{
23 %%% (incompletely) 1970 -- 1979.
50 %%% covering 1958--1996 became too large (about
60 %%% articles yearly, so a complete bibliography
65 %%% Algorithms 1--492. For Algorithms 493--686,
72 %%% cross-referenced in both directions, so
75 %%% Corrigenda. Cross-referenced entries are
77 %%% that each is completely self-contained.
83 %%% ftp://netlib.bell-labs.com/netlib/toms.
88 %%% http://ciir.cs.umass.edu/cgi-bin/web_query_form/public/cacm2.1.
[all …]
/external/google-styleguide/cpplint/
Dcpplint_unittest.py2 # -*- coding: utf-8; -*-
99 if error.find(substr) != -1:
111 def open(self, # pylint: disable-msg=C6409
138 # Single-line lint tests are allowed to fail the 'unlintable function'
440 ['Using C-style cast. Use static_cast<int64>(...) instead'
448 'Using C-style cast. Use static_cast<int64>(...) instead'
470 '// ./command' + (' -verbose' * 80),
562 # Test C-style cast cases.
566 'Using C-style cast. Use static_cast<int>(...) instead'
569 'int a = (int)-1.0;',
[all …]
/external/bc/manuals/
Ddevelopment.md6 bus][1]. In other words, it's meant to make the [bus factor][1] a non-issue.
25 and C. They both are arbitrary-precision command-line calculators with their own
30 In addition, it is also possible to build the arbitrary-precision math as a
58 This project became a passion project for me, and I continued. In mid-2019,
64 about things like fuzzing, [`scan-build`][19], [valgrind][20],
150 pseudo-random number generator (for the same seed).
183 * Pseudo-Random Number Generator (see [`include/rand.h`][37]).
213 1. High-level requirements
214 2. Low-level requirements
215 3. High-level implementation
[all …]
/external/python/cpython2/Misc/
DHISTORY2 --------------
7 file of the release25-maint branch.)
16 *Release date: 17-AUG-2006*
19 -----------------
21 - Unicode objects will no longer raise an exception when being
34 - Fix segfault when doing string formatting on subclasses of long.
36 - Fix bug related to __len__ functions using values > 2**32 on 64-bit machines
37 with new-style classes.
39 - Fix bug related to __len__ functions returning negative values with
42 - Patch #1538606, Fix __index__() clipping. There were some problems
[all …]
/external/starlark-go/doc/
Dspec.md6 domain-specific functions and data types beyond those provided by the
14 [the Java-based implementation](https://github.com/bazelbuild/bazel/blob/master/src/main/java/com/g…
17 [appendix](#dialect-differences) provides a summary of those
27 Dmitry Lomov, Jon Brandvin, and Damien Martin-Guillerez, standing on
34 Starlark is an untyped dynamic language with high-level data types,
35 first-class functions with lexical scope, and automatic memory
43 expressing configuration: its programs are short-lived and have no
57 <!-- WTF? No automatic TOC? -->
61 * [Lexical elements](#lexical-elements)
62 * [Data types](#data-types)
[all …]
/external/libtextclassifier/native/annotator/pod_ner/test_data/
Dvocab.txt1012 -
3144 complete
16038 ##turing
28640 turing
29625 ##-
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.pas5 Copyright (c) 2005-2007 Kunle Odutola
51 TCharStreamConstants = (cscEOF = -1);
62 ['{6B851BDB-DD9C-422B-AD1E-567E52D2654F}']
74 /// Negative indexes are allowed. LA(-1) is previous token (token just matched).
75 /// LA(-i) where i is before first token should yield -1, invalid char or EOF.
149 /// This is different from rewind in its multi-directional requirement
162 /// The index is 0..N-1. A seek to position i means that LA(1) will return
188 ['{C30EF0DB-F4BD-4CBC-8C8F-828DABB6FF36}']
200 /// I'd prefer to return a char here type-wise, but it's probably
201 /// better to be 32-bit clean and be consistent with LA.
[all …]
/external/python/cpython3/Misc/
DHISTORY2 --------------
13 Release date: 2017-01-17
21 Release date: 2017-01-02
24 -----------------
26 - Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
29 - Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug
33 -------
35 - Issue #28563: Fixed possible DoS and arbitrary code execution when handle
39 - In the curses module, raise an error if window.getstr() or window.instr() is
42 - Issue #27783: Fix possible usage of uninitialized memory in operator.methodcaller.
[all …]
/external/toybox/android/linux/generated/
Dhelp.h1-libc on a nommu system, you'll need to say \"y\" here\nunless you used the patch in the mcm-build…
9 … even when it has a built-in version of that command. This requires\n toybox symlinks to be …
13 #define HELP_toybox_zhelp "Compress help with gzip -9, deflating when displayed. This makes the\nbi…
15 …t --help argument in all commands, even ones with a NULL\noptstring. (Use TOYFLAG_NOHELP to disabl…
23 #define HELP_toybox_libcrypto "Use faster hash functions out of external -lcrypto library."
27 #define HELP_toybox_selinux "Include SELinux options in commands such as ls, and add\nSELinux-speci…
33--long | --help | --version | [COMMAND] [ARGUMENTS...]]\n\nWith no arguments, \"toybox\" shows ava…
41-D] [-F] [-R] [-n] [-v] FILE...\n\nRestores the default security contexts for the given files.\n\n
43-p PRI] [-t TAG] [MESSAGE...]\n\nLogs message (or stdin) to logcat.\n\n-p Use the given priority i…
49 #define HELP_skeleton_alias "usage: skeleton_alias [-dq] [-b NUMBER]\n\nExample of a second command…
[all …]

12