Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for lhs0 (0.09 sec)

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

    // -----
    
    // CHECK-LABEL: @xladot_matmul(
    // CHECK-SAME:    %[[LHS:.*]]: tensor<64x32xi8>, %[[RHS:.*]]: tensor<32x16xi8>) -> tensor<64x16xi32>
    func.func @xladot_matmul(%lhs : tensor<64x32xi8>, %rhs : tensor<32x16xi8>) -> tensor<64x16xi32> {
      // CHECK: "mhlo.dot_general"(%[[LHS]], %[[RHS]]) <{
      // CHECK-SAME:  dot_dimension_numbers = #mhlo.dot<
      // CHECK-NOT:     lhs_batching_dimensions =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        Value lhs = op.getX();
        Value rhs = op.getY();
        auto lhs_type = mlir::dyn_cast<RankedTensorType>(lhs.getType());
        auto rhs_type = mlir::dyn_cast<RankedTensorType>(rhs.getType());
        if (!lhs_type || !rhs_type) return failure();
        if (mlir::isa<ComplexType>(lhs_type.getElementType()) && op.getAdjX()) {
          lhs = rewriter.create<TF::ConjOp>(op.getLoc(), lhs_type, lhs);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    			s.Fatalf("non-intrinsic AS2FUNC not expanded %v", call)
    		}
    		v := s.intrinsicCall(call)
    		v1 := s.newValue1(ssa.OpSelect0, n.Lhs[0].Type(), v)
    		v2 := s.newValue1(ssa.OpSelect1, n.Lhs[1].Type(), v)
    		s.assign(n.Lhs[0], v1, false, 0)
    		s.assign(n.Lhs[1], v2, false, 0)
    		return
    
    	case ir.ODCL:
    		n := n.(*ir.Decl)
    		if v := n.X; v.Esc() == ir.EscHeap {
    			s.newHeapaddr(v)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. doc/go_spec.html

    <p>
    Type inference solves type equations through <i>type unification</i>.
    Type unification recursively compares the LHS and RHS types of an
    equation, where either or both types may be or contain bound type parameters,
    and looks for type arguments for those type parameters such that the LHS
    and RHS match (become identical or assignment-compatible, depending on
    context).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        </magic>
        <!-- FESS added -->
        <glob pattern="*.lha"/>
        <glob pattern="*.lzh"/>
      </mime-type>
    
      <mime-type type="application/x-lharc">
        <magic priority="50">
          <match value="-lh0-" type="string" offset="2"/>
          <match value="-lh1-" type="string" offset="2"/>
          <match value="-lz4-" type="string" offset="2"/>
          <match value="-lz5-" type="string" offset="2"/>
        </magic>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  6. ChangeLog.md

    - [`KT-61454`](https://youtrack.jetbrains.com/issue/KT-61454) K1: False positive WRONG_NUMBER_OF_TYPE_ARGUMENTS when typealias is LHS of class literal
    - [`KT-60252`](https://youtrack.jetbrains.com/issue/KT-60252) K2: Supertype argument is not substituted in fake override receivers and value parameters
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top