Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for td_files (0.26 sec)

  1. tensorflow/compiler/mlir/BUILD

    )
    
    exports_files(glob(["g3doc/*.md"] + ["g3doc/_includes/tf_passes.md"]))
    
    # To reference all tablegen files here when checking for updates to them.
    filegroup(
        name = "td_files",
        srcs = glob(["**/*.td"]),
    )
    
    cc_library(
        name = "op_or_arg_name_mapper",
        srcs = ["op_or_arg_name_mapper.cc"],
        hdrs = ["op_or_arg_name_mapper.h"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/BUILD

        td_file = "passes/prepare_quantize.td",
        deps = [":quant_td_files"],
    )
    
    gentbl_cc_library(
        name = "quantize_composite_functions_inc_gen",
        compatible_with = get_compatible_with_portable(),
        tbl_outs = [
            (
                ["-gen-rewriters"],
                "passes/quantize_composite_functions.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/BUILD

                "mlrt_ops.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "mlrt_ops.cpp.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "mlrt_ops.td",
        deps = [":mlrt_td_files"],
    )
    
    cc_library(
        name = "mlrt_ops",
        srcs = [
            "mlrt_dialect.cc",
            "mlrt_ops.cc",
        ],
        hdrs = [
            "mlrt_dialect.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 17:04:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/BUILD

                "tfrt_fallback.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "tfrt_fallback.cpp.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "tfrt_fallback.td",
        deps = [":tfrt_fallback_td_files"],
    )
    
    gentbl_cc_library(
        name = "tfrt_fallback_async_opdefs_inc_gen",
        compatible_with = get_compatible_with_portable(),  # copybara: comment
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 27 20:43:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/ir/BUILD

                [
                    "-gen-dialect-defs",
                    "-dialect=quantfork",
                ],
                "QuantOpsDialect.cc.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "QuantOps.td",
        deps = [":QuantizationOpsTdFiles"],
    )
    
    gentbl_cc_library(
        name = "QuantPassIncGen",
        compatible_with = get_compatible_with_portable(),
        tbl_outs = [
            (
                [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 29 02:59:58 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/BUILD

        tbl_outs = [
            (
                ["-gen-rewriters"],
                "generated_canonicalize.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "canonicalize.td",
        deps = [
            ":rewrite_util_td_files",
            "//tensorflow/compiler/mlir/tensorflow:tensorflow_ops_td_files",
        ],
    )
    
    gentbl_cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/BUILD

        tbl_outs = [
            (
                [
                    "-gen-pass-decls",
                ],
                "passes/passes.h.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "passes/passes.td",
        deps = [
            "@llvm-project//mlir:PassBaseTdFiles",
        ],
    )
    
    cc_library(
        name = "passes",
        srcs = [
            "passes/convert_func_to_bfloat16.cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/BUILD

        tbl_outs = [
            (
                ["-gen-rewriters"],
                "transforms/generated_shlo_simplify.inc",
            ),
        ],
        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"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 22:27:36 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/idl/groovy/build.gradle

                }
            }
        }
    }
    
    
    class DummyIdlCompiler extends DefaultTask {
        @InputFiles FileCollection idlFiles
        @OutputDirectory File headerDir
        @OutputDirectory File sourceDir
    
        @TaskAction
        void processIdlFiles() {
            idlFiles.each { File idlFile ->
                def baseName = idlFile.name - '.idl'
                File headerFile = new File(headerDir, "${baseName}.h")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/BUILD

                [
                    "-gen-pass-decls",
                    "-name=TensorFlowLite",
                ],
                "transforms/passes.h.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "transforms/passes.td",
        deps = [
            "@llvm-project//mlir:PassBaseTdFiles",
        ],
    )
    
    gentbl_cc_library(
        name = "tensorflow_lite_ops_inc_gen",
        compatible_with = get_compatible_with_portable(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top