Home
last modified time | relevance | path

Searched refs:copy_function (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/
Dcopy_tensor.cc39 copy_function(cf), in RegistrationInfo()
43 CopyTensor::CopyFunction copy_function; member
122 void CopyDeviceToDevice(CopyTensor::CopyFunction copy_function, in CopyDeviceToDevice() argument
139 auto copier = [copy_function, cpu_allocator, src, dst, src_alloc_attr, in CopyDeviceToDevice()
147 CopyDeviceToDevice(copy_function, cpu_allocator, out_allocator, in CopyDeviceToDevice()
164 copy_function(send_dev_context, recv_dev_context, src, dst, in CopyDeviceToDevice()
193 copy_function(send_dev_context, recv_dev_context, src, dst, src_alloc_attr, in CopyDeviceToDevice()
241 CopyDeviceToDevice(ri.copy_function, cpu_allocator, out_allocator, in ViaDMA()
306 CopyFunction copy_function, in Register() argument
310 copy_function, is_pluggable_device); in Register()
Dcopy_tensor.h57 CopyFunction copy_function) { in Registration() argument
59 copy_function, /*is_pluggable_device=*/false)); in Registration()
68 CopyFunction copy_function, bool is_pluggable_device);
/external/python/cpython3/Lib/
Dshutil.py450 def _copytree(entries, src, dst, symlinks, ignore, copy_function, argument
459 use_srcentry = copy_function is copy2 or copy_function is copy
490 copy_function, dirs_exist_ok=dirs_exist_ok)
492 copy_function(srcobj, dstname)
494 copytree(srcobj, dstname, symlinks, ignore, copy_function,
498 copy_function(srcobj, dstname)
515 def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2, argument
557 ignore=ignore, copy_function=copy_function,
771 def move(src, dst, copy_function=copy2): argument
829 copytree(src, real_dst, copy_function=copy_function,
[all …]
/external/angle/src/libANGLE/renderer/metal/
Dgen_mtl_format_table.py575 copy_function, default_alpha, same_gl_type = get_vertex_copy_function_and_default_alpha(
595 vertex_copy_function=copy_function,
604 vertex_copy_function=copy_function,
/external/python/cpython3/Doc/library/
Dshutil.rst229 copy_function=copy2, ignore_dangling_symlinks=False, \
264 If *copy_function* is given, it must be a callable that will be used to copy
276 Added the *copy_function* argument to be able to provide a custom copy
337 .. function:: move(src, dst, copy_function=copy2)
347 used. Otherwise, *src* is copied to *dst* using *copy_function* and then
351 If *copy_function* is given, it must be a callable that takes two arguments
354 :func:`copytree` is called, passing it the :func:`copy_function`. The
355 default *copy_function* is :func:`copy2`. Using :func:`~shutil.copy` as the
356 *copy_function* allows the move to succeed when it is not possible to also
367 Added the *copy_function* keyword argument.
/external/python/cpython3/Lib/test/
Dtest_shutil.py684 shutil.copytree(src, dst, copy_function=custom_cpfun)
726 shutil.copytree(src_dir, dst_dir, copy_function=_copy)
2114 shutil.move(self.src_file, self.dst_dir, copy_function=_copy)
2124 shutil.move(self.src_dir, self.dst_dir, copy_function=_copy)
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a3.rst466 shutil.copytree(copy_function=...) erroneously pass DirEntry instead of a
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1641 The :func:`~shutil.move` function now accepts a *copy_function* argument,
D3.2.rst1546 * *copy_function*: is a callable that will be used to copy files.