Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,856 for COMPILER (0.15 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/tac_wrapper.cc

    #include "tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/tac_wrapper.h"
    
    #include <memory>
    #include <string>
    #include <vector>
    
    #include "absl/status/status.h"
    #include "tensorflow/compiler/mlir/lite/experimental/tac/common/targets.h"
    #include "tensorflow/compiler/mlir/lite/experimental/tac/common/utils.h"
    #include "tensorflow/compiler/mlir/lite/experimental/tac/tac_module.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/cpp/basic/groovy/build.gradle

        }
    }
    // end::cpp-dependency-mgmt[]
    
    // tag::cpp-compiler-options-all-variants[]
    tasks.withType(CppCompile).configureEach {
        // Define a preprocessor macro for every binary
        macros.put("NDEBUG", null)
    
        // Define a compiler options
        compilerArgs.add '-W3'
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll toolChain.map { toolChain ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/NativeCompilerTest.groovy

                    }
                }
            }
        }
    
        def "arguments include source file"() {
            given:
            def compiler = getCompiler()
            def testDir = tmpDirProvider.testDirectory
            def sourceFile = testDir.file("source.ext")
    
            when:
            def args = compiler.getSourceArgs(sourceFile)
    
            then:
            args == [sourceFile.absoluteFile.toString()]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.h"  // IWYU pragma: keep
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_attributes.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 22:48:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

     * limitations under the License.
     */
    
    package com.gradle.internal.compiler.java.listeners
    
    import com.gradle.internal.compiler.java.AbstractCompilerPluginTest
    import org.gradle.internal.compiler.java.TestCompiler
    import org.gradle.internal.compiler.java.listeners.constants.ConstantDependentsConsumer
    import org.gradle.test.precondition.Requires
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/examples/BUILD

    cc_library(
        name = "example_hardware",
        srcs = ["example_hardware.cc"],
        hdrs = ["example_hardware.h"],
        deps = [
            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
            "//tensorflow/compiler/mlir/lite/experimental/tac:device_transform_patterns",
            "//tensorflow/compiler/mlir/lite/experimental/tac/hardwares:simple_hardware",
        ],
        alwayslink = 1,
    )
    
    tf_cc_binary(
        name = "example-hardware-translate",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 977 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/cpp/basic/kotlin/build.gradle.kts

        }
    }
    // end::cpp-dependency-mgmt[]
    
    // tag::cpp-compiler-options-all-variants[]
    tasks.withType(CppCompile::class.java).configureEach {
        // Define a preprocessor macro for every binary
        macros.put("NDEBUG", null)
    
        // Define a compiler options
        compilerArgs.add("-W3")
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll(toolChain.map { toolChain ->
            when (toolChain) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_remaining_ops.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_attributes.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_structs.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_verifiers.h"
    
    #define GET_OP_FWD_DEFINES
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/BUILD

    load("//tensorflow/compiler/mlir:glob_lit_test.bzl", "glob_lit_tests")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "//tensorflow/compiler/mlir:run_lit.sh",
        features = if_oss(["--path=org_tensorflow/tensorflow/compiler/mlir/tfrt"]),
        test_file_exts = ["mlir"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 903 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.cc

    #include "mlir/IR/OpImplementation.h"  // from @llvm-project
    #include "mlir/IR/OperationSupport.h"  // from @llvm-project
    #include "mlir/IR/TypeUtilities.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.h"
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.h"
    #include "tfrt/basic_kernels/opdefs/tfrt_base.h"  // from @tf_runtime
    #include "tfrt/basic_kernels/opdefs/types.h"  // from @tf_runtime
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 01:32:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top