Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for defs (0.14 sec)

  1. src/runtime/defs1_netbsd_arm.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_netbsd.go defs_netbsd_arm.go
    
    package runtime
    
    const (
    	_EINTR  = 0x4
    	_EFAULT = 0xe
    	_EAGAIN = 0x23
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x4
    	_O_CREAT    = 0x200
    	_O_TRUNC    = 0x400
    	_O_CLOEXEC  = 0x400000
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x1000
    	_MAP_PRIVATE = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/BUILD

        srcs = [],
        hdrs = ["min_max_value.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [],
    )
    
    cc_library(
        name = "statistics",
        srcs = ["statistics.cc"],
        hdrs = ["statistics.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/utils/BUILD

        compatible_with = get_compatible_with_portable(),
        deps = [
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Support",
        ],
    )
    
    cc_library(
        name = "tf_to_uniform_attribute_utils",
        srcs = ["tf_to_uniform_attribute_utils.cc"],
        hdrs = ["tf_to_uniform_attribute_utils.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/runtime/defs_darwin_arm64.go

    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_darwin.go
    
    package runtime
    
    import "unsafe"
    
    const (
    	_EINTR     = 0x4
    	_EFAULT    = 0xe
    	_EAGAIN    = 0x23
    	_ETIMEDOUT = 0x3c
    
    	_PROT_NONE  = 0x0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x1000
    	_MAP_PRIVATE = 0x2
    	_MAP_FIXED   = 0x10
    
    	_MADV_DONTNEED      = 0x4
    	_MADV_FREE          = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/BUILD

        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "transforms/shlo_simplify.td",
        deps = ["@stablehlo//:stablehlo_ops_td_files"],
    )
    
    cc_library(
        name = "folders",
        srcs = ["folders.cc"],
        hdrs = ["folders.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:IR",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 22:27:36 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/common/BUILD

        licenses = ["notice"],
    )
    
    cc_library(
        name = "common",
        srcs = glob(
            ["*.cc"],
            exclude = ["*_test.cc"],
        ),
        hdrs = glob(["*.h"]),
        deps = [
            "//tensorflow/c/experimental/ops/gen/model",
            "//tensorflow/core:framework",
            "//tensorflow/core:framework_internal",
            "//tensorflow/core:lib",
            "//tensorflow/core:lib_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 18:35:29 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/stream_executor/BUILD

        hdrs = ["stream_executor.h"],
        visibility = ["//tensorflow:internal"],
        deps = [
            "//tensorflow/c:c_api_macros_hdrs",
            "//tensorflow/c:tf_status_headers",
        ],
    )
    
    cc_library(
        name = "stream_executor",
        srcs = ["stream_executor.cc"],
        hdrs = ["stream_executor.h"],
        visibility = ["//tensorflow:internal"],
        deps = [
            ":stream_executor_internal",
            "//tensorflow/c:c_api_macros",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 00:27:07 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_buildmod_reason_issue67587.txt

    cd thirteen
    ! go list -deps
    stderr 	'(Go version in go.mod is 1.13, so vendor directory was not used.)'
    
    cd ../unspecified
    ! go list -deps
    stderr 	'(Go version in go.mod is unspecified, so vendor directory was not used.)'
    
    -- thirteen/foo.go --
    package foo
    
    import _ "github.com/foo/bar"
    -- thirteen/go.mod --
    module example.com
    
    go 1.13
    -- thirteen/vendor/github.com/foo/bar/bar.go --
    package bar
    -- unspecified/foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:54:40 UTC 2024
    - 572 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/python/BUILD

            "//tensorflow/lite/toco/...",
        ],
    )
    
    cc_library(
        name = "tf_tfl_flatbuffer_helpers",
        srcs = ["tf_tfl_flatbuffer_helpers.cc"],
        hdrs = ["tf_tfl_flatbuffer_helpers.h"],
        deps = [
            "//tensorflow/cc/saved_model:loader",
            "//tensorflow/compiler/mlir/lite:common",
            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
            "//tensorflow/compiler/mlir/lite:tf_to_tfl_flatbuffer",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:23:49 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/metrics/BUILD

        srcs = ["error_collector.cc"],
        hdrs = ["error_collector.h"],
        deps = [
            ":types_util",
            "//tensorflow/lite/python/metrics:converter_error_data_proto_cc",
            "@com_google_absl//absl/strings",
        ],
    )
    
    cc_library(
        name = "error_collector_inst",
        srcs = ["error_collector_inst.cc"],
        hdrs = ["error_collector_inst.h"],
        deps = [
            ":error_collector",
            ":types_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top