Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 221 for 3xcomplex (0.37 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

      }
    
      // CHECK-LABEL: mirror_pad
      func.func @mirror_pad(%arg0: tensor<2x3xcomplex<f64>>) -> tensor<4x7xcomplex<f64>> {
        %0 = mhlo.constant dense<[[1, 1], [2, 2]]> : tensor<2x2xi32>
        // CHECK-NOT: tf.MirrorPad
        %1 = "tf.MirrorPad"(%arg0, %0) {mode = "SYMMETRIC"} : (tensor<2x3xcomplex<f64>>, tensor<2x2xi32>) -> tensor<4x7xcomplex<f64>>
        func.return %1 : tensor<4x7xcomplex<f64>>
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
  2. tensorflow/cc/gradients/math_grad.cc

      auto re = Real(scope, op.input(0));
      auto im = Imag(scope, op.input(0));
      auto z_inv = Reciprocal(scope, Complex(scope, im, re));
      auto zero = Cast(scope, Const(scope, 0), grad_inputs[0].type());
      auto grad = Complex(scope, grad_inputs[0], zero);
      auto dx = Neg(scope, Mul(scope, grad, z_inv));
      grad_outputs->push_back(dx);
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Angle", AngleGrad);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/testprog/cpu-profile.go

    			// impossible or has failed", using particular placeholder functions
    			// to represent common failure cases. Look for those functions in
    			// the leaf position as a sign that the call stack and its
    			// symbolization are more complex than this test can handle.
    			//
    			// TODO: Make the symbolization done by the execution tracer and CPU
    			// profiler match up even in these harder cases. See #53378.
    			switch leaf {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    *Binary Plugins* are full-fledged plugins written in Java, Groovy, or Kotlin, compiled into JAR files, and published to a repository.
    They offer the best performance, maintainability, and reusability.
    They are suitable for complex build logic that needs to be shared across projects, builds, and teams.
    You can also write them in Scala or Groovy but that is not recommended.
    
    Here is a breakdown of all options for implementing Gradle plugins:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_tensor.h

      Status AllocateShapedBuffer(DataType dtype, const xla::Shape& on_device_shape,
                                  xla::LocalClient* client, int device_ordinal);
    
      // Some Tensors can have complex on-device shapes, including tuple shapes. To
      // manage the memory for these tensors a ShapedBuffer may be required.
    
      // Return true if this XlaTensor contains a ShapedBuffer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

        MATCH(DT_BFLOAT16, half);
        MATCH(DT_STRING, string);
    
        // TODO(b/188995810): DenseElementsAttr::get doesn't support complex
        // Attributes being passed, so we bail out for now. This should just be
        //   MATCH(DT_COMPLEX64, scomplex) / 2;
        //   MATCH(DT_COMPLEX128, dcomplex) / 2;
        // when DenseElementsAttr is updated.
        case DT_COMPLEX64:
        case DT_COMPLEX128:
        default:
          return -1;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputs.java

         * against the property value for later invocations of the task, to determine if the task is up-to-date.</p>
         *
         * <p>The given value must be a simple value, like a String or Integer, or serializable. For complex values,
         *  Gradle compares the serialized forms for detecting changes and the {@code equals()} method is ignored.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 16:09:35 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/analyzer/DefaultClassDependenciesAnalyzerTest.groovy

            then:
            analysis.accessibleClassDependencies == [SomeClass.name] as Set
            analysis.privateClassDependencies == [YetAnotherClass.name] as Set
        }
    
        def "knows dependencies of a java class complex"() {
            when:
            def analysis = analyze(SomeClass)
    
            then:
            analysis.accessibleClassDependencies == [AccessedFromPackagePrivateField.name] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/dataclasses.md

        FastAPI will use the `response_model` parameter (that includes dataclasses) to convert the response.
    
    You can combine `dataclasses` with other type annotations in many different combinations to form complex data structures.
    
    Check the in-code annotation tips above to see more specific details.
    
    ## Learn More
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    keyword:/\b(?:break|case|chan|const|continue|default|defer|else|fallthrough|for|func|go(?:to)?|if|import|interface|map|package|range|return|select|struct|switch|type|var)\b/,builtin:/\b(?:bool|byte|complex(?:64|128)|error|float(?:32|64)|rune|string|u?int(?:8|16|32|64)?|uintptr|append|cap|close|complex|copy|delete|imag|len|make|new|panic|print(?:ln)?|real|recover)\b/,boolean:/\b(?:_|iota|nil|true|false)\b/,operator:/[*\/%^!=]=?|\+[=+]?|-[=-]?|\|[=|]?|&(?:=|&|\^=?)?|>(?:>=?|=)?|<(?:<=?|=|-)?|:=|\....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top