Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for complexAbs (0.29 sec)

  1. 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)
  2. src/fmt/fmt_test.go

    	{"%#+-6d", [3]byte{1, 11, 111}, "[+1     +11    +111  ]"},
    
    	// floates with %v
    	{"%v", 1.2345678, "1.2345678"},
    	{"%v", float32(1.2345678), "1.2345678"},
    
    	// complexes with %v
    	{"%v", 1 + 2i, "(1+2i)"},
    	{"%v", complex64(1 + 2i), "(1+2i)"},
    
    	// structs
    	{"%v", A{1, 2, "a", []int{1, 2}}, `{1 2 a [1 2]}`},
    	{"%+v", A{1, 2, "a", []int{1, 2}}, `{i:1 j:2 s:a x:[1 2]}`},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top