Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for Shift4 (0.14 sec)

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

    // Roll op legalizations.
    //===----------------------------------------------------------------------===//
    
    // -----
    
    // CHECK-LABEL: func @Roll_0D
    func.func @Roll_0D(%arg0: tensor<512xi32>, %shift: tensor<i32>) -> tensor<512xi32> {
      %axis = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> (tensor<i32>)
      //      CHECK-DAG: %[[ZERO:.*]] = mhlo.constant dense<0> : tensor<i32>
    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. src/cmd/compile/internal/ssagen/ssa.go

    	etype1 := s.concreteEtype(t)
    	etype2 := s.concreteEtype(u)
    	x, ok := shiftOpToSSA[opAndTwoTypes{op, etype1, etype2}]
    	if !ok {
    		s.Fatalf("unhandled shift op %v etype=%s/%s", op, etype1, etype2)
    	}
    	return x
    }
    
    func (s *state) uintptrConstant(v uint64) *ssa.Value {
    	if s.config.PtrSize == 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top