Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for xatan (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
Back to top