Home
last modified time | relevance | path

Searched refs:OutputFormat (Results 1 – 25 of 64) sorted by relevance

123

/third_party/mindspore/mindspore/dataset/engine/
Dgraphdata.py27 from mindspore._c_dataengine import OutputFormat as Format
46 class OutputFormat(IntEnum): class
53 OutputFormat.NORMAL: Format.DE_FORMAT_NORMAL,
54 OutputFormat.COO: Format.DE_FORMAT_COO,
55 OutputFormat.CSR: Format.DE_FORMAT_CSR,
202 def get_all_neighbors(self, node_list, neighbor_type, output_format=OutputFormat.NORMAL):
321 if output_format == OutputFormat.CSR:
D__init__.py29 from .graphdata import GraphData, SamplingStrategy, OutputFormat
/third_party/skia/third_party/externals/tint/fuzzers/tint_regex_fuzzer/
Dfuzzer.cc126 OutputFormat output_format; in LLVMFuzzerTestOneInput()
130 Target targets[] = {{FuzzingTarget::kWgsl, OutputFormat::kWGSL, "WGSL"}, in LLVMFuzzerTestOneInput()
131 {FuzzingTarget::kHlsl, OutputFormat::kHLSL, "HLSL"}, in LLVMFuzzerTestOneInput()
132 {FuzzingTarget::kMsl, OutputFormat::kMSL, "MSL"}, in LLVMFuzzerTestOneInput()
133 {FuzzingTarget::kSpv, OutputFormat::kSpv, "SPV"}}; in LLVMFuzzerTestOneInput()
/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/
Dfuzzer.cc98 OutputFormat output_format; in LLVMFuzzerTestOneInput()
102 Target targets[] = {{FuzzingTarget::kWgsl, OutputFormat::kWGSL, "WGSL"}, in LLVMFuzzerTestOneInput()
103 {FuzzingTarget::kHlsl, OutputFormat::kHLSL, "HLSL"}, in LLVMFuzzerTestOneInput()
104 {FuzzingTarget::kMsl, OutputFormat::kMSL, "MSL"}, in LLVMFuzzerTestOneInput()
105 {FuzzingTarget::kSpv, OutputFormat::kSpv, "SPV"}}; in LLVMFuzzerTestOneInput()
/third_party/skia/third_party/externals/tint/fuzzers/
Dtint_all_transforms_fuzzer.cc28 fuzzers::CommonFuzzer fuzzer(InputFormat::kWGSL, OutputFormat::kSpv); in LLVMFuzzerTestOneInput()
40 fuzzers::CommonFuzzer fuzzer(InputFormat::kWGSL, OutputFormat::kHLSL); in LLVMFuzzerTestOneInput()
53 fuzzers::CommonFuzzer fuzzer(InputFormat::kWGSL, OutputFormat::kMSL); in LLVMFuzzerTestOneInput()
65 fuzzers::CommonFuzzer fuzzer(InputFormat::kWGSL, OutputFormat::kSpv); in LLVMFuzzerTestOneInput()
Dtint_black_box_fuzz_target.cc133 tint::fuzzers::OutputFormat::kHLSL); in main()
140 tint::fuzzers::OutputFormat::kMSL); in main()
148 tint::fuzzers::OutputFormat::kSpv); in main()
154 tint::fuzzers::OutputFormat::kWGSL); in main()
Dtint_common_fuzzer.h39 enum class OutputFormat { kWGSL, kSpv, kHLSL, kMSL }; enum
43 explicit CommonFuzzer(InputFormat input, OutputFormat output);
88 OutputFormat output_;
Dtint_common_fuzzer.cc109 CommonFuzzer::CommonFuzzer(InputFormat input, OutputFormat output) in CommonFuzzer()
206 case OutputFormat::kWGSL: { in Run()
217 case OutputFormat::kSpv: { in Run()
234 case OutputFormat::kHLSL: { in Run()
245 case OutputFormat::kMSL: { in Run()
Dtint_spv_reader_fuzzer.cc24 tint::fuzzers::CommonFuzzer fuzzer(InputFormat::kSpv, OutputFormat::kNone); in LLVMFuzzerTestOneInput()
Dtint_spv_reader_hlsl_writer_fuzzer.cc25 OutputFormat::kHLSL); in LLVMFuzzerTestOneInput()
Dtint_wgsl_reader_fuzzer.cc24 tint::fuzzers::CommonFuzzer fuzzer(InputFormat::kWGSL, OutputFormat::kNone); in LLVMFuzzerTestOneInput()
Dtint_wgsl_reader_hlsl_writer_fuzzer.cc25 OutputFormat::kHLSL); in LLVMFuzzerTestOneInput()
Dtint_spv_reader_wgsl_writer_fuzzer.cc25 OutputFormat::kWGSL); in LLVMFuzzerTestOneInput()
Dtint_wgsl_reader_wgsl_writer_fuzzer.cc25 OutputFormat::kWGSL); in LLVMFuzzerTestOneInput()
Dtint_single_entry_point_fuzzer.cc26 fuzzers::CommonFuzzer fuzzer(InputFormat::kWGSL, OutputFormat::kWGSL); in LLVMFuzzerTestOneInput()
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/
Dutil.cc86 OutputFormat output_format, in LogWgslError()
91 case OutputFormat::kSpv: in LogWgslError()
94 case OutputFormat::kMSL: in LogWgslError()
97 case OutputFormat::kHLSL: in LogWgslError()
100 case OutputFormat::kWGSL: in LogWgslError()
Dfuzzer.cc226 CommonFuzzer spv_to_wgsl(InputFormat::kSpv, OutputFormat::kWGSL); in LLVMFuzzerTestOneInput()
237 std::pair<FuzzingTarget, OutputFormat> targets[] = { in LLVMFuzzerTestOneInput()
238 {FuzzingTarget::kHlsl, OutputFormat::kHLSL}, in LLVMFuzzerTestOneInput()
239 {FuzzingTarget::kMsl, OutputFormat::kMSL}, in LLVMFuzzerTestOneInput()
240 {FuzzingTarget::kSpv, OutputFormat::kSpv}, in LLVMFuzzerTestOneInput()
241 {FuzzingTarget::kWgsl, OutputFormat::kWGSL}}; in LLVMFuzzerTestOneInput()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/api/python/bindings/dataset/engine/gnn/
Dbindings.cc67 OutputFormat format) { in __anone4a0376a0102()
133 PYBIND_REGISTER(OutputFormat, 0, ([](const py::module *m) { in __anone4a0376a1302()
134 (void)py::enum_<OutputFormat>(*m, "OutputFormat", py::arithmetic()) in __anone4a0376a1302()
135 .value("DE_FORMAT_NORMAL", OutputFormat::kNormal) in __anone4a0376a1302()
136 .value("DE_FORMAT_COO", OutputFormat::kCoo) in __anone4a0376a1302()
137 .value("DE_FORMAT_CSR", OutputFormat::kCsr) in __anone4a0376a1302()
/third_party/mindspore/tests/ut/python/dataset/
Dtest_graphdata_distributed.py24 from mindspore.dataset.engine import OutputFormat
109 neighbor_normal = g.get_all_neighbors(nodes, 2, OutputFormat.NORMAL)
111 neighbor_coo = g.get_all_neighbors(nodes, 2, OutputFormat.COO)
113 offset_table, neighbor_csr = g.get_all_neighbors(nodes, 2, OutputFormat.CSR)
Dtest_graphdata.py21 from mindspore.dataset.engine import OutputFormat
50 neighbor_coo = g.get_all_neighbors(nodes, 2, OutputFormat.COO)
53 offset_table, neighbor_csr = g.get_all_neighbors(nodes, 2, OutputFormat.CSR)
/third_party/flatbuffers/src/
Dflathash.cpp25 enum OutputFormat { kDecimal, kHexadecimal, kHexadecimal0x }; enum
72 OutputFormat output_format = kHexadecimal; in main()
/third_party/vk-gl-cts/executor/tools/
DxeTestLogCompare.cpp53 enum OutputFormat enum
73 DE_DECLARE_COMMAND_LINE_OPT(OutFormat, OutputFormat);
86 static const NamedValue<OutputFormat> s_outputFormats[] = in registerOptions()
114 OutputFormat outFormat;
/third_party/freetype/src/tools/
Dapinames.c39 } OutputFormat; typedef
135 OutputFormat format, in names_dump()
375 OutputFormat format = OUTPUT_LIST; /* the default */ in main()
/third_party/flutter/skia/third_party/externals/freetype/src/tools/
Dapinames.c39 } OutputFormat; typedef
135 OutputFormat format, in names_dump()
375 OutputFormat format = OUTPUT_LIST; /* the default */ in main()
/third_party/skia/third_party/externals/freetype/src/tools/
Dapinames.c40 } OutputFormat; typedef
136 OutputFormat format, in names_dump()
387 OutputFormat format = OUTPUT_LIST; /* the default */ in main()

123