/third_party/mindspore/mindspore/dataset/engine/ |
D | graphdata.py | 27 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__.py | 29 from .graphdata import GraphData, SamplingStrategy, OutputFormat
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_regex_fuzzer/ |
D | fuzzer.cc | 126 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/ |
D | fuzzer.cc | 98 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/ |
D | tint_all_transforms_fuzzer.cc | 28 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()
|
D | tint_black_box_fuzz_target.cc | 133 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()
|
D | tint_common_fuzzer.h | 39 enum class OutputFormat { kWGSL, kSpv, kHLSL, kMSL }; enum 43 explicit CommonFuzzer(InputFormat input, OutputFormat output); 88 OutputFormat output_;
|
D | tint_common_fuzzer.cc | 109 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()
|
D | tint_spv_reader_fuzzer.cc | 24 tint::fuzzers::CommonFuzzer fuzzer(InputFormat::kSpv, OutputFormat::kNone); in LLVMFuzzerTestOneInput()
|
D | tint_spv_reader_hlsl_writer_fuzzer.cc | 25 OutputFormat::kHLSL); in LLVMFuzzerTestOneInput()
|
D | tint_wgsl_reader_fuzzer.cc | 24 tint::fuzzers::CommonFuzzer fuzzer(InputFormat::kWGSL, OutputFormat::kNone); in LLVMFuzzerTestOneInput()
|
D | tint_wgsl_reader_hlsl_writer_fuzzer.cc | 25 OutputFormat::kHLSL); in LLVMFuzzerTestOneInput()
|
D | tint_spv_reader_wgsl_writer_fuzzer.cc | 25 OutputFormat::kWGSL); in LLVMFuzzerTestOneInput()
|
D | tint_wgsl_reader_wgsl_writer_fuzzer.cc | 25 OutputFormat::kWGSL); in LLVMFuzzerTestOneInput()
|
D | tint_single_entry_point_fuzzer.cc | 26 fuzzers::CommonFuzzer fuzzer(InputFormat::kWGSL, OutputFormat::kWGSL); in LLVMFuzzerTestOneInput()
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
D | util.cc | 86 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()
|
D | fuzzer.cc | 226 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/ |
D | bindings.cc | 67 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/ |
D | test_graphdata_distributed.py | 24 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)
|
D | test_graphdata.py | 21 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/ |
D | flathash.cpp | 25 enum OutputFormat { kDecimal, kHexadecimal, kHexadecimal0x }; enum 72 OutputFormat output_format = kHexadecimal; in main()
|
/third_party/vk-gl-cts/executor/tools/ |
D | xeTestLogCompare.cpp | 53 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/ |
D | apinames.c | 39 } 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/ |
D | apinames.c | 39 } 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/ |
D | apinames.c | 40 } OutputFormat; typedef 136 OutputFormat format, in names_dump() 387 OutputFormat format = OUTPUT_LIST; /* the default */ in main()
|