Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 262 for 3xcomplex (1.66 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. test/const.go

    		"for int==interface{} compiler == runtime")
    	assert((interface{}(5) == 5) == in(five, five),
    		"for interface{}==int comipiler == runtime")
    }
    
    // Test that typed floating-point and complex arithmetic
    // is computed with correct precision.
    func truncate() {
    	const (
    		x30 = 1 << 30
    		x60 = 1 << 60
    
    		staticF32 = float32(x30) + 1 - x30
    		staticF64 = float64(x60) + 1 - x60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 26 23:54:29 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/structured_input.py

          'a': tf.TensorSpec([1], tf.float32),
          'b': tf.TensorSpec([2], tf.float32),
          'c': tf.TensorSpec([3], tf.float32),
      }])
      def f0004_dict_many_keys(self, d):
        return
    
      # Check a slightly more complex recursive structure.
      # Note that list elements can have heterogenous types.
      #
      # CHECK:      func {{@[a-zA-Z_0-9]+}}(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/VersionCatalogBuilder.java

        /**
         * Declare a library alias in full. This does not return a builder, as the declaration is fully complete.
         * Use {@link #library(String, String, String)} if you need a more complex version declaration.
         *
         * <p>
         * Note that declaring a classifier or extension using this method is not possible.
         * </p>
         *
         * @param alias the alias of the library
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/ClassPathToClassLoaderCache.java

    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * A cache which caches classloaders based on their classpath. This cache provides bridging with the classloader cleanup mechanism which makes it more complex than it should: - class loaders can be
     * reused, so they *must not* be cleared as long as a cached loader is in cache - once a classloader is discarded from the cache, it must be cleared using a cleanup strategy
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    	constant.Int:     UntypedInt,
    	constant.Float:   UntypedFloat,
    	constant.Complex: UntypedComplex,
    }
    
    // DefaultKinds maps from a constant.Kind to its default Kind.
    var DefaultKinds = [...]Kind{
    	constant.Bool:    TBOOL,
    	constant.String:  TSTRING,
    	constant.Int:     TINT,
    	constant.Float:   TFLOAT64,
    	constant.Complex: TCOMPLEX128,
    }
    
    // A Type represents a Go type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top