Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for udivisible (0.14 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

     => (Leq8U
    			(RotateLeft8 <typ.UInt8>
    				(Add8 <typ.UInt8>
    					(Mul8 <typ.UInt8>
    						(Const8 <typ.UInt8> [int8(sdivisible8(c).m)])
    						x)
    					(Const8 <typ.UInt8> [int8(sdivisible8(c).a)])
    				)
    				(Const8 <typ.UInt8> [int8(8-sdivisible8(c).k)])
    			)
    			(Const8 <typ.UInt8> [int8(sdivisible8(c).max)])
    		)
    
    (Eq16 x (Mul16 (Const16 [c])
      (Sub16
        (Rsh32x64
          mul:(Mul32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                                << kernel_output_features << ") to be divisible by "
                                << "feature_group_count (value "
                                << feature_group_count_val << ").\n";
      }
      if (input_batch % batch_group_count != 0) {
        return op.emitOpError()
               << "Expected input batch dimension (value " << input_batch
               << " ) to be divisible by batch_group_count (value "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      if (op.getNumResults() == 0) return failure();
    
      if (input_dim_size % op.getNumResults() != 0)
        return op.emitOpError("dimension #")
               << *dim_index << " not divisible by the number of result tensors";
    
      return success();
    }
    
    //===----------------------------------------------------------------------===//
    // SplitVOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top