Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,248 for ucast (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_xla.mlir

    // CHECK: %[[quant:.*]] = "tf.Cast"(%[[round]]) : (tensor<1x3x4x3xf32>) -> tensor<1x3x4x3xi8>
    // CHECK: %[[pad:.*]] = "tf.PadV2"(%[[quant]]
    // CHECK: %[[xlaconv:.*]] = "tf.XlaConvV2"(%[[pad]]
    // CHECK: %[[sub:.*]] = "tf.Sub"(%[[xlaconv]]
    // CHECK: %[[cast:.*]] = "tf.Cast"(%[[sub]]) <{Truncate = false}> : (tensor<1x3x2x2xi32>) -> tensor<1x3x2x2xf32>
    // CHECK: %[[dequant1:.*]] = "tf.Mul"(%[[cast]]
    // CHECK: %[[relu:.*]] = "tf.Relu"(%[[dequant1]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

            if( RO == null || RO.length() == 0 ) {
    
                /* No resolveOrder has been specified, use the
                 * default which is LMHOSTS,DNS,WINS,BCAST
                 * LMHOSTS,BCAST,DNS if jcifs.smb1.netbios.wins has not
                 * been specified.
                 */
    
                if( NbtAddress.getWINSAddress() == null ) {
                    resolveOrder = new int[2];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

                details == 'redundant cast to java.lang.String'
                solutions.empty
                verifyAll(getSingleLocation(ReceivedProblem.ReceivedFileLocation)) {
                    it.path == fooFileLocation.absolutePath
                }
                additionalData.asMap ["formatted"] == """\
    $fooFileLocation:5: warning: [cast] redundant cast to $expectedType
            String s = (String)"Hello World";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_quantization_unit_loc.cc

          new_unit.set_node_name(name_loc_id.str());
        }
      };
    
      ArrayRef<Location> locations = mlir::cast<FusedLoc>(loc).getLocations();
      if (IsImportLocPattern(mlir::cast<FusedLoc>(loc))) {
        QuantizationUnit new_unit;
        // Op type is a NameLoc with the ":" suffix.
        StringRef op_type_with_suffix =
            mlir::cast<NameLoc>(locations.front()).getName().strref();
        StringRef op_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IsolatedEnumValueSnapshot.java

        }
    
        @Nullable
        @Override
        public <S> S coerce(Class<S> type) {
            if (type.isInstance(value)) {
                return type.cast(value);
            }
            if (type.isEnum() && type.getName().equals(value.getDeclaringClass().getName())) {
                return type.cast(Enum.valueOf(Cast.uncheckedNonnullCast(type.asSubclass(Enum.class)), value.name()));
            }
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:43 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        if (!mlir::cast<ShapedType>(lhs.getType()).hasStaticShape() ||
            !mlir::cast<ShapedType>(rhs.getType()).hasStaticShape() ||
            !mlir::cast<ShapedType>(cond.getType()).hasStaticShape()) {
          return rewriteOpWithDynamicInput(op, rewriter);
        }
    
        auto lhs_shape = mlir::cast<ShapedType>(lhs.getType()).getShape();
        auto rhs_shape = mlir::cast<ShapedType>(rhs.getType()).getShape();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

      for (int i : llvm::seq<int>(1, num_dims - 1)) {
        Value input_size_i = GetDimValue(builder, loc, input_shape_value, i);
        const int stride_i = mlir::cast<IntegerAttr>(strides[i]).getInt();
        const int dilation_i = mlir::cast<IntegerAttr>(dilations[i]).getInt();
        const int filter_i = filter_shape.getDimSize(i - 1);
        Value pad_i_low, pad_i_high;
        GetSamePaddingValues(builder, loc, input_size_i, filter_i, dilation_i,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ImmutableActionSet.java

                return this;
            }
            if (action instanceof SingletonSet) {
                SingletonSet<T> singletonSet = Cast.uncheckedNonnullCast(action);
                return addOne(singletonSet.singleAction);
            }
            if (action instanceof SetWithFewActions) {
                SetWithFewActions<T> compositeSet = Cast.uncheckedNonnullCast(action);
                return addAll(compositeSet);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/tests/module_test.cc

      TF_ASSERT_OK_AND_ASSIGN(tf::libtf::Dictionary node,
                              Cast<tf::libtf::Dictionary>(objects.front()));
    
      // The next three nodes of data-structure-model are lists.
      for (unsigned int i = 1; i < 4; i++) {
        TF_ASSERT_OK_AND_ASSIGN(tf::libtf::List node,
                                Cast<tf::libtf::List>(objects.at(i)));
      }
      // The last three nodes of data-structure-model are dictionaries.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/DescribingAndSpec.java

    import groovy.lang.Closure;
    import org.gradle.api.specs.AndSpec;
    import org.gradle.api.specs.CompositeSpec;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.internal.ClosureSpec;
    import org.gradle.internal.Cast;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@link CompositeSpec} that requires all component specs to provide a description.
     * The aggregation is based on an {@link AndSpec}.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 28 22:10:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top