Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for resultType (0.2 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // Note that we are using the same `result_type` for both the
        // `TensorListStackOp` and `ConcatOp`, since the first dimension of the
        // shape specified by `result_type` is -1.
        auto stacked_extended_part = rewriter->create<TF::TensorListStackOp>(
            loc, result_type, extended_part,
            /*element_shape=*/CreateI32SplatConst(loc, rewriter, {}, -1),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

          TensorType result_type = mlir::dyn_cast<TensorType>(result.getType());
          if (!result_type) {
            result_types.push_back(result.getType());
            continue;
          }
          QuantizedType qtype =
              mlir::dyn_cast<QuantizedType>(result_type.getElementType());
          if (!qtype) {
            result_types.push_back(result_type);
            continue;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

                                PatternRewriter &rewriter, Location loc,
                                Type result_type, Value input, Value filter,
                                Value bias) const {
        filter = legalizeFilter(rewriter, loc, filter);
        return rewriter.create<TFL::Conv2DOp>(
            loc, result_type, input, filter, bias,
            /*dilation_h_factor=*/state->dilation_height_factor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // Sometimes the result type is more specific than what the reshape builder
        // can infer.
        auto result_type = op.getResult().getType();
        rewriter.replaceOpWithNewOp<ReshapeOp>(op, result_type, permuted,
                                               output_shape);
    
        return success();
      }
    };
    
    class LowerBatchToSpaceND : public RewritePattern {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

                output_scale_value, output_zero_point_value);
    
        auto new_dot_general_op = rewriter.create<stablehlo::DotGeneralOp>(
            op.getLoc(), /*resultType0=*/
            mlir::cast<TensorType>(op.getResult().getType())
                .clone(output_uniform_quantized_type),
            /*lhs=*/op.getLhs(), /*rhs=*/op.getRhs(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    mlir::TF::_XlaCompileMlirPlaceholderProgramKeyOp
    CreateCompilationKeyPlaceholder(Location loc, OpBuilder& builder) {
      auto result_type =
          RankedTensorType::get({3}, builder.getType<mlir::TF::StringType>());
      return builder.create<mlir::TF::_XlaCompileMlirPlaceholderProgramKeyOp>(
          loc, /*program=*/result_type, llvm::ArrayRef<Value>{});
    }
    
    // Creates a `tf_device.launch` to wrap cluster ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    class TestEventListenersAccessor;
    class TestEventRepeater;
    class UnitTestRecordPropertyTestHelper;
    class WindowsDeathTest;
    class UnitTestImpl* GetUnitTestImpl();
    void ReportFailureInUnknownLocation(TestPartResult::Type result_type,
                                        const std::string& message);
    
    }  // namespace internal
    
    // The friend relationship of some of these classes is cyclic.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    class TestEventListenersAccessor;
    class TestEventRepeater;
    class UnitTestRecordPropertyTestHelper;
    class WindowsDeathTest;
    class UnitTestImpl* GetUnitTestImpl();
    void ReportFailureInUnknownLocation(TestPartResult::Type result_type,
                                        const std::string& message);
    
    }  // namespace internal
    
    // The friend relationship of some of these classes is cyclic.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let hasRegionVerifier = 1;
    
      let builders = [
        OpBuilder<(ins "TypeRange":$resultTypes, "ValueRange":$operands,
          "llvm::ArrayRef<::mlir::NamedAttribute>":$attributes,
          "unsigned":$numRegions),
        [{
          assert(numRegions == 2u && "mismatched number of regions");
          build($_builder, $_state, resultTypes, operands, attributes);
        }]>];
    
      let hasCanonicalizer = 1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top