Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for exp5 (0.08 sec)

  1. pkg/apis/core/validation/validation_test.go

    	}
    
    	cases := map[string]struct {
    		mounts      []core.VolumeMount
    		expectError bool
    	}{
    		"subpath expr not specified": {
    			[]core.VolumeMount{{
    				Name:      "abc-123",
    				MountPath: "/bab",
    			}},
    			false,
    		},
    		"subpath expr specified": {
    			[]core.VolumeMount{{
    				Name:        "abc-123",
    				MountPath:   "/bab",
    				SubPathExpr: "$(POD_NAME)",
    			}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    By default, this op performs an inclusive cumulative log-sum-exp,
    which means that the first
    element of the input is identical to the first element of the output:
    ```python
    tf.math.cumulative_logsumexp([a, b, c])  # => [a, log(exp(a) + exp(b)), log(exp(a) + exp(b) + exp(c))]
    ```
    
    By setting the `exclusive` kwarg to `True`, an exclusive cumulative log-sum-exp is
    performed instead:
    ```python
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. RELEASE.md

            tf.math.invert_permutation.
        *   Add `tf.math.sobol_sample` op.
        *   Add `tf.math.xlog1py`.
        *   Add `tf.math.special.{dawsn,expi,fresnel_cos,fresnel_sin,spence}`.
        *   Add a Modified Discrete Cosine Transform (MDCT) and its inverse to
            `tf.signal`.
    *   TPU Enhancements:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top