Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for semop (0.76 sec)

  1. src/cmd/pack/pack.go

    // op holds the operation we are doing (prtx).
    // verbose tells whether the 'v' option was specified.
    var (
    	op      rune
    	verbose bool
    )
    
    // setOp parses the operation string (first argument).
    func setOp(arg string) {
    	// Recognize 'go tool pack grc' because that was the
    	// formerly canonical way to build a new archive
    	// from a set of input files. Accepting it keeps old
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        Value offset = op.getShift();
        auto axis_size = b.create<mhlo::ConstantOp>(b.getIntegerAttr(
            getElementTypeOrSelf(offset.getType()), input_shape[axis]));
        offset = b.create<RemOp>(
            b.create<AddOp>(b.create<RemOp>(offset, axis_size), axis_size),
            axis_size);
    
        // Stack two copies of the dimension, then slice from the calculated
        // offset. This also works if shift is not constant.
    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