Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for sdiv (1.17 sec)

  1. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    // Fusing-LABEL: FusingdivRelu
    // Fusing:  %[[div:[0-9].*]] = tfl.div %arg0, %arg1 {fused_activation_function = "NONE"} : tensor<1xf32>
    // Fusing:  %[[div1:[0-9].*]] = tfl.div %arg0, %[[div]] {fused_activation_function = "RELU"} : tensor<1xf32>
    // Fusing:  %[[relu:[0-9].*]] = "tfl.relu"(%arg0) : (tensor<1xf32>) -> tensor<1xf32>
    // Fusing:  %[[div2:[0-9].*]] = tfl.div %[[relu]], %[[div1]] {fused_activation_function = "RELU6"} : tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    func ByteCount(b int) string {
    	const unit = 1000
    	if b < unit {
    		return fmt.Sprintf("%dB", b)
    	}
    	div, exp := int64(unit), 0
    	for n := b / unit; n >= unit; n /= unit {
    		div *= unit
    		exp++
    	}
    	return fmt.Sprintf("%.1f%cB",
    		float64(b)/float64(div), "kMGTPE"[exp])
    }
    
    // IPv6Compliant encloses ipv6 addresses in square brackets followed by port number in Host header/URIs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	if diffTotal > 0 {
    		total = diffTotal
    		div = diffDiv
    	}
    	if div != 0 {
    		return total / div
    	}
    	return total
    }
    
    // Report contains the data and associated routines to extract a
    // report from a profile.
    type Report struct {
    	prof        *profile.Profile
    	total       int64
    	options     *Options
    	formatValue func(int64) string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

    :{"language":"plaintext","showLineNumbers":false,"showMiniMap":false},"content":"<div>\n  <div style=\"position: absolute; bottom: 0\">\n    <a href=\"https://istio.io\" target=\"_blank\" style=\"font-size: 30px; text-decoration: none; color: inherit\"><img src=\"https://raw.githubusercontent.com/cncf/artwork/master/projects/istio/icon/color/istio-icon-color.svg\" style=\"height: 50px\"> Istio</a>\n  </div>\n  <div style=\"position: absolute; bottom: 0; right: 0; font-size: 15px\">\n    Istio is...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/asm.go

    	case AMULHV:
    		return 0x3c << 15 // mulh.d
    	case AMULHVU:
    		return 0x3d << 15 // mulhu.d
    	case ADIV:
    		return 0x40 << 15 // div.w
    	case ADIVU:
    		return 0x42 << 15 // div.wu
    	case ADIVV:
    		return 0x44 << 15 // div.d
    	case ADIVVU:
    		return 0x46 << 15 // div.du
    	case AREM:
    		return 0x41 << 15 // mod.w
    	case AREMU:
    		return 0x43 << 15 // mod.wu
    	case AREMV:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    .conum:not([data-value]):empty {
    	display: none;
    }
    
    dt,
    th.tableblock,
    td.content,
    div.footnote {
    	text-rendering: optimizeLegibility;
    }
    
    h1,
    h2,
    p,
    td.content,
    span.alt {
    	letter-spacing: -0.01em;
    }
    
    p strong,
    td.content strong,
    div.footnote strong {
    	letter-spacing: -0.005em;
    }
    
    p,
    blockquote,
    dt,
    td.content,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

      // CHECK: [[c:%.*]] = tf_mlrt.await [[futures]]#1
      %c = "tf_mlrt.tf_await"(%future_c) : (!mlrt.future) ->tensor<i32>
      // CHECK: [[f:%.*]] = tf_mlrt.executeop([[e]], [[c]])
      // CHECK-SAME: Div
      %f = "tf.Div"(%e, %c) {__op_key = 8: i32}: (tensor<i32>, tensor<i32>) -> tensor<i32>
    
      // CHECK: [[b:%.*]] = tf_mlrt.await [[futures]]#0
      %b = "tf_mlrt.tf_await"(%future_b) : (!mlrt.future) ->tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

    import org.jetbrains.kotlin.resolve.constants.evaluate.evalUnaryOp
    import org.jetbrains.kotlin.types.ConstantValueKind
    
    /**
     * An evaluator that transform numeric operation, such as div, into compile-time constant iff involved operands, such as explicit receiver
     * and the argument, are compile-time constant as well.
     */
    internal object FirCompileTimeConstantEvaluator {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	for _, sample := range rpt.prof.Sample {
    		value := rpt.options.SampleValue(sample.Value)
    		if rpt.options.SampleMeanDivisor != nil {
    			div := rpt.options.SampleMeanDivisor(sample.Value)
    			if div != 0 {
    				value /= div
    			}
    		}
    
    		// Find call-sites matching sym.
    		for i := len(sample.Location) - 1; i >= 0; i-- {
    			loc := sample.Location[i]
    			for _, line := range loc.Line {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. src/math/big/int_test.go

    		}
    		if q2.Cmp(q) != 0 || r2.Cmp(r) != 0 {
    			t.Errorf("#%d QuoRem: got (%s, %s), want (%s, %s)", i, q2, r2, q, r)
    		}
    
    		d1 := new(Int).Div(x, y)
    		m1 := new(Int).Mod(x, y)
    		if !isNormalized(d1) {
    			t.Errorf("#%d Div: %v is not normalized", i, *d1)
    		}
    		if !isNormalized(m1) {
    			t.Errorf("#%d Mod: %v is not normalized", i, *m1)
    		}
    		if d1.Cmp(d) != 0 || m1.Cmp(m) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
Back to top