Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 216 for arithmetic (0.19 sec)

  1. test/fibo.go

    // -opt         optimize memory allocation through reuse
    // -short       only print the first 10 digits of very large fibonacci numbers
    
    // Command fibo is a stand-alone test and benchmark to
    // evaluate the performance of bignum arithmetic written
    // entirely in Go.
    package main
    
    import (
    	"flag"
    	"fmt"
    	"math/big" // only used for printing
    	"os"
    	"strconv"
    	"testing"
    	"text/tabwriter"
    	"time"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 08 22:22:58 UTC 2014
    - 6.3K bytes
    - Viewed (0)
  2. tensorflow/c/kernels_experimental.h

    // input and value tensors. It also accepts the copy callback provided by
    // pluggable vendor to do the copying of the tensors and the update callback to
    // apply the arithmetic operation. The caller takes ownership of the `source`,
    // `dest`, `tensor` and `value` tensors and is responsible for freeing them with
    // TF_DeleteTensor.
    TF_CAPI_EXPORT extern void TF_AssignUpdateVariable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let constructor = "mlir::quant::stablehlo::CreateQuantizeWeightPass()";
    }
    
    def UnfuseMhloBatchNormPass : Pass<"stablehlo-unfuse-mhlo-batch-norm", "mlir::func::FuncOp"> {
      let summary = "Unfuses batch normalization into arithmetic ops.";
    }
    
    def LiftQuantizableSpotsAsFunctionsPass : Pass<"stablehlo-lift-quantizable-spots-as-functions", "mlir::ModuleOp"> {
      let summary = "Replace quantization candidates with composite functions into the module.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/passes.td

      let constructor = "CreateIdentifyDilatedConvPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def GetArithmeticCountPass : Pass<"tfl-get-arithmetic-count", "mlir::func::FuncOp"> {
      let summary = "Calculate arithmetic count for tfl operations.";
      let constructor = "CreateGetArithmeticCountPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/UnsignedLong.java

    import java.io.Serializable;
    import java.math.BigInteger;
    import javax.annotation.CheckForNull;
    
    /**
     * A wrapper class for unsigned {@code long} values, supporting arithmetic operations.
     *
     * <p>In some cases, when speed is more important than code readability, it may be faster simply to
     * treat primitive {@code long} values as unsigned, using the methods from {@link UnsignedLongs}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/UnsignedLong.java

    import java.io.Serializable;
    import java.math.BigInteger;
    import javax.annotation.CheckForNull;
    
    /**
     * A wrapper class for unsigned {@code long} values, supporting arithmetic operations.
     *
     * <p>In some cases, when speed is more important than code readability, it may be faster simply to
     * treat primitive {@code long} values as unsigned, using the methods from {@link UnsignedLongs}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    		// Otherwise use the raw address, so that things like relative
    		// jumps show up as JMP 0x123 instead of JMP f+10(SB).
    		// It is usually easier to search for 0x123 than to do the mental
    		// arithmetic to find f+10.
    		addr := pc + uint64(inst.Len) + uint64(a)
    		if s, base := symname(addr); s != "" && addr == base {
    			return fmt.Sprintf("%s(SB)", s)
    		}
    		return fmt.Sprintf("%#x", addr)
    
    	case Imm:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. src/strconv/atof.go

    	}
    
    	if hex {
    		f, err := atofHex(s[:n], &float32info, mantissa, exp, neg, trunc)
    		return float32(f), n, err
    	}
    
    	if optimize {
    		// Try pure floating-point arithmetic conversion, and if that fails,
    		// the Eisel-Lemire algorithm.
    		if !trunc {
    			if f, ok := atof32exact(mantissa, exp, neg); ok {
    				return f, n, nil
    			}
    		}
    		f, ok := eiselLemire32(mantissa, exp, neg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

     public:
      StringRef getArgument() const final { return "unfuse-mhlo-batch-norm-pass"; }
      StringRef getDescription() const final {
        return "Unfuses MHLO batch norm inference op into arithmetic ops";
      }
      void getDependentDialects(::mlir::DialectRegistry &registry) const override {
        // TODO(b/299514833): Remove TensorFlowDialect usage.
        registry.insert<shape::ShapeDialect, mlir::TF::TensorFlowDialect>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/math/big/floatconv_test.go

    		{5e-304 / 1e20, 'g', -1, "5e-324"},
    		{-5e-304 / 1e20, 'g', -1, "-5e-324"},
    		{fdiv(5e-304, 1e20), 'g', -1, "5e-324"},   // avoid constant arithmetic
    		{fdiv(-5e-304, 1e20), 'g', -1, "-5e-324"}, // avoid constant arithmetic
    
    		{32, 'g', -1, "32"},
    		{32, 'g', 0, "3e+01"},
    
    		{100, 'x', -1, "0x1.9p+06"},
    
    		// {math.NaN(), 'g', -1, "NaN"},  // Float doesn't support NaNs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
Back to top