Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for xatan (0.52 sec)

  1. tensorflow/cc/gradients/math_grad_test.cc

    }
    
    TEST_F(CWiseUnaryGradTest, Atan) {
      auto x_fn = [this](const int i) { return RV({0, -1, 1, -2, 2, -3, 3}); };
      TestCWiseGrad<float, float>(ATAN, x_fn);
    }
    
    TEST_F(CWiseUnaryGradTest, Atan_Complex) {
      auto x_fn = [this](const int i) {
        return CRV({{1, 0}, {0, 1}, {2, -1}, {1, 2}, {3, 4}});
      };
      // TODO(kbsriram)
      // Add test when the atan kernel supports complex numbers
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  2. src/math/all_test.go

    		}
    	}
    }
    
    func TestAtan(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		if f := Atan(vf[i]); !veryclose(atan[i], f) {
    			t.Errorf("Atan(%g) = %g, want %g", vf[i], f, atan[i])
    		}
    	}
    	for i := 0; i < len(vfatanSC); i++ {
    		if f := Atan(vfatanSC[i]); !alike(atanSC[i], f) {
    			t.Errorf("Atan(%g) = %g, want %g", vfatanSC[i], f, atanSC[i])
    		}
    	}
    }
    
    func TestAtanh(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  3. docs/az/docs/index.md

    * **Çevik kodlama**: Funksiyanallıqları inkişaf etdirmək sürətini təxminən 200%-dən 300%-ə qədər artırın. *
    * **Daha az xəta**: İnsan (developer) tərəfindən törədilən səhvlərin təxminən 40% -ni azaldın. *
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="xalan" name="serializer" version="2.7.1">
             <artifact name="serializer-2.7.1.jar">
                <sha256 value="a15078d243d4a20b6b4e8ae2f61ed4655e352054e121aada6f7441f1ed445a3c" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
          </component>
          <component group="xalan" name="xalan" version="2.7.1">
             <artifact name="xalan-2.7.1.jar">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  5. docs/tr/docs/alternatives.md

    ### Flask REST framework'leri
    
    Pek çok Flask REST framework'ü var, fakat bunları biraz araştırdıktan sonra pek çoğunun artık geliştirilmediğini ve göze batan bazı sorunlarının olduğunu gördüm.
    
    ### <a href="https://marshmallow.readthedocs.io/en/stable/" class="external-link" target="_blank">Marshmallow</a>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/math_grad.cc

      auto dydx = Reciprocal(scope, Add(scope, one, Square(scope, op.input(0))));
      auto dx = Mul(scope, grad_inputs[0], dydx);
      grad_outputs->push_back(dx);
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Atan", AtanGrad);
    
    Status Atan2Grad(const Scope& scope, const Operation& op,
                     const std::vector<Output>& grad_inputs,
                     std::vector<Output>* grad_outputs) {
      auto y = op.input(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          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",
                "Log1p", "Invert", "LogicalNot", "Ndtri", "Neg", "Rint", "Round",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ```
    systemProp.javax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl
    systemProp.javax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl
    systemProp.javax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_AtanOp : TF_Op<"Atan", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes the trignometric inverse tangent of x element-wise.";
    
      let description = [{
    The `tf.math.atan` operation returns the inverse of `tf.math.tan`, such that
    if `y = tf.math.tan(x)` then, `x = tf.math.atan(y)`.
    
    **Note**: The output of `tf.math.atan` will lie within the invertible range
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Equal", Func, 21},
    		{"EqualFunc", Func, 21},
    	},
    	"math": {
    		{"Abs", Func, 0},
    		{"Acos", Func, 0},
    		{"Acosh", Func, 0},
    		{"Asin", Func, 0},
    		{"Asinh", Func, 0},
    		{"Atan", Func, 0},
    		{"Atan2", Func, 0},
    		{"Atanh", Func, 0},
    		{"Cbrt", Func, 0},
    		{"Ceil", Func, 0},
    		{"Copysign", Func, 0},
    		{"Cos", Func, 0},
    		{"Cosh", Func, 0},
    		{"Dim", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top