Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for isScala3 (0.22 sec)

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/scaladoc/ScalaDocIntegrationTest.groovy

            // Occasionally there can be no other version of scala supported by this JDK
            Assume.assumeNotNull(otherVersion)
            return otherVersion
        }
    
        def getDocsPath() {
            return classes.isScala3() ? "build/docs/scaladoc/_empty_" : "build/docs/scaladoc"
        }
    
        def setup() {
            classes.scalaVersion = version.toString()
        }
    
        def "scaladoc produces output"() {
            classes.baseline()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            def scalaLibs = [
                'scala3-compiler_3-3.0.1.', 'scala3-sbt-bridge-3.0.1.', 'scala3-interfaces-3.0.1.', 'tasty-core_3-3.0.1.',
                'scala3-library_3-3.0.1.', 'scala-asm-9.1.0-scala-1', 'compiler-interface-1.3.5', 'jline-reader-3.19.0.',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/BasicZincScalaCompilerIntegrationTest.groovy

            }
        }
    
        def useCompilerPluginIfDefined() {
            // https://docs.scala-lang.org/scala3/guides/migration/plugin-kind-projector.html
            Assume.assumeTrue(
                VersionNumber.parse("2.12.14") <= versionNumber && versionNumber < VersionNumber.parse("2.13.0") ||
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    	return t.IsInterface() && len(t.AllMethods()) == 0
    }
    
    // IsScalar reports whether 't' is a scalar Go type, e.g.
    // bool/int/float/complex. Note that struct and array types consisting
    // of a single scalar element are not considered scalar, likewise
    // pointer types are also not considered scalar.
    func (t *Type) IsScalar() bool {
    	switch t.kind {
    	case TBOOL, TINT8, TUINT8, TINT16, TUINT16, TINT32,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        if (mlir::isa<quant::UniformQuantizedPerAxisType>(element_type)) {
          return false;
        }
        if (IsScalar(value)) {
          return false;
        }
        return elements_attr->isSplat();
      }
    
      // If this type is a scalar shaped type.
      bool IsScalar(mlir::Value value) const {
        auto type = mlir::dyn_cast<ShapedType>(value.getType());
        if (!type) {
          return false;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        tensorflow::Tensor tensor;
        if (!tensorflow::ConvertToTensor(proto_attr, &tensor).ok())
          return failure();
        if (tensor.dtype() != tensorflow::DT_VARIANT) return failure();
        if (!tensorflow::TensorShapeUtils::IsScalar(tensor.shape()))
          return failure();
    
        const tensorflow::TensorList *list =
            tensor.scalar<tensorflow::Variant>()().get<tensorflow::TensorList>();
        if (!list) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      if (!const_input) {
        return false;
      }
    
      const TensorProto* proto = nullptr;
      if (!TryGetNodeAttr(const_input->def(), "value", &proto)) {
        return false;
      }
    
      return TensorShapeUtils::IsScalar(proto->tensor_shape());
    }
    
    Status MarkForCompilationPassImpl::RunEdgeContractionLoop() {
      TF_RET_CHECK(initialized_ && !edges_contracted_ && !clusters_created_);
      edges_contracted_ = true;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. RELEASE.md

        `TensorShapeUtils` since TensorFlow is scalar strict within Google (for
        example, the shape argument to `tf.reshape` can't be a scalar anymore). The
        open source release was already scalar strict, so outside Google `IsScalar`
        and `IsVector` are exact replacements.
    *   The following files are being removed from `tensorflow/core/public/`:
        *   `env.h` -> `../platform/env.h`
        *   `status.h` -> `../lib/core/status.h`
    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