Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for formaction (0.18 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        that the device attribute exists.
      }];
    
      let constructor = "tensorflow::tf2xla::internal::CreateVerifyClusteringPass()";
    }
    
    def TPUClusterFormationPass : Pass<"tf-tpu-cluster-formation", "ModuleOp"> {
      let summary = "Forms clusters from operations assigned to the same TPU computation";
    
      let description = [{
        TPU computations from the frontend are composed of a `tf.TPUReplicateMetadata`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    //     sign_bit exponent_bits fraction_bits
    //
    //   Here, sign_bit is a single bit that designates the sign of the
    //   number.
    //
    //   For float, there are 8 exponent bits and 23 fraction bits.
    //
    //   For double, there are 11 exponent bits and 52 fraction bits.
    //
    //   More details can be found at
    //   http://en.wikipedia.org/wiki/IEEE_floating-point_standard.
    //
    // Template parameter:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

            (TF_LogicalOrOp
              (TF_GreaterOp
                (TF_SubOp:$fraction $input, (TF_FloorOp:$round_val $input)),
                (TF_ConstOp:$half (GetScalarOfFloatType<"0.5"> $input))
              ),
              (TF_LogicalAndOp
                // If the input is equal to 0.5 ...
                (TF_EqualOp
                  $fraction,
                  $half,
                  /*incompatible_shape_error*/ConstBoolAttrTrue
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. cmd/globals.go

    	// Maximum size of default bucket encryption configuration allowed
    	maxBucketSSEConfigSize = 1 * humanize.MiByte
    
    	// diskFillFraction is the fraction of a disk we allow to be filled.
    	diskFillFraction = 0.99
    
    	// diskReserveFraction is the fraction of a disk where we will fill other server pools first.
    	// If all pools reach this, we will use all pools with regular placement.
    	diskReserveFraction = 0.15
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskTimeoutIntegrationTest.groovy

                            workerExecutor.${isolationMode}Isolation().submit(BlockingWorkAction) { }
                        }
                    }
                }
    
                abstract class BlockingWorkAction implements WorkAction<WorkParameters.None> {
                    public void execute() {
                        new CountDownLatch(1).await(90, TimeUnit.SECONDS);
                    }
                }
                """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

        }
    
        private ProgressEvents.Operation runBuildWithWorkerAction() {
            buildFile << """
                import org.gradle.workers.*
                abstract class MyWorkerAction implements WorkAction<WorkParameters.None>{
                    @Override public void execute() {
                        // Do nothing
                    }
                }
                task runInWorker {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

        private defineGradleWorkAction() {
            """
            interface WorkActionParams extends WorkParameters {
                Property<String> getName()
            }
            abstract class TestWorkAction implements WorkAction<WorkActionParams> {
                public void execute() {
                    ${server.callFromBuildUsingExpression('parameters.name.get()')}
                }
            }
    
            class ParTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // at the expense of every other priority level.
      // This field has a default value of zero.
      // +optional
      optional int32 nominalConcurrencyShares = 1;
    
      // `lendablePercent` prescribes the fraction of the level's NominalCL that
      // can be borrowed by other priority levels.  This value of this
      // field must be between 0 and 100, inclusive, and it defaults to 0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. src/runtime/mstats.go

    	pause_end       [256]uint64 // circular buffer of recent gc end times (nanoseconds since 1970)
    	numgc           uint32
    	numforcedgc     uint32  // number of user-forced GCs
    	gc_cpu_fraction float64 // fraction of CPU time used by GC
    
    	last_gc_nanotime uint64 // last gc (monotonic time)
    	lastHeapInUse    uint64 // heapInUse at mark termination of the previous GC
    
    	enablegc bool
    }
    
    var memstats mstats
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                }
    
                interface TestParallelWorkActionConfig extends WorkParameters {
                    Property<String> getPath()
                }
    
                abstract class TestParallelWorkAction implements WorkAction<TestParallelWorkActionConfig> {
                    void execute() {
                        new URL("http://localhost:${blockingServer.port}/" + parameters.path.get()).text
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top