Max Ren
Max Ren
Reshape Convolution 2d output ```shell cd XNNPACK bash script/build-local.sh cd build/local make -j9 convolution-2d-test ./convolution-2d-test ```
Reshape Unpooling output
Reshape max pool 2d output operator. Testing: ```shell cd XNNPACK bash scripts/build-local.sh cd build/local make -j9 max-pooling-2d-reshape-test ./make-pooling-2d-reshape-test ```
Stack from [ghstack](https://github.com/ezyang/ghstack) (oldest at bottom): * __->__ #120546 as title Differential Revision: [D54149274](https://our.internmc.facebook.com/intern/diff/D54149274/)
Summary: XNNPACK broke Backwards Compatibility by forcing pooling operations to reduce dims, and introducing a flag to allow these operation to keep the dims. This is backwards breaking because previously...
Summary: Updating XNNPACK's README - Clean up directory structure by removing xnn_executor_runner - Add commands for running examples via cmake Differential Revision: D56524907
I've recently been experimenting with XNNPACK's weight cache to reduce load time by caching packed weights and also reduce memory pressure for repeated weights across the same kernels. I was...
Commit: https://github.com/google/XNNPACK/commit/23f386b5d7eca18cb98659f84483cd8f20662251 Introduces the XNN_FLAG_KEEP_DIM flag which makes global_sum_pooling, global_average_pooling, and static mean no longer backwards compatible. That is calls previously to xnn_define_global_average_pooling will reduce dims, when previous to this...
Summary: In the below we added quantizer annotation to the bias of GEMM operations. We update some of our delegate lowering logic to allow for this change Differential Revision: D56959071
Summary: XNNPACK should be testing with random inputs and quantized models should be calibrated before lowering and testing. Right now there are some numerical issues being debugged and tracked by:...