Home
last modified time | relevance | path

Searched refs:LogSoftmaxOptions (Results 1 – 12 of 12) sorted by relevance

/external/pytorch/torch/csrc/api/src/nn/options/
Dactivation.cpp16 LogSoftmaxOptions::LogSoftmaxOptions(int64_t dim) : dim_(dim) {} in LogSoftmaxOptions() function in torch::nn::LogSoftmaxOptions
/external/armnn/src/armnnTfLiteParser/test/
DLogSoftmax.cpp53 "builtin_options_type": "LogSoftmaxOptions", in LogSoftmaxFixture()
/external/pytorch/torch/csrc/api/include/torch/nn/options/
Dactivation.h309 struct TORCH_API LogSoftmaxOptions { struct
310 LogSoftmaxOptions(int64_t dim);
/external/pytorch/torch/csrc/api/include/torch/nn/modules/
Dactivation.h297 : LogSoftmaxImpl(LogSoftmaxOptions(dim)) {} in LogSoftmaxImpl()
298 explicit LogSoftmaxImpl(const LogSoftmaxOptions& options_);
307 LogSoftmaxOptions options;
/external/pytorch/torch/csrc/api/src/nn/modules/
Dactivation.cpp152 LogSoftmaxImpl::LogSoftmaxImpl(const LogSoftmaxOptions& options_) in LogSoftmaxImpl()
/external/tensorflow/tensorflow/lite/schema/
Dschema_v3a.fbs395 LogSoftmaxOptions,
769 table LogSoftmaxOptions {
Dschema_v3b.fbs421 LogSoftmaxOptions,
822 table LogSoftmaxOptions {
Dschema.fbs456 LogSoftmaxOptions,
875 table LogSoftmaxOptions {
Dschema_generated.h237 struct LogSoftmaxOptions;
1947 template<> struct BuiltinOptionsTraits<tflite::LogSoftmaxOptions> {
7927 typedef LogSoftmaxOptions TableType;
7930 struct LogSoftmaxOptions FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
7939 …static flatbuffers::Offset<LogSoftmaxOptions> Pack(flatbuffers::FlatBufferBuilder &_fbb, const Log…
7943 typedef LogSoftmaxOptions Table;
7950 flatbuffers::Offset<LogSoftmaxOptions> Finish() {
7952 auto o = flatbuffers::Offset<LogSoftmaxOptions>(end);
7957 inline flatbuffers::Offset<LogSoftmaxOptions> CreateLogSoftmaxOptions(
7963 flatbuffers::Offset<LogSoftmaxOptions> CreateLogSoftmaxOptions(flatbuffers::FlatBufferBuilder &_fbb…
[all …]
/external/tensorflow/tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/
Dtest_schema.fbs390 LogSoftmaxOptions,
759 table LogSoftmaxOptions {
/external/mesa3d/src/gallium/targets/teflon/
Dtflite-schema-v2.15.0.fbs513 LogSoftmaxOptions,
1132 table LogSoftmaxOptions {
/external/pytorch/test/cpp/api/
Dmodules.cpp5326 c10::str(LogSoftmax(LogSoftmaxOptions(1))), in TEST_F()