Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for MUL (0.04 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    class OperandsSameElementTypeConstraintBase<string op> :
      PredOpTrait<op # " operands have same element type",
        OperandsSameElementTypeConstraintBasePred>;
    
    // This is a constraint for most of the binary ops, e.g., add, mul, div, etc.
    // Binary ops lhs & rhs should have the same value type, and is capable to
    // compare quantization types as well.
    def BinaryOpSameElementTypeConstraint :
      OperandsSameElementTypeConstraintBase<"binary op">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let arguments = (ins
        TF_FpOrI32OrI64Tensor:$input,
    
        I64Attr:$group_size,
        I64Attr:$group_key,
        I64Attr:$instance_key,
        TF_AnyStrAttrOf<["Min", "Max", "Mul", "Add"]>:$merge_op,
        TF_AnyStrAttrOf<["Id", "Div"]>:$final_op,
        I64ArrayAttr:$subdiv_offsets,
        DefaultValuedOptionalAttr<I64ArrayAttr, "{}">:$wait_for,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. RELEASE.md

        *   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`
        * Add experimental supports conversion of models that may be larger than 2GB before buffer deduplication
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"test5", "LoadBalancer", "10.9.8.7", "3.4.5.6,80.11.12.10", "8888/tcp", "<unknown>"}}},
    		},
    		{
    			// Test LoadBalancer service with mul ExternalIPs
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "test6"},
    				Spec: api.ServiceSpec{
    					Type: api.ServiceTypeLoadBalancer,
    					Ports: []api.ServicePort{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        StringRef reduce_op = op.getReduceOp();
        if (reduce_op == "Add") {
          BuildReduceBody<AddOp>(element_type, &reduce_scatter.getComputation(),
                                 &rewriter);
        } else if (reduce_op == "Mul") {
          BuildReduceBody<MulOp>(element_type, &reduce_scatter.getComputation(),
                                 &rewriter);
        } else if (reduce_op == "Min") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top