Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for atanSC (0.36 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK:  return %[[RES0]] : tensor<1xi64>
    }
    
    func.func @atan2(%arg0: tensor<8xf32>, %arg1: tensor<8xf32>) -> tensor<8xf32> {
      %0 = "tf.Atan2"(%arg0, %arg1) : (tensor<8xf32>, tensor<8xf32>) -> tensor<8xf32>
      func.return %0 : tensor<8xf32>
    
    // CHECK-LABEL: atan2
    // CHECK: %[[RES0:.*]] = "tfl.atan2"(%arg0, %arg1) : (tensor<8xf32>, tensor<8xf32>) -> tensor<8xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      );
    
      let results = (outs TFL_TensorOf<[F32, I32]>:$output);
    }
    
    def TFL_Atan2Op: TFL_Op<"atan2", [
      Pure,
      SameOperandsAndResultShape,
      SameOperandsAndResultElementType]> {
    
      let summary = "Atan2 operation";
      let description = [{
        The "atan2" operation computes the arctangent of y/x element-wise,
        respecting signs of the arguments.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0#0 : tensor<? x i32>
    }
    
    // CHECK-LABEL: testAtan2
    func.func @testAtan2(%arg0: tensor<?xf32>, %arg1: tensor<?xf32>) -> tensor<?xf32> {
      // CHECK: "tfl.atan2"(%arg0, %arg1)
      %0 = "tfl.atan2"(%arg0, %arg1): (tensor<?xf32>, tensor<?xf32>) -> tensor<?xf32>
      func.return %0 : tensor<?xf32>
    }
    
    // -----
    
    // CHECK-LABEL: testConv2D
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(AcoshOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(AsinOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(AsinhOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(AtanOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(AtanhOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(BesselI0eOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(BesselI1eOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(CeilOp);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    of <code>F</code>.
    A method invocation is similar but the method itself
    is specified as a selector upon a value of the receiver type for
    the method.
    </p>
    
    <pre>
    math.Atan2(x, y)  // function call
    var pt *Point
    pt.Scale(3.5)     // method call with receiver pt
    </pre>
    
    <p>
    In a function call, the function value and arguments are evaluated in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top