Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setLoc (0.09 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto range = rewriter.create<mhlo::SubtractOp>(op.getLoc(), limit, start);
        auto abs = rewriter.create<mhlo::AbsOp>(op.getLoc(), range);
    
        // Delta is not necessarily the same type as start and limit.
        auto abs_cast =
            rewriter.create<mhlo::ConvertOp>(op.getLoc(), compute_type, abs);
        auto delta_cast =
            rewriter.create<mhlo::ConvertOp>(op.getLoc(), compute_type, delta);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		p.Pos = p.Pos.WithNotStmt()
    	}
    	return p
    }
    
    // Pc returns the current Prog.
    func (s *State) Pc() *obj.Prog {
    	return s.pp.Next
    }
    
    // SetPos sets the current source position.
    func (s *State) SetPos(pos src.XPos) {
    	s.pp.Pos = pos
    }
    
    // Br emits a single branch instruction and returns the instruction.
    // Not all architectures need the returned instruction, but otherwise
    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