Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for powx (0.1 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/signatureSubstitution/AbstractAnalysisApiSignatureContractsTest.kt

    import org.jetbrains.kotlin.psi.KtFile
    import org.jetbrains.kotlin.psi.psiUtil.collectDescendantsOfType
    import org.jetbrains.kotlin.test.services.TestServices
    import org.jetbrains.kotlin.test.services.assertions
    import kotlin.math.pow
    
    abstract class AbstractAnalysisApiSignatureContractsTest : AbstractAnalysisApiBasedTest() {
        override fun doTestByMainFile(mainFile: KtFile, mainModule: KtTestModule, testServices: TestServices) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // CHECK:  return
    }
    
    func.func @pow(%arg0: tensor<2x1x3xf32>, %arg1: tensor<2x1x1xf32>) -> tensor<2x1x3xf32> {
      %0 = "tf.Pow"(%arg0, %arg1) : (tensor<2x1x3xf32>, tensor<2x1x1xf32>) -> tensor<2x1x3xf32>
      func.return %0 : tensor<2x1x3xf32>
    
      // CHECK-LABEL: pow
      // CHECK:  %[[pow:.*]] = tfl.pow(%arg0, %arg1) : (tensor<2x1x3xf32>, tensor<2x1x1xf32>) -> tensor<2x1x3xf32>
      // CHECK:  return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // a value of 16 limits the returned string to 65,536 characters.
    // The value must be between 1 and 30.
    func MaxLength(pow int) Option {
    	if pow <= 0 || pow > 30 {
    		panic("demangle: invalid MaxLength value")
    	}
    	return Option(pow << maxLengthShift)
    }
    
    // isMaxLength reports whether an Option holds a maximum length.
    func isMaxLength(opt Option) bool {
    	return opt&maxLengthMask != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

    {
      param(
        [parameter(Mandatory = $true, Position = 0)]
        [Uint32] $IPAddress
      )
    
      $dotted_ip = $(for ($i = 3; $i -gt -1; $i--) {
        $remainder = $IPAddress % [Math]::Pow(256, $i)
        ($IPAddress - $remainder) / [Math]::Pow(256, $i)
        $IPAddress = $remainder
      })
      return [String]::Join(".", $dotted_ip)
    }
    
    # TODO(pjh): this is copied from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    // and then does an indirect call to that value.
    //
    // Here is what a direct reference might look like:
    //
    //	     137: e9 20 06 00 00               	jmp	0x75c <pow+0x75c>
    //	     13c: e8 00 00 00 00               	callq	0x141 <pow+0x141>
    //			000000000000013d:  IMAGE_REL_AMD64_REL32	_errno
    //
    // The assembly below dispenses with the import symbol and just makes
    // a direct call to _errno.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  6. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    // CHECK-LABEL: testPow
    func.func @testPow(tensor<? x i32>, tensor<? x i32>) -> tensor<? x i32> {
    ^bb0(%arg0: tensor<? x i32>, %arg1: tensor<? x i32>):
      // CHECK: tfl.pow %arg0, %arg1
      %0 = tfl.pow %arg0, %arg1 : tensor<? x i32>
      func.return %0#0 : tensor<? x i32>
    }
    
    // CHECK-LABEL: testAtan2
    func.func @testAtan2(%arg0: tensor<?xf32>, %arg1: tensor<?xf32>) -> tensor<?xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let results = (outs Variadic<AnyTensor>:$output);
    
      let regions = (region VariadicRegion<SizedRegion<1>>:$calls);
    
      let hasCanonicalizer = 1;
    }
    
    
    def TFL_PowOp : TFL_Op<"pow", [
        ResultsBroadcastableShape,
        Pure,
        TFL_OperandsHaveSameShapesOrBroadcastableShape<[0, 1], 4>]> {
      let summary = "Power operator";
    
      let description = [{
        Element-wise power operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        TF_IntTensor:$x
      );
    
      let results = (outs
        TF_Uint8Tensor:$y
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    def TF_PowOp : TF_Op<"Pow", [Pure, ResultsBroadcastableShape, TF_SameOperandsAndResultElementTypeResolveRef]>,
                   WithBroadcastableBinOpBuilder {
      let summary = "Computes the power of one value to another.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. RELEASE.md

        *   gRPC: Propagate truncated errors (instead of returning gRPC internal
            error).
        *   Augment `parallel_interleave` to support 2 kinds of prefetching.
        *   Improved XLA support for C64-related ops log, pow, atan2, tanh.
        *   Add probabilistic convolutional layers.
    
    ## API Changes
    
    *   Introducing `prepare_variance` boolean with default setting to False for
        backward compatibility.
    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