Home
last modified time | relevance | path

Searched refs:getDataType (Results 1 – 13 of 13) sorted by relevance

/third_party/mindspore/mindspore/lite/java/java/common/src/main/java/com/mindspore/lite/
DMSTensor.java69 public int getDataType() { in getDataType() method in MSTensor
70 return this.getDataType(this.tensorPtr); in getDataType()
173 private native int getDataType(long tensorPtr); in getDataType() method in MSTensor
/third_party/mindspore/mindspore/lite/examples/quick_start_java/src/main/java/com/mindspore/lite/demo/
DMain.java72 if (inputTensor.getDataType() != DataType.kNumberTypeFloat32) { in run()
73 …stem.err.println("Input tensor shape do not float, the data type is " + inputTensor.getDataType()); in run()
102 if (outTensor.getDataType() != DataType.kNumberTypeFloat32) { in run()
103 …ystem.err.println("output tensor shape do not float, the data type is " + outTensor.getDataType()); in run()
/third_party/mindspore/mindspore/lite/examples/runtime_java/app/src/main/java/com/mindspore/lite/demo/
DMainActivity.java132 if (outTensor.getDataType() != DataType.kNumberTypeFloat32) { in printTensorData()
133 … Log.e(TAG, "output tensor shape do not float, the data type is " + outTensor.getDataType()); in printTensorData()
152 if (inputTensor.getDataType() != DataType.kNumberTypeFloat32) { in runInference()
153 … Log.e(TAG, "Input tensor shape do not float, the data type is " + inputTensor.getDataType()); in runInference()
/third_party/mindspore/mindspore/lite/test/st/java/src/main/java/
DBenchmark.java151 if (inputTensor.getDataType() != DataType.kNumberTypeFloat32) { in main()
152 …stem.err.println("Input tensor shape do not float, the data type is " + inputTensor.getDataType()); in main()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/
DRegexTransformer.java63 rules.stream().collect(toImmutableSetMultimap(Rule::getDataType, Rule::getPathPrefix)); in RegexTransformer()
82 if (!prefixMap.get(value.getDataType()).contains(pathPrefix)) { in transform()
DRule.java86 final CldrDataType getDataType() { in getDataType() method in Rule
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DImageFunctionHLSL.cpp208 ImageFunctionHLSL::ImageFunction::DataType ImageFunctionHLSL::ImageFunction::getDataType( in getDataType() function in sh::ImageFunctionHLSL::ImageFunction
312 imageFunction.type = imageFunction.getDataType(imageInternalFormat); in useImageFunction()
DImageFunctionHLSL.h64 DataType getDataType(TLayoutImageInternalFormat format) const;
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DImageFunctionHLSL.cpp208 ImageFunctionHLSL::ImageFunction::DataType ImageFunctionHLSL::ImageFunction::getDataType( in getDataType() function in sh::ImageFunctionHLSL::ImageFunction
312 imageFunction.type = imageFunction.getDataType(imageInternalFormat); in useImageFunction()
DImageFunctionHLSL.h64 DataType getDataType(TLayoutImageInternalFormat format) const;
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_data_DataShareResultSet.js98 getDataType: function (...args) { method
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/testing/
DFakeDataSupplier.java77 Iterables.filter(nonLocaleData.values(), v -> v.getPath().getDataType() == type)); in getDataForType()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
DAlternateLocaleData.java165 checkArgument(path.getDataType() == LDML, "only locale data (LDML) is supported: %s", path); in checkLdml()