Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 127 for Compilation (0.18 sec)

  1. tensorflow/compiler/jit/device_compilation_profiler.h

      // cluster and also determines whether the cluster has gone megamorphic (and
      // sets the megamorphic bit accordingly).
      void RegisterExecution(const NameAttrList& function);
    
      // Registers a cluster compilation. Increments the compilation count and
      // accumulates the compile time for the given cluster. Also broadcasts an
      // XlaJitCompilationActivity.
      virtual Status RegisterCompilation(const NameAttrList& function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    Java 6 and 7 can be used for <<building_java_projects.adoc#sec:java_cross_compilation,compilation>> but are deprecated for use with testing. Testing with Java 6 and 7 will not be supported in Gradle 9.0.
    
    Any fully supported version of Java can be used for compilation or testing.
    However, the latest Java version may only be supported for compilation or testing, not for running Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGeneratorTest.groovy

                    @ReplacesEagerProperty
                    public abstract Property<String> getSourceCompatibility();
                }
            """
    
            when:
            Compilation compilation = compile(givenSource)
    
            then:
            assertThat(compilation)
                .generatedFile(CLASS_OUTPUT, "META-INF/gradle/instrumentation/upgraded-properties.json")
                .contentsAsString(StandardCharsets.UTF_8)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/pjrt_device_compiler_client.h

      // have been produced by this client.
      absl::StatusOr<std::string> SerializeExecutable(
          const xla::PjRtLoadedExecutable& executable) override;
    
      // PjRt doesn't support AOT compilation yet. Builds a PjRtLoadedExecutable and
      // serializes it to string.
      absl::StatusOr<std::string> BuildSerializedExecutable(
          const XlaCompiler::Options& options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/tests/device_compiler_test_helper.h

      // Runs the graph using specified batch size both with and without XLA JIT
      // compilation. Returns an error if the results between the two do not match.
      Status ExecuteWithBatch(const GraphDef& graph, int batch);
    
      // Adds the suffix "_altered" to the HLO module names of all of the persistent
      // XLA compilation cache entries found at the specified directory. If none are
      // found, returns NOT_FOUND error.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        /**
         * Get the consumable configuration which produces the {@code apiElements} variant of this feature.
         * This configuration includes all API compilation dependencies as well as the feature's
         * compilation outputs, but does not include {@code implementation}, {@code compileOnly},
         * or {@code runtimeOnly} dependencies.
         *
         * @return The {@code apiElements} configuration.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile_test.go

    					Expression: "user.username == 'foo'",
    				},
    			},
    			wantErr: `compilation failed: ERROR: <input>:1:1: undeclared reference to 'user' (in container '')`,
    		},
    		{
    			name: "invalid ClaimMappingCondition",
    			expressionAccessors: []ExpressionAccessor{
    				&ClaimMappingExpression{
    					Expression: "claims + 1",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompiler.java

                return delegate.execute(spec);
            } catch (RuntimeException e) {
                // in-process Groovy compilation throws a CompilationFailedException from another classloader, hence testing class name equality
                // TODO:pm Prefer class over class name for equality check once using WorkerExecutor for in-process groovy compilation
                if ((spec.getCompileOptions().isFailOnError() && spec.getGroovyCompileOptions().isFailOnError())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    // Whether soft placement is allowed. If true, the marked node is eligible for
    // outside compilation.
    inline constexpr llvm::StringRef kAllowSoftPlacementAttr =
        "allow_soft_placement";
    
    // Marks a node for XLA compilation. The attribute value indicates the
    // compilation device type.
    inline constexpr llvm::StringRef kCompileDeviceTypeAttr =
        "_xla_compile_device_type";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/DebugOptions.java

    /**
     * Debug options for Java compilation. Only take effect if {@link CompileOptions#debug}
     * is set to {@code true}.
     */
    public class DebugOptions extends AbstractOptions {
        private static final long serialVersionUID = 0;
    
        private String debugLevel;
    
        /**
         * Get a comma-separated list of debug information to be generated during compilation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 02:50:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top