Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for ABS (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "Computes the Bessel i0e function of `x` element-wise.";
    
      let description = [{
    Exponentially scaled modified Bessel function of order 0 defined as
    `bessel_i0e(x) = exp(-abs(x)) bessel_i0(x)`.
    
    This function is faster and numerically stabler than `bessel_i0(x)`.
      }];
    
      let arguments = (ins
        TF_FloatTensor:$x
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. src/go/build/build.go

    		} else {
    			// Find the absolute source directory. hasSubdir does not handle
    			// relative paths (and can't because the callbacks don't support this).
    			var err error
    			absSrcDir, err = filepath.Abs(srcDir)
    			if err != nil {
    				return errNoModules
    			}
    		}
    
    		// If the source directory is in GOROOT, then the in-process code works fine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/adminlte.min.js.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad.cc

                   std::vector<Output>* grad_outputs) {
      // dx = dy * sign(x)
      grad_outputs->push_back(Mul(scope, grad_inputs[0], Sign(scope, op.input(0))));
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Abs", AbsGrad);
    
    Status NegGrad(const Scope& scope, const Operation& op,
                   const std::vector<Output>& grad_inputs,
                   std::vector<Output>* grad_outputs) {
      // dx = -dy;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      %cst = "tf.Const"() {value = dense<1.000000e+00> : tensor<3x4xf32>} : () -> tensor<3x4xf32>
      %cst_0 = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
      %0 = "tf.Abs"(%cst) {device = ""} : (tensor<3x4xf32>) -> tensor<3x4xf32>
      %1 = "tf.Max"(%0, %cst_0) {device = "", keep_dims = false} : (tensor<3x4xf32>, tensor<i32>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // Constraint that the attribute value is less than 'n'
    class ConstDoubleValueLessThan<string n> : Constraint<
      CPred<"$0.isa<DenseElementsAttr>() && "
      "$0.cast<DenseElementsAttr>().getNumElements() == 1 && "
      "std::abs(*$0.cast<DenseElementsAttr>().getValues<float>().begin()) < "
      # n>>;
    
    // Constraint that the attribute value is negative infinity or negative largest.
    // We use both -inf & flt_min due to the forward compatibility.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    	// us back to our monotonically decreasing steady-state.
    	//
    	// A pageAlloc lock serializes updates between min, max, and searchAddr, so abs(searchAddr)
    	// is always guaranteed to be >= min and < max (converted to heap addresses).
    	//
    	// searchAddrBg is increased only on each new generation and is mainly used by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "NGCzerocarry", argLength: 1, reg: gp0flags1, typ: "UInt64", asm: "NGC"},       // -1 if borrowing, 0 otherwise.
    		{name: "FABSD", argLength: 1, reg: fp11, asm: "FABSD"},                                // abs(arg0), float64
    		{name: "FNEGS", argLength: 1, reg: fp11, asm: "FNEGS"},                                // -arg0, float32
    		{name: "FNEGD", argLength: 1, reg: fp11, asm: "FNEGD"},                                // -arg0, float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    func overlayDir(dstRoot, srcRoot string) error {
    	dstRoot = filepath.Clean(dstRoot)
    	if err := os.MkdirAll(dstRoot, 0777); err != nil {
    		return err
    	}
    
    	srcRoot, err := filepath.Abs(srcRoot)
    	if err != nil {
    		return err
    	}
    
    	return filepath.WalkDir(srcRoot, func(srcPath string, d fs.DirEntry, err error) error {
    		if err != nil || srcPath == srcRoot {
    			return err
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      static absl::flat_hash_map<string, std::vector<string>>* result =
          new absl::flat_hash_map<string, std::vector<string>>{
              // Unary
              {"PW",
               {"ComplexAbs", "Angle", "Conj", "Abs", "Acos", "Acosh", "Asin",
                "Atan", "Atanh", "Ceil", "Cos", "Cosh", "Sin", "Exp", "Expm1",
                "Floor", "IsFinite", "IsInf", "IsNan", "Inv", "Reciprocal", "Log",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top