Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for Sigmoid (0.13 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                "Floor", "IsFinite", "IsInf", "IsNan", "Inv", "Reciprocal", "Log",
                "Log1p", "Invert", "LogicalNot", "Ndtri", "Neg", "Rint", "Round",
                "Rsqrt", "Sigmoid", "Sign", "Sinh", "Softplus", "Softsign", "Sqrt",
                "Square", "Tan", "Tanh", "Real", "Imag", "Erf", "Erfc", "Erfinv",
                "Lgamma", "Digamma",
                // Binary
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. src/crypto/rsa/rsa.go

    	}
    
    	var (
    		err  error
    		m, c *bigmod.Nat
    		N    *bigmod.Modulus
    		t0   = bigmod.NewNat()
    	)
    	if priv.Precomputed.n == nil {
    		N, err = bigmod.NewModulusFromBig(priv.N)
    		if err != nil {
    			return nil, ErrDecryption
    		}
    		c, err = bigmod.NewNat().SetBytes(ciphertext, N)
    		if err != nil {
    			return nil, ErrDecryption
    		}
    		m = bigmod.NewNat().Exp(c, priv.D.Bytes(), N)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:         }
    func.func @neg_dynamic(%arg0: tensor<?xf32>) -> tensor<?xf32> {
      %0 = "mhlo.negate"(%arg0) : (tensor<?xf32>) -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
    }
    
    // CHECK-LABEL:   func @sigmoid(
    // CHECK-SAME:                  %[[VAL_0:.*]]: tensor<2xf32>) -> tensor<2xf32> {
    // CHECK-DAG:       %[[VAL_1:.*]] = "tf.Const"() <{value = dense<5.000000e-01> : tensor<f32>}> : () -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa.go

    	}
    
    	// SEC 1, Version 2.0, Section 4.1.4
    
    	r, err := bigmod.NewNat().SetBytes(rBytes, c.N)
    	if err != nil || r.IsZero() == 1 {
    		return false
    	}
    	s, err := bigmod.NewNat().SetBytes(sBytes, c.N)
    	if err != nil || s.IsZero() == 1 {
    		return false
    	}
    
    	e := bigmod.NewNat()
    	hashToNat(c, e, hash)
    
    	// w = s⁻¹
    	w := bigmod.NewNat()
    	inverse(c, w, s)
    
    	// p₁ = [e * s⁻¹]G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        FixedOutputRangeInterface,
        QuantizableResult,
        DeclareOpInterfaceMethods<TFL_ArithmeticCount>]> {
      let summary = "Logistic operator";
    
      let description = [{
        Computes element-wise Sigmoid of input
      }];
    
      let arguments = (ins TFL_TensorOf<[F32, QI8, QUI8, QI16, TFL_Quint8]>:$x);
    
      let results = (outs TFL_TensorOf<[F32, QI8, QUI8, QI16, TFL_Quint8]>:$y);
    
      let extraClassDeclaration = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/crypto/internal/bigmod/nat_noasm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build purego || !(386 || amd64 || arm || arm64 || ppc64 || ppc64le || riscv64 || s390x)
    
    package bigmod
    
    import "unsafe"
    
    func addMulVVW1024(z, x *uint, y uint) (c uint) {
    	return addMulVVW(unsafe.Slice(z, 1024/_W), unsafe.Slice(x, 1024/_W), y)
    }
    
    func addMulVVW1536(z, x *uint, y uint) (c uint) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 07:52:41 UTC 2023
    - 664 bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/nat_asm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego && (386 || amd64 || arm || arm64 || ppc64 || ppc64le || riscv64 || s390x)
    
    package bigmod
    
    import "internal/cpu"
    
    // amd64 assembly uses ADCX/ADOX/MULX if ADX is available to run two carry
    // chains in the flags in parallel across the whole operation, and aggressively
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 07:52:41 UTC 2023
    - 942 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    The op returns an error if no system is running.
      }];
    
      let arguments = (ins);
    
      let results = (outs);
    }
    
    def TF_SigmoidOp : TF_Op<"Sigmoid", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes sigmoid of `x` element-wise.";
    
      let description = [{
    Specifically, `y = 1 / (1 + exp(-x))`.
      }];
    
      let arguments = (ins
        TF_FpOrComplexTensor:$x
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ecdsa
    
    import (
    	"bufio"
    	"bytes"
    	"compress/bzip2"
    	"crypto/elliptic"
    	"crypto/internal/bigmod"
    	"crypto/rand"
    	"crypto/sha1"
    	"crypto/sha256"
    	"crypto/sha512"
    	"encoding/hex"
    	"hash"
    	"io"
    	"math/big"
    	"os"
    	"strings"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    A7D7          ; valid                                  # 14.0 LATIN SMALL LETTER MIDDLE SCOTS S
    A7D8          ; mapped                 ; A7D9          # 14.0 LATIN CAPITAL LETTER SIGMOID S
    A7D9          ; valid                                  # 14.0 LATIN SMALL LETTER SIGMOID S
    A7DA..A7F1    ; disallowed                             # NA   <reserved-A7DA>..<reserved-A7F1>
    A7F2          ; mapped                 ; 0063          # 14.0 MODIFIER LETTER CAPITAL C
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
Back to top