Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,124 for cCompiler (0.12 sec)

  1. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

    #include "tensorflow/compiler/jit/variable_info.h"
    #include "tensorflow/compiler/jit/variable_info_util.h"
    #include "tensorflow/compiler/jit/xla_compile_util.h"
    #include "tensorflow/compiler/jit/xla_compiler_options_util.h"
    #include "tensorflow/compiler/jit/xla_launch_util.h"
    #include "tensorflow/compiler/jit/xla_platform_info.h"
    #include "tensorflow/compiler/tf2xla/const_analysis.h"
    #include "tensorflow/compiler/tf2xla/tf2xla_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

            return compileOptions;
        }
    
        abstract protected Compiler<ScalaJavaJointCompileSpec> getCompiler(ScalaJavaJointCompileSpec spec);
    
        @TaskAction
        public void compile() {
            ScalaJavaJointCompileSpec spec = createSpec();
            configureIncrementalCompilation(spec);
            Compiler<ScalaJavaJointCompileSpec> compiler = getCompiler(spec);
            if (isNonIncrementalCompilation()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    //     int foo;
    //     GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is
    //                                      // not a compile-time constant.
    //
    // - By using the type CompileAssert<(bool(expr))>, we ensures that
    //   expr is a compile-time constant.  (Template arguments must be
    //   determined at compile-time.)
    //
    // - The outer parentheses in CompileAssert<(bool(expr))> are necessary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/DefaultScriptCompilerFactoryTest.groovy

        def "compiles script into class and wraps instance in script runner"() {
            given:
            def target = new Object()
    
            when:
            def compiler = factory.createCompiler(source)
            def result = compiler.compile(Script, target, targetScope, operation, verifier)
    
            then:
            result == runner
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 09 15:05:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    For example, if you want to change the warning level generated by the compiler for all variants, you can use this configuration:
    
    .Setting {cpp} compiler options for all variants
    ====
    include::sample[dir="snippets/cpp/basic/kotlin",files="build.gradle.kts[tags=cpp-compiler-options-all-variants]"]
    include::sample[dir="snippets/cpp/basic/groovy",files="build.gradle[tags=cpp-compiler-options-all-variants]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-compiler-configuration.kt

    Paul Merlin <******@****.***> 1698249369 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:57 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

         */
        Task getCompileTask();
    
        /**
         * Returns the compiler executable that is used to compile this binary.
         *
         * @return The compiler executable or {@code null} if the compiler for this binary is not available.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. test/codegen/README

    // license that can be found in the LICENSE file.
    
    The codegen directory contains code generation tests for the gc
    compiler.
    
    
    - Introduction
    
    The test harness compiles Go code inside files in this directory and
    matches the generated assembly (the output of `go tool compile -S`)
    against a set of regexps to be specified in comments that follow a
    special syntax (described below). The test driver is implemented as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/tf_to_hlo_compiler.h

    #include <memory>
    #include <vector>
    
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "tensorflow/core/framework/op_kernel.h"
    
    namespace tensorflow {
    
    class TfToHloCompiler {
     public:
      TfToHloCompiler() = default;
      virtual ~TfToHloCompiler() = default;
    
      // Compiles a Tensorflow `function` to an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalNativeCompiler.java

    import java.util.Collections;
    import java.util.List;
    
    @NonNullApi
    public class IncrementalNativeCompiler<T extends NativeCompileSpec> implements Compiler<T> {
        private final Logger logger = LoggerFactory.getLogger(IncrementalNativeCompiler.class);
    
        private final Compiler<T> delegateCompiler;
        private final TaskOutputsInternal outputs;
        private final Deleter deleter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top