Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 103 for result_types (0.42 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

            Value result = enumerated_result.value();
            Type result_type = result.getType();
            // Add this to the test coverage once we create test ops with none type
            // results.
            if (mlir::isa<NoneType>(result_type)) {
              outputs_replaced.insert({result, enumerated_result.index()});
              output_types.push_back(result_type);
              continue;
            }
            Type result_ele_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

        Type result_type;
    
        // Include info about the activation function if applicable.
        if (fuse_activation) {
          locations.push_back(activation->getLoc());
          fused_ops.push_back(
              StringAttr::get(context, activation->getName().stripDialect()));
          result_type = activation->getResultTypes().front();
        } else {
          result_type = bias_add.getResult().getType();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestOperationMapper.java

            } else {
                return testDescriptor;
            }
        }
    
        private static AbstractTestResult adapt(TestResult result) {
            TestResult.ResultType resultType = result.getResultType();
            switch (resultType) {
                case SUCCESS:
                    return new DefaultTestSuccessResult(result.getStartTime(), result.getEndTime());
                case SKIPPED:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	//
    	// Requires establishes a "horizontal" dependency between
    	// analysis passes (different analyzers, same package).
    	Requires []*Analyzer
    
    	// ResultType is the type of the optional result of the Run function.
    	ResultType reflect.Type
    
    	// FactTypes indicates that this analyzer imports and exports
    	// Facts of the specified concrete types.
    	// An analyzer that uses facts may assume that its import
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestResult.java

     */
    public interface TestResult {
        /**
         * The final status of a test.
         */
        public enum ResultType {
            SUCCESS, FAILURE, SKIPPED
        }
    
        /**
         * Returns the type of result.  Generally one wants it to be SUCCESS!
         *
         * @return The result type.
         */
        ResultType getResultType();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/fuse_convolution_pass.cc

                               .getDefiningOp<mhlo::ConstantOp>();
        if (multiplier == nullptr) {
          return failure();
        }
    
        auto result_type = OpTrait::util::getBroadcastedType(filter.getType(),
                                                             multiplier.getType());
        if (!result_type) {
          return rewriter.notifyMatchFailure(mul_op, [&](::mlir::Diagnostic &diag) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 22:21:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

            Value result = enumerated_result.value();
            Type result_type = result.getType();
            if (result_type.isa<NoneType>()) {
              outputs_replaced.insert({result, enumerated_result.index()});
              output_types.push_back(result_type);
              continue;
            }
            auto result_tensor_type = result_type.cast<TensorType>();
            // If the user is the Quantize op, it must be the only user.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. tests/query_test.go

    					dbName := DB.NamingStrategy.ColumnName("", name)
    					resultType := reflect.ValueOf(first[dbName]).Type().Name()
    
    					switch name {
    					case "Name":
    						if !strings.Contains(resultType, "string") {
    							t.Errorf("invalid data type for %v, got %v %#v", dbName, resultType, first[dbName])
    						}
    					case "Age":
    						if !strings.Contains(resultType, "int") {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_annotate_dynamic_shape_inputs.cc

          shape[0] = ShapedType::kDynamic;
          auto extensions =
              mhlo::TypeExtensionsAttr::get(func->getContext(), bounds);
          auto resultType =
              RankedTensorType::get(shape, inputType.getElementType(), extensions);
          arg.setType(resultType);
        }
        llvm::SmallVector<Type, 8> arg_types;
        for (auto arg : func.getArguments()) arg_types.push_back(arg.getType());
        func.setType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

      // a TF op with result type tensor<*xf32> will have a bounded type after
      // fallback legalization.
      auto cast_value = [&](OpBuilder& builder, Type result_type, ValueRange inputs,
                            Location loc) -> Value {
        return builder.create<mlir::tensor::CastOp>(loc, result_type,
                                                    inputs.front());
      };
      addSourceMaterialization(cast_value);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top