Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 165 for computations (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/common/ir/FakeQuantSupport.h

    limitations under the License.
    ==============================================================================*/
    //
    // This file defines support utilities for interoperating with FakeQuant* based
    // QAT (Quantized Aware Training) computations, as implemented by TFLite. Note
    // that FakeQuant* operators mix multiple concerns specific to how TFLite
    // originally implemented quantization. As such, utilities here enforce
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/cc/ops/while_loop.h

    // * create_while_ctx: if true, a WhileContext is created and populated for this
    //     loop. See core/graph/while_context.h for more details on
    //     WhileContexts. This is set to false for loops used as part of gradient
    //     computations, since they're part of the gradient for a loop in the
    //     forward-pass.
    //     TODO(skyewm): revisit this. Should we create WhileContexts for all loops,
    //     even if we don't need them?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 24 08:24:58 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf.cc

              compilation_result->computation->proto(), xla::DebugOptions()));
    
      TF_ASSIGN_OR_RETURN(
          std::unique_ptr<xla::HloModule> hlo_module,
          xla::HloModule::CreateFromProto(compilation_result->computation->proto(),
                                          hlo_module_config));
    
      std::string all_computations;
      for (auto computation : hlo_module->computations()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 00:40:46 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/math/big/example_test.go

    	// false
    }
    
    // This example shows how to use big.Float to compute the square root of 2 with
    // a precision of 200 bits, and how to print the result as a decimal number.
    func Example_sqrt2() {
    	// We'll do computations with 200 bits of precision in the mantissa.
    	const prec = 200
    
    	// Compute the square root of 2 using Newton's Method. We start with
    	// an initial estimate for sqrt(2), and then iterate:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 16:15:32 UTC 2020
    - 4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_to_nhwc.mlir

                                ) -> tensor<?x256xf32> {
    
      // This is a simplified ResNet layer that gets input in NHWC format, converts
      // it to NCHW before padding, and does all computations in NCHW (this is the
      // default setup for ResNet model trained in fp32 on GPU).
      //
      // To be able to use Tensor Cores on latest NVIDIA GPUs this model has to be
      // converted to NHWC data format.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_op_quant_spec.cc

    // from TF-Quantizer to stableHLO quantization
    bool IsOpWithDataMovementTrait(Operation* op) {
      // Supported data movement ops. These ops do not perform any computations and
      // has one result operand.
      return isa<TF::IdentityOp, TF::CastOp, TF::ReshapeOp, TF::XlaShardingOp,
                 TF::GatherOp, TF::GatherV2Op, TF::XlaGatherOp, TF::ExpandDimsOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/LongAdder.java

      public void reset() {
        internalReset(0L);
      }
    
      /**
       * Equivalent in effect to {@link #sum} followed by {@link #reset}. This method may apply for
       * example during quiescent points between multithreaded computations. If there are updates
       * concurrent with this method, the returned value is not guaranteed to be the final
       * value occurring before the reset.
       *
       * @return the sum
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/LongAdder.java

      public void reset() {
        internalReset(0L);
      }
    
      /**
       * Equivalent in effect to {@link #sum} followed by {@link #reset}. This method may apply for
       * example during quiescent points between multithreaded computations. If there are updates
       * concurrent with this method, the returned value is not guaranteed to be the final
       * value occurring before the reset.
       *
       * @return the sum
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/CachingExcludeFactory.java

    import java.util.HashMap;
    import java.util.Map;
    import java.util.Set;
    import java.util.function.Function;
    
    /**
     * This factory is responsible for caching merging queries. It delegates computations
     * to another factory, so if the delegate returns the same instances for the same
     * queries, caching will be faster.
     */
    public class CachingExcludeFactory extends DelegatingExcludeFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LongAdder.java

      public void reset() {
        internalReset(0L);
      }
    
      /**
       * Equivalent in effect to {@link #sum} followed by {@link #reset}. This method may apply for
       * example during quiescent points between multithreaded computations. If there are updates
       * concurrent with this method, the returned value is not guaranteed to be the final
       * value occurring before the reset.
       *
       * @return the sum
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
Back to top