Home
last modified time | relevance | path

Searched refs:backends (Results 1 – 25 of 557) sorted by relevance

12345678910>>...23

/external/tensorflow/tensorflow/compiler/xla/tests/
Dbuild_defs.bzl21 backends = [],
31 """Generates cc_test targets for the given XLA backends.
33 This rule generates a cc_test target for one or more XLA backends and also a
35 two additions: 'backends' and 'backend_args'. 'backends' specifies the
36 backends to generate tests for ("cpu", "gpu"), and
49 each of the supported backends.
61 backends = ["cpu", "gpu"],
70 backends = ["cpu", "gpu"],
84 backends: A list of backends to generate tests for. Supported values: "cpu",
86 backends.
[all …]
/external/tensorflow/third_party/
Dopt_einsum.BUILD13 "opt_einsum/backends/__init__.py",
14 "opt_einsum/backends/cupy.py",
15 "opt_einsum/backends/dispatch.py",
16 "opt_einsum/backends/tensorflow.py",
17 "opt_einsum/backends/theano.py",
18 "opt_einsum/backends/torch.py",
/external/mesa3d/src/gbm/main/
Dbackend.c45 static const struct backend_desc backends[] = { variable
70 for (i = 0; i < ARRAY_SIZE(backends); ++i) { in find_backend()
71 if (strcmp(backends[i].name, name) == 0) { in find_backend()
72 backend = &backends[i]; in find_backend()
95 for (i = 0; i < ARRAY_SIZE(backends) && dev == NULL; ++i) { in _gbm_create_device()
96 backend = load_backend(&backends[i]); in _gbm_create_device()
/external/python/cryptography/docs/hazmat/backends/
Dopenssl.rst9 .. data:: cryptography.hazmat.backends.openssl.backend
15 * :class:`~cryptography.hazmat.backends.interfaces.CipherBackend`
16 * :class:`~cryptography.hazmat.backends.interfaces.CMACBackend`
17 * :class:`~cryptography.hazmat.backends.interfaces.DERSerializationBackend`
18 * :class:`~cryptography.hazmat.backends.interfaces.DHBackend`
19 * :class:`~cryptography.hazmat.backends.interfaces.DSABackend`
20 * :class:`~cryptography.hazmat.backends.interfaces.EllipticCurveBackend`
21 * :class:`~cryptography.hazmat.backends.interfaces.HashBackend`
22 * :class:`~cryptography.hazmat.backends.interfaces.HMACBackend`
23 * :class:`~cryptography.hazmat.backends.interfaces.PBKDF2HMACBackend`
[all …]
Dindex.rst9 .. currentmodule:: cryptography.hazmat.backends
11 ``cryptography`` was originally designed to support multiple backends, but
23 Individual backends
/external/tensorflow/tensorflow/compiler/tests/
Dbuild_defs.bzl29 tests all backends for the test.
46 enabled_backends: A list of backends that should be tested. Supported
48 disabled_backends: A list of backends that should not be tested. Supported
64 backends = [b for b in enabled_backends if b not in disabled_backends]
74 for backend in backends:
133 def generate_backend_suites(backends = []):
135 if not backends:
136 backends = all_backends
137 for backend in backends:
/external/autotest/frontend/db/backends/afe/
Dbase.py1 from django.db.backends.mysql.base import DatabaseCreation as MySQLCreation
2 from django.db.backends.mysql.base import DatabaseOperations as MySQLOperations
3 from django.db.backends.mysql.base import DatabaseWrapper as MySQLDatabaseWrapper
4 from django.db.backends.mysql.base import DatabaseIntrospection as MySQLIntrospection
/external/wpa_supplicant_8/src/utils/
Dext_password.c19 static const struct ext_password_backend *backends[] = { variable
45 for (i = 0; backends[i]; i++) { in ext_password_init()
46 if (os_strcmp(backends[i]->name, backend) == 0) { in ext_password_init()
47 data->backend = backends[i]; in ext_password_init()
/external/perfetto/include/perfetto/tracing/
Dtracing.h71 uint32_t backends = 0; // One or more BackendTypes. member
125 return std::tie(backends, custom_backend, platform, shmem_size_hint_kb,
128 std::tie(other.backends, other.custom_backend, other.platform,
159 if (args.backends & kInProcessBackend) { in Initialize()
163 if (args.backends & kSystemBackend) { in Initialize()
/external/libevent/test/
Dtest.sh152 -b - specify backends
160 backends=$BACKENDS
167 b) backends="$OPTARG";;
180 for i in $backends; do
/external/python/cryptography/src/cryptography/hazmat/primitives/asymmetric/
Dx448.py18 from cryptography.hazmat.backends.openssl.backend import backend
38 from cryptography.hazmat.backends.openssl.backend import backend
48 from cryptography.hazmat.backends.openssl.backend import backend
Dx25519.py18 from cryptography.hazmat.backends.openssl.backend import backend
38 from cryptography.hazmat.backends.openssl.backend import backend
48 from cryptography.hazmat.backends.openssl.backend import backend
/external/rust/crates/plotters/
DRELEASE-NOTES.md46 Plotters 0.3 has introduced concept of tier 1 backends, which is the most supported.
47 All tier 1 backends could be imported automatically with the core crate (But can be opt-out as well…
48 Currently we have two tier 1 backends: `plotters-bitmap` and `plotters-svg`.
51 To ease the upgrade for tier 1 backends, we still keep feature options in the core crate that can o…
60 For non tier 1 backends, manmually import is required (Please note tier on backends can be imported…
/external/libcups/scheduler/
Dcups-deviced.c64 static cupsd_backend_t backends[MAX_BACKENDS]; variable
298 if (backend_fds[i].revents && backends[i].pipe) in main()
300 cups_file_t *bpipe = backends[i].pipe; in main()
305 if (get_device(backends + i)) in main()
333 if (backends[i].pid) in main()
334 kill(backends[i].pid, SIGTERM); in main()
668 for (i = num_backends, backend = backends; i > 0; i --, backend ++) in process_children()
756 backend = backends + num_backends; in start_backend()
/external/libese/
DREADME.md76 and for implementing hardware backends. It depends on a backend being
85 *libese-hw* provides existing libese hardware backends.
94 ## Supported backends
96 There are two test backends, fake and echo, as well as one
99 The NXP backends support both a direct kernel driver and
/external/mesa3d/src/gbm/
DMakefile.sources9 backends/dri/gbm_dri.c \
10 backends/dri/gbm_driint.h
Dmeson.build21 inc_gbm = include_directories('.', 'main', 'backends/dri')
38 files_gbm += files('backends/dri/gbm_dri.c', 'backends/dri/gbm_driint.h')
/external/autotest/frontend/db/backends/afe_sqlite/
Dbase.py4 from django.db.backends.sqlite3.base import DatabaseOperations as SQLiteDatabaseOperations
5 from django.db.backends.sqlite3.base import DatabaseWrapper as SQLiteDatabaseWrapper
/external/curl/
Dcurl-config.in47 --ssl-backends output the SSL backends libcurl was built to support
169 --ssl-backends)
/external/python/cryptography/docs/hazmat/primitives/
Dkeywrap.rst26 :class:`~cryptography.hazmat.backends.interfaces.CipherBackend`
44 :class:`~cryptography.hazmat.backends.interfaces.CipherBackend`
65 :class:`~cryptography.hazmat.backends.interfaces.CipherBackend`
83 :class:`~cryptography.hazmat.backends.interfaces.CipherBackend`
Dkey-derivation-functions.rst50 >>> from cryptography.hazmat.backends import default_backend
85 :class:`~cryptography.hazmat.backends.interfaces.PBKDF2HMACBackend`.
89 :class:`~cryptography.hazmat.backends.interfaces.PBKDF2HMACBackend`
151 >>> from cryptography.hazmat.backends import default_backend
192 :class:`~cryptography.hazmat.backends.interfaces.HMACBackend`.
196 :class:`~cryptography.hazmat.backends.interfaces.HMACBackend`
253 >>> from cryptography.hazmat.backends import default_backend
282 :class:`~cryptography.hazmat.backends.interfaces.HMACBackend`.
286 :class:`~cryptography.hazmat.backends.interfaces.HMACBackend`
341 >>> from cryptography.hazmat.backends import default_backend
[all …]
/external/mesa3d/src/gallium/auxiliary/pipe-loader/
Dpipe_loader.c47 static int (*backends[])(struct pipe_loader_device **, int) = { variable
63 for (i = 0; i < ARRAY_SIZE(backends); i++) in pipe_loader_probe()
64 n += backends[i](&devs[n], MAX2(0, ndev - n)); in pipe_loader_probe()
/external/elfutils/
DAndroid.bp128 "backends/*.c",
154 "backends/common-reloc.c",
155 "backends/linux-core-note.c",
156 "backends/x86_corenote.c",
/external/python/cryptography/src/cryptography/x509/
Docsp.py67 from cryptography.hazmat.backends.openssl.backend import backend
72 from cryptography.hazmat.backends.openssl.backend import backend
106 from cryptography.hazmat.backends.openssl.backend import backend
238 from cryptography.hazmat.backends.openssl.backend import backend
253 from cryptography.hazmat.backends.openssl.backend import backend
/external/llvm-project/clang/test/Driver/
Dcheck-time-trace-sections.py18 backends = [event for event in events if event["name"] == "Backend"] variable
35 for backend in backends]):

12345678910>>...23