Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for acosh (0.12 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_to_hlo_test.cc

    static constexpr char kMlirModuleStr[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
      func.func @main(%arg0 : tensor<1xf32>) -> tensor<1xf32> {
        %0 = "tf.Acos"(%arg0) : (tensor<1xf32>) -> tensor<1xf32>
       func.return %0 : tensor<1xf32>
      }
    })";
    
    static constexpr char kBadMlirModuleStr[] = R"(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. RELEASE.md

    *   Enable JIT-compiled i64-indexed kernels on GPU for large tensors with more than 2**32 elements.
        *   Unary GPU kernels: Abs, Atanh, Acos, Acosh, Asin, Asinh, Atan, Cos, Cosh, Sin, Sinh, Tan, Tanh.
        *   Binary GPU kernels: AddV2, Sub, Div, DivNoNan, Mul, MulNoNan, FloorDiv, Equal, NotEqual, Greater, GreaterEqual, LessEqual, Less.
    
    * `tf.lite`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        }
      }];
    }
    
    def TF_AcosOp : TF_Op<"Acos", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes acos of x element-wise.";
    
      let description = [{
    Provided an input tensor, the `tf.math.acos` operation returns the inverse cosine of each element of the tensor. If `y = tf.math.cos(x)` then, `x = tf.math.acos(y)`.
    
      Input range is `[-1, 1]` and the output has a range of `[0, pi]`.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      %0 = "tf.Abs"(%arg0) : (tensor<?xf32>) -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
    }
    
    // -----
    
    // CHECK-LABEL: @acos
    // CHLO-LABEL: @acos
    func.func @acos(%arg0: tensor<2xf32>) -> tensor<2xf32> {
      // CHECK:  chlo.acos %arg0 : tensor<2xf32>
    // CHLO:   %[[VAL_1:.*]] = mhlo.compare NE, {{.*}}
    // CHLO:   %[[VAL_3:.*]] = mhlo.constant dense<2.000000e+00>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    	ASWPLW:  2<<30 | 0x1c3<<21 | 0x20<<10,
    	ASWPLH:  1<<30 | 0x1c3<<21 | 0x20<<10,
    	ASWPLB:  0<<30 | 0x1c3<<21 | 0x20<<10,
    	ACASD:   3<<30 | 0x45<<21 | 0x1f<<10,
    	ACASW:   2<<30 | 0x45<<21 | 0x1f<<10,
    	ACASH:   1<<30 | 0x45<<21 | 0x1f<<10,
    	ACASB:   0<<30 | 0x45<<21 | 0x1f<<10,
    	ACASAD:  3<<30 | 0x47<<21 | 0x1f<<10,
    	ACASAW:  2<<30 | 0x47<<21 | 0x1f<<10,
    	ACASLD:  3<<30 | 0x45<<21 | 0x3f<<10,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top