Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DivOp (0.03 sec)

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

            /*padding=*/input_padding_attr);
        BuildReduceBody<AddOp>(element_type, &divisor.getBody(), &rewriter);
    
        // Divide `pooled` by window counts.
        result = rewriter.create<mhlo::DivOp>(loc, pooled_type, pooled,
                                              divisor.getResult(0));
      }
      return result;
    }
    
    Value GetAvgPoolInput(TF::AvgPoolOp op) { return op.getValue(); }
    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

    			// Double-rounding might be an issue.
    			// Note that the pre-SSA implementation does the entire calculation
    			// in wide format, so wide is compatible.
    			xreal = s.newValueOrSfCall2(divop, wt, xreal, denom)
    			ximag = s.newValueOrSfCall2(divop, wt, ximag, denom)
    
    			if pt != wt { // Narrow to store back
    				xreal = s.newValueOrSfCall1(ssa.OpCvt64Fto32F, pt, xreal)
    				ximag = s.newValueOrSfCall1(ssa.OpCvt64Fto32F, pt, ximag)
    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