Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,214 for ccompile (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/scripts/BuildScriptCompilationAndInstrumentation.java

            this.transformFactory = transformFactory;
        }
    
        @Override
        public abstract void visitIdentityInputs(InputVisitor visitor);
    
        /**
         * A compile operation. It should return a File where classes are compiled to.
         */
        protected abstract File compile(File workspace);
    
        /**
         * Provides a File where instrumented output will be written to.
         */
        protected abstract File instrumentedOutput(File workspace);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/gpu_ops.td

      let results = (outs TFTensorType);
      let assemblyFormat = "operands attr-dict";
    }
    
    def CompileAndExecuteOp: Gpu_Op<"compile_and_execute"> {
      let summary = "GPU compile and execute operation.";
      let description = [{
        The op compiles and executes a GPU cluster function.
    
        func_name is the name of the function to be executed on GPU.
        resource_indices are the indices of inputs that are resources.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslJvmTargetIntegrationTest.kt

            assertThat(build("help").output, containsString(outputFor(JavaVersion.VERSION_11)))
        }
    
        @Test
        @LeaksFileHandles("Kotlin compiler daemon  taking time to shut down")
        fun `can use Java Toolchain to compile precompiled scripts`() {
    
            val currentJvm = Jvm.current()
            assumeNotNull(currentJvm)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 08:31:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf.cc

    #include "tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.h"
    #include "tensorflow/compiler/mlir/tf2xla/internal/compilation_timer.h"
    #include "tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_mlir.h"
    #include "tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_to_hlo.h"
    #include "tensorflow/compiler/tf2xla/layout_util.h"
    #include "tensorflow/compiler/tf2xla/xla_helpers.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 00:40:46 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/go/internal/work/build.go

    		cannot be included due to a missing tool or ambiguous directory structure.
    	-compiler name
    		name of compiler to use, as in runtime.Compiler (gccgo or gc).
    	-gccgoflags '[pattern=]arg list'
    		arguments to pass on each gccgo compiler/linker invocation.
    	-gcflags '[pattern=]arg list'
    		arguments to pass on each go tool compile invocation.
    	-installsuffix suffix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultJavaCompilerFactoryTest.groovy

            expect:
            def compiler = factory.create(TestForkingJavaCompileSpec)
            compiler instanceof ModuleApplicationNameWritingCompiler
            compiler.delegate instanceof AnnotationProcessorDiscoveringCompiler
            compiler.delegate.delegate instanceof NormalizingJavaCompiler
            compiler.delegate.delegate.delegate instanceof DaemonJavaCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. 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)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DaemonJavaCompiler.java

     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.compile;
    
    import org.gradle.api.internal.ClassPathRegistry;
    import org.gradle.api.internal.tasks.compile.daemon.AbstractDaemonCompiler;
    import org.gradle.api.internal.tasks.compile.daemon.CompilerWorkerExecutor;
    import org.gradle.internal.classloader.VisitableURLClassLoader;
    import org.gradle.internal.classpath.ClassPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompileJavaBuildOperationReportingCompiler.java

     */
    
    package org.gradle.api.internal.tasks.compile;
    
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.internal.tasks.compile.CompileJavaBuildOperationType.Result.AnnotationProcessorDetails;
    import org.gradle.api.internal.tasks.compile.incremental.processing.AnnotationProcessingResult;
    import org.gradle.api.internal.tasks.compile.incremental.processing.AnnotationProcessorResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top