File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
paddle/phi/backends/dynload Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 5555 AGILE_COMPILE_BRANCH : ${{ github.event.pull_request.base.ref }}
5656 BOS_CREDENTIAL_AK : " paddle"
5757 BOS_CREDENTIAL_SK : " paddle"
58- PADDLE_WHL : https://paddle-github-action.cdn .bcebos.com/PR/build/${{ github.event.pull_request.number }}/${{ github.event.pull_request.head.sha }}/paddlepaddle_gpu-0.0.0-cp310-cp310-linux_x86_64.whl
58+ PADDLE_WHL : https://paddle-github-action.bj .bcebos.com/PR/build/${{ github.event.pull_request.number }}/${{ github.event.pull_request.head.sha }}/paddlepaddle_gpu-0.0.0-cp310-cp310-linux_x86_64.whl
5959 run : |
6060 container_name=${TASK}-$(date +%Y%m%d-%H%M%S)
6161 echo "container_name=${container_name}" >> ${{ github.env }}
Original file line number Diff line number Diff line change @@ -1022,6 +1022,9 @@ void* GetNvtxDsoHandle() {
10221022 PADDLE_THROW (
10231023 common::errors::Unimplemented (" Nvtx do not support without CUDA." ));
10241024#else
1025+ if (CUDA_VERSION >= 12090 ) {
1026+ return GetDsoHandleFromSearchPath (FLAGS_cuda_dir, " libnvtx3interop.so.1" );
1027+ }
10251028 return GetDsoHandleFromSearchPath (FLAGS_cuda_dir, " libnvToolsExt.so" );
10261029#endif
10271030}
Original file line number Diff line number Diff line change @@ -247,6 +247,11 @@ if(NOT WITH_GPU)
247247 list (REMOVE_ITEM TEST_OPS test_apply_per_channel_scale)
248248endif ()
249249
250+ #
251+ if (${CUDA_ARCH_NAME} STREQUAL "Hopper" )
252+ list (REMOVE_ITEM TEST_OPS test_weight_only_linear)
253+ endif ()
254+
250255if (LINUX AND WITH_ONEDNN)
251256
252257 #### Image classification dataset: ImageNet (small)
You can’t perform that action at this time.
0 commit comments