- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 99 for kernels (0.09 sec)
-
CODEOWNERS
# Where component owners are known, add them here. /tensorflow/c/eager @qqfish /tensorflow/core/common_runtime/eager @qqfish /tenosrflow/core/debug @caisq /tensorflow/core/kernels/mkl/ @penpornk /tensorflow/core/kernels/sparse/ @penpornk /tensorflow/core/nccl/ @azaks2 @chsigg /tensorflow/python/autograph/ @mdanatg /tensorflow/python/debug @caisq /tensorflow/python/eager @rohan100jain /tensorflow/tools/docs/ @markdaoust
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri May 27 21:02:49 UTC 2022 - 563 bytes - Viewed (0) -
tensorflow/c/BUILD
"//tensorflow/core/common_runtime/next_pluggable_device/c:tf_rendezvous_c_api", "@local_tsl//tsl/platform", ], ) tf_cuda_library( name = "kernels", srcs = [ "kernels.cc", ], hdrs = [ "kernels.h", ], copts = tf_copts(), visibility = ["//visibility:public"], deps = [ ":c_api_internal", ":c_api_macros_hdrs",
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Nov 02 06:47:06 UTC 2024 - 30.4K bytes - Viewed (0) -
tensorflow/BUILD
"//conditions:default": ["@com_github_grpc_grpc//:grpc++"], }), ) # copybara:comment_end # A shared object which includes registration mechanisms for ops and # kernels. Does not include the implementations of any ops or kernels. Instead, # the library which loads libtensorflow_framework.so # (e.g. _pywrap_tensorflow_internal.so for Python, libtensorflow.so for the C
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 16 05:28:35 UTC 2024 - 53.5K bytes - Viewed (0) -
tensorflow/api_template.__init__.py
# TODO(gunan): Add sanity checks to loaded modules here. # Load first party dynamic kernels. _tf_dir = _os.path.dirname(_current_file_location) _kernel_dir = _os.path.join(_tf_dir, "core", "kernels") if _os.path.exists(_kernel_dir): _ll.load_library(_kernel_dir) # Load third party dynamic kernels. for _s in _site_packages_dirs: _plugin_dir = _os.path.join(_s, "tensorflow-plugins")
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 6.8K bytes - Viewed (0) -
.bazelrc
# Only include debug info for files under tensorflow/, excluding kernels, to # reduce the size of the debug info in the binary. This is because if the debug # sections in the ELF binary are too large, errors can occur. See # https://github.com/tensorflow/tensorflow/issues/48919. # Users can still include debug info for a specific kernel, e.g. with: # --config=dbg --per_file_copt=+tensorflow/core/kernels/identity_op.*@-g
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 28 22:02:31 UTC 2024 - 51.3K bytes - Viewed (0) -
tensorflow/api_template_v1.__init__.py
# TODO(gunan): Add sanity checks to loaded modules here. # Load first party dynamic kernels. _tf_dir = _os.path.dirname(_current_file_location) _kernel_dir = _os.path.join(_tf_dir, "core", "kernels") if _os.path.exists(_kernel_dir): _ll.load_library(_kernel_dir) # Load third party dynamic kernels. for _s in _site_packages_dirs: _plugin_dir = _os.path.join(_s, "tensorflow-plugins")
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 7.5K bytes - Viewed (0) -
cni/pkg/ipset/nldeps_linux.go
// the kernel can be out of sync with the CLI utility, leading to errors like: // // ipset v7.10: Argument `comment' is supported in the kernel module of the set type hash:ip // starting from the revision 3 and you have installed revision 1 only. // Your kernel is behind your ipset utility. // // This happens with kernels as recent as Fedora38, e.g: 6.4.11-200.fc38.aarch64
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jul 18 23:53:18 UTC 2024 - 4.1K bytes - Viewed (0) -
tensorflow/c/c_test.c
#include <time.h> #include <unistd.h> #ifdef _WIN32 #include <process.h> #endif #include "tensorflow/c/c_api.h" #include "tensorflow/c/c_api_experimental.h" #include "tensorflow/c/env.h" #include "tensorflow/c/kernels.h" // A create function. This will never actually get called in this test, it's // just nice to know that it compiles. void* create(TF_OpKernelConstruction* ctx) { TF_DataType type; TF_Status* s = TF_NewStatus();
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Apr 24 20:50:35 UTC 2024 - 2.8K bytes - Viewed (0) -
cmd/server-rlimit.go
} // legacy linux indicator for printing warnings // about older Linux kernels and Go runtime. return currentKernel < kernel.Version(4, 0, 0) } func setMaxResources(ctx serverCtxt) (err error) { // Set the Go runtime max threads threshold to 90% of kernel setting. sysMaxThreads, err := sys.GetMaxThreads() if err == nil { minioMaxThreads := (sysMaxThreads * 90) / 100
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 02 15:09:36 UTC 2024 - 2.8K bytes - Viewed (0) -
docs/pt/docs/project-generation.md
* Fácil integração com Python através dos **Kernels Jupyter** para desenvolvimento remoto ou no Docker com extensões como Atom Hydrogen ou Visual Studio Code Jupyter. * _Frontend_ **Vue**: * Gerado com Vue CLI. * Controle de **Autenticação JWT**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 6.3K bytes - Viewed (0)