Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,124 for cCompiler (0.15 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/gpu_ops.td

    ==============================================================================*/
    
    #ifdef TFRT_GPU_OPS
    #else
    #define TFRT_GPU_OPS
    
    include "tfrt/tfrt_op_base.td"
    include "tfrt/compiler/opdefs/tfrt_op_interfaces.td"
    include "tfrt/compiler/opdefs/tfrt_traits.td"
    include "tfrt_fallback.td"
    
    def TFRT_GPU_Dialect : Dialect {
      let name = "gpurt";
    
      let description = [{
        The TFRT GPU Dialect.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

    #include "mlir/IR/Value.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/op_or_arg_name_mapper.h"
    #include "tensorflow/compiler/tf2xla/xla_context.h"
    #include "tensorflow/compiler/tf2xla/xla_expression.h"
    #include "xla/client/xla_builder.h"
    #include "xla/client/xla_computation.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.compile.Compile.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 762 bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/NormalizingJavaCompilerTest.groovy

            when:
            compiler.execute(spec)
    
            then:
            1 * target.execute(spec) >> {
                assert spec.sourceFiles == files("Person1.java", "Person2.java")
            }
        }
    
        def "delegates to target compiler after resolving source and processor path"() {
            WorkResult workResult = Mock()
    
            when:
            def result = compiler.execute(spec)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompiler.java

    import org.gradle.api.tasks.WorkResult;
    import org.gradle.language.base.internal.compile.Compiler;
    
    import java.util.Collection;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * Sets up annotation processing before delegating to the actual Java compiler.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/rc/plugins/internal/WindowsResourcesCompileTaskConfig.java

            PreprocessingTool rcCompiler = (PreprocessingTool) binary.getToolByName("rcCompiler");
            task.setMacros(rcCompiler.getMacros());
            task.getCompilerArgs().set(rcCompiler.getArgs());
    
            FileTree resourceOutputs = task.getOutputs().getFiles().getAsFileTree().matching(new PatternSet().include("**/*.res"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/ops/xla_ops.cc

        // The compilation cache is stateful.
        .SetIsStateful()
        .Doc(R"(XLA Compile Op. For use by the XLA JIT only.
    
    Compiles a TensorFlow function into an XLA LocalExecutable and returns a key
    that _XlaRun can use to look up the LocalExecutable and execute it.
    
    key: A key that can be used to look up the local executable compiled by the
       node and associated metadata.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/IncrementalCompilerFactory.java

     */
    
    package org.gradle.api.internal.tasks.compile.incremental;
    
    import org.gradle.api.file.FileTree;
    import org.gradle.api.internal.cache.StringInterner;
    import org.gradle.api.internal.tasks.compile.CleaningJavaCompiler;
    import org.gradle.api.internal.tasks.compile.JavaCompileSpec;
    import org.gradle.api.internal.tasks.compile.incremental.classpath.ClassSetAnalyzer;
    import org.gradle.api.internal.tasks.compile.incremental.recomp.CurrentCompilationAccess;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tfcompile.bzl

                deps = [
                    ":" + name,
                    "//tensorflow/compiler/aot:benchmark",
                    "@local_xla//xla:executable_run_options",
                    "@eigen_archive//:eigen3",
                ] + if_android([
                    "//tensorflow/compiler/aot:benchmark_extra_android",
                ]),
                tags = tags,
                visibility = visibility,
            )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DefaultJavaCompilerFactory.java

            }
            return javaHomeBasedJavaCompilerFactory;
        }
    
        @Override
        @SuppressWarnings("unchecked")
        public <T extends CompileSpec> Compiler<T> create(Class<T> type) {
            Compiler<T> result = createTargetCompiler(type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top