Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for td_files (0.14 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/net/http/example_test.go

    	// To serve a directory on disk (/tmp) under an alternate URL
    	// path (/tmpfiles/), use StripPrefix to modify the request
    	// URL's path before the FileServer sees it:
    	http.Handle("/tmpfiles/", http.StripPrefix("/tmpfiles/", http.FileServer(http.Dir("/tmp"))))
    }
    
    func ExampleStripPrefix() {
    	// To serve a directory on disk (/tmp) under an alternate URL
    	// path (/tmpfiles/), use StripPrefix to modify the request
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 16:12:45 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/tensorflow/BUILD

        tbl_outs = [
            (
                ["-gen-rewriters"],
                "fallback_to_flex_patterns.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "fallback_to_flex_patterns.td",
        deps = [":ptq_td_files"],
    )
    
    cc_library(
        name = "tf_quantization_passes",
        srcs = [
            "fallback_to_flex_ops.cc",
            "fallback_to_flex_patterns.inc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm/src/testFixtures/groovy/org/gradle/jvm/toolchain/JdkRepository.groovy

                def jdkHomeParentDirectory = jdkHomeDirectory.getParentFile()
                List<File> jdkFiles = new LinkedList<>()
                populateFilesList(jdkFiles, jdkHomeDirectory)
    
                def fileSystem = FileSystems.getDefault()
    
                for (File file : jdkFiles) {
                    def path = RelativePathUtil.relativePath(jdkHomeParentDirectory, file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 20 08:26:19 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/runtime/env_plan9.go

    		env := make([]byte, len(name)+r)
    		copy(env, name)
    		copy(env[len(name):], buf[:r])
    		envs = append(envs, string(env))
    	})
    }
    
    // dofiles reads the directory opened with file descriptor fd, applying function f
    // to each filename in it.
    //
    //go:nosplit
    func dofiles(dirfd int32, f func([]byte)) {
    	dirbuf := new([dirBufSize]byte)
    
    	var off int64 = 0
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 02:39:39 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top