Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 340 for subTable (0.15 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor.h

    // for replication and parallel execution ops, which may slow performance.
    // Prefer to use the v2 of this API.
    //
    // This also converts the Tensorflow Dialect MLIR into the Tensorflow Executor
    // dialect that is suitable to be exported to GraphDef. Graph -> MLIR -> Graph
    // is not perfectly round trippable, so this API will attempt to make the module
    // exportable and verify some properties of the Tensorflow Executor MLIR that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 11 18:45:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.h

    #include "tensorflow/core/lib/core/status.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v1 {
    
    // Run all the passes involved in transforming the graph before execution so
    // that it is suitable for targeting devices when called via the TF1 Session
    // API.
    // These transformations take as input a Tensorflow Graph as an MLIR Module
    // and transforms the module in place to cluster the given ops for compilation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 14:08:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/HostSpecifier.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.net.InetAddress;
    import java.text.ParseException;
    import javax.annotation.CheckForNull;
    
    /**
     * A syntactically valid host specifier, suitable for use in a URI. This may be either a numeric IP
     * address in IPv4 or IPv6 notation, or a domain name.
     *
     * <p>Because this class is intended to represent host specifiers which can reasonably be used in a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. lib/time/mkzip.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // Mkzip writes a zoneinfo.zip with the content of the current directory
    // and its subdirectories, with no compression, suitable for package time.
    //
    // Usage:
    //
    //	go run ../../mkzip.go ../../zoneinfo.zip
    //
    // We use this program instead of 'zip -0 -r ../../zoneinfo.zip *' to get
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/BeanPropertyExtensions.kt

    import java.io.IOException
    import java.lang.reflect.InvocationTargetException
    
    
    /**
     * Writes a bean property.
     *
     * A property can only be written when there's a suitable [Codec] for its [value].
     */
    suspend fun WriteContext.writeNextProperty(name: String, value: Any?, kind: PropertyKind) {
        withPropertyTrace(kind, name) {
            try {
                write(value)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.h

    // Tensorflow GraphDef. This API will add control dependencies and verify that
    // the conversion was successful.
    //
    // This also converts the Tensorflow Dialect MLIR into the Tensorflow Executor
    // dialect that is suitable to be exported to GraphDef. Graph -> MLIR -> Graph
    // is not perfectly round trippable, so this API will attempt to make the module
    // exportable and verify some properties of the Tensorflow Executor MLIR that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 23:19:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestExecution.java

    import java.util.List;
    
    /**
     * The result of a single execution of a performance test.
     */
    public interface PerformanceTestExecution {
        /**
         * Returns a unique identifier for this execution, suitable to be used as HTML id
         */
        String getExecutionId();
    
        String getTeamCityBuildId();
    
        String getVersionUnderTest();
        String getVcsBranch();
        long getStartTime();
        long getEndTime();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/seat_seconds.go

    func (ss SeatSeconds) DurationPerSeat(seats float64) time.Duration {
    	return time.Duration(float64(ss) / seats * (float64(time.Second) / ssScale))
    }
    
    // String converts to a string.
    // This is suitable for large as well as small values.
    func (ss SeatSeconds) String() string {
    	const div = SeatSeconds(ssScale)
    	quo := ss / div
    	rem := ss - quo*div
    	return fmt.Sprintf("%d.%08dss", quo, rem)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 09:16:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/versions/ReleasedVersionDistributions.java

    import static org.gradle.util.internal.CollectionUtils.sort;
    
    /**
     * Provides access to {@link GradleDistribution}s for versions of Gradle that have been released.
     *
     * Only versions that are suitable for testing against are made available.
     */
    public class ReleasedVersionDistributions {
    
        private final IntegrationTestBuildContext buildContext;
    
        private final Factory<Properties> versionsFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ImplicitInputsProvidingService.java

     * the whole resource itself.
     *
     * @param <IN> a service specific type, representing a query of the service, which can be replayed later
     * @param <OUT> the fingerprint result of a service query, suitable for checking up-to-date status
     * @param <SERVICE> the type of the service
     */
    public interface ImplicitInputsProvidingService<IN, OUT, SERVICE> {
    
        SERVICE withImplicitInputRecorder(ImplicitInputRecorder registrar);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top