Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,768 for ccompile (0.14 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. 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)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

    #ifdef MLRT_TF_OPS
    #else
    #define MLRT_TF_OPS
    
    include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_dialect.td"
    include "tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td"
    include "tfrt/compiler/opdefs/tfrt_op_interfaces.td"  // from @tf_runtime
    include "tfrt/compiler/opdefs/tfrt_traits.td"  // from @tf_runtime
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmLanguageUtilities.java

         * @param compileTask the compile task which serves as reference for inference
         */
        <COMPILE extends AbstractCompile & HasCompileOptions> void useDefaultTargetPlatformInference(Configuration configuration, TaskProvider<COMPILE> compileTask);
    
        /**
         * Registers a new source directory for a source set, assuming that it will be compiled by
         * a language or compiler for the JVM (aka, it produces .class files).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:44:05 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_pgo.txt

    [short] skip 'compiles and links executables'
    
    # Set up fresh GOCACHE.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    # build without PGO
    go build triv.go
    
    # build with PGO, should trigger rebuild
    # starting with an empty profile (the compiler accepts it)
    go build -x -pgo=prof -o triv.exe triv.go
    stderr 'preprofile.*-i.*prof'
    stderr 'compile.*-pgoprofile=.*triv.go'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/jit/tf_to_hlo_compiler.h

      virtual Status Compile(const XlaCompiler::CompileOptions& options,
                             const NameAttrList& function,
                             absl::Span<const XlaArgument> args,
                             XlaCompilationResult* result) = 0;
    
      // Compiles a Tensorflow single op to an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result`.
      virtual Status CompileSingleOp(const XlaCompiler::CompileOptions& options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/CLanguageIntegrationTest.groovy

                            if (toolChain in VisualCpp) {
                                cCompiler.args '/DVERSION="The version is \\'1.0\\'"'
                                linker.args '/MANIFESTUAC:level=\\'asInvoker\\' uiAccess=\\'false\\''
                            } else if (toolChain in Clang) {
                                cCompiler.args '-frandom-seed="here is the \\'random\\' seed"'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalNativeCompiler.java

    import org.gradle.api.tasks.WorkResults;
    import org.gradle.cache.ObjectHolder;
    import org.gradle.internal.file.Deleter;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.language.base.internal.compile.Compiler;
    import org.gradle.language.base.internal.tasks.StaleOutputCleaner;
    import org.gradle.nativeplatform.toolchain.internal.NativeCompileSpec;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

    import org.gradle.api.internal.tasks.compile.CleaningJavaCompiler;
    import org.gradle.api.internal.tasks.compile.CommandLineJavaCompileSpec;
    import org.gradle.api.internal.tasks.compile.CompilationSourceDirs;
    import org.gradle.api.internal.tasks.compile.CompilerForkUtils;
    import org.gradle.api.internal.tasks.compile.DefaultGroovyJavaJointCompileSpec;
    import org.gradle.api.internal.tasks.compile.DefaultGroovyJavaJointCompileSpecFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top