We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d1944f commit 834224fCopy full SHA for 834224f
src/option.cpp
@@ -41,6 +41,8 @@ Option::Option()
41
use_int8_storage = true;
42
use_int8_arithmetic = false;
43
44
+ use_packing_layout = false;
45
+
46
// sanitize
47
if (num_threads <= 0)
48
num_threads = 1;
src/option.h
@@ -84,6 +84,9 @@ class Option
84
bool use_fp16_arithmetic;
85
bool use_int8_storage;
86
bool use_int8_arithmetic;
87
88
+ //
89
+ bool use_packing_layout;
90
};
91
92
} // namespace ncnn
0 commit comments