Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 261 for sris (0.12 sec)

  1. pkg/apis/certificates/v1beta1/defaults_test.go

    			base.emailAddresses = opt.emailAddresses
    		}
    		if opt.uris != nil {
    			base.uris = opt.uris
    		}
    	}
    	return base
    }
    
    func csrWithOpts(base pemOptions, overlays ...pemOptions) []byte {
    	opts := overlayPEMOptions(append([]pemOptions{base}, overlays...)...)
    	uris := make([]*url.URL, len(opts.uris))
    	for i, s := range opts.uris {
    		u, err := url.ParseRequestURI(s)
    		if err != nil {
    			panic(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/BUILD

            "//platforms/darwinn/compiler:__subpackages__",
            "//tensorflow:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "quantization_lib",
        srcs = [
            "quantization_driver.cc",
            "quantization_interface.cc.inc",
            "quantization_utils.cc",
        ],
        hdrs = [
            "quantization_driver.h",
            "quantization_interface.h.inc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/BUILD

        ],
    )
    
    cc_library(
        name = "legalize_utils",
        srcs = ["utils.cc"],
        hdrs = ["utils.h"],
        deps = [
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:IR",
            "@local_xla//xla/mlir_hlo",
        ],
    )
    
    cc_library(
        name = "test_utils",
        testonly = True,
        srcs = ["test_utils.cc"],
        hdrs = ["test_utils.h"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/gradients/tape/tape_context.cc

        : AbstractContext(kTape), parent_ctx_(c), tape_(tape), registry_(registry) {
      // TODO(srbs): Make AbstractContext ref counted.
      // parent_ctx_->Ref();
    }
    void TapeContext::Release() {
      // TODO(srbs): Change to Unref()
      delete this;
    }
    TapeContext::~TapeContext() {
      // TODO(srbs): Make AbstractContext ref counted.
      // parent_ctx_->Unref();
    }
    TapeOperation* TapeContext::CreateOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 23:12:39 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

            ":xla_cluster_formation",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Pass",
        ],
    )
    
    cc_library(
        name = "verify_clustering_pass",
        srcs = [
            "verify_clustering_pass.cc",
        ],
        deps = [
            ":clustering_passes_inc_gen",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:attribute_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/BUILD

    tf_py_strict_test(
        name = "pywrap_quantize_model_test",
        srcs = [
            "pywrap_quantize_model_test.py",
        ],
        deps = [
            ":py_function_lib_py",
            ":pywrap_quantize_model",
            "//tensorflow:tensorflow_py",
            "//tensorflow/python/platform:client_testlib",
        ],
    )
    
    pytype_strict_library(
        name = "save_model",
        srcs = [
            "save_model.py",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/debugging/BUILD

        default_visibility = [
            "//tensorflow/compiler/mlir/quantization:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "mlir_dump",
        srcs = ["mlir_dump.cc"],
        hdrs = ["mlir_dump.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "@com_google_absl//absl/log",
            "@com_google_absl//absl/memory",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:06:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/utils/BUILD

        default_visibility = [
            "//tensorflow/compiler/mlir/tf2xla/internal:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "dialect_detection_utils",
        srcs = [
            "dialect_detection_utils.cc",
        ],
        hdrs = [
            "dialect_detection_utils.h",
        ],
        deps = [
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/core:framework",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. tensorflow/c/eager/parallel_device/BUILD

    filegroup(
        name = "lib_headers",
        srcs = ["parallel_device_lib.h"],
    )
    
    filegroup(
        name = "lib_sources",
        srcs = ["parallel_device_lib.cc"],
    )
    
    filegroup(
        name = "device_headers",
        srcs = ["parallel_device.h"],
    )
    
    filegroup(
        name = "device_sources",
        srcs = ["parallel_device.cc"],
    )
    
    filegroup(
        name = "headers",
        srcs = [
            ":device_headers",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 20:19:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/BUILD

    cc_library(
        name = "string_util",
        srcs = ["utils/string_util.cc"],
        hdrs = ["utils/string_util.h"],
        deps = [
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Pass",
        ],
    )
    
    cc_library(
        name = "fake_session",
        srcs = ["utils/fake_session.cc"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top