By default, wp_get_attachement_image_srcset will not return an image larger than 1600px
// Increase Max Size Accepted By wp_get_attachment_image_srcset
add_filter( 'max_srcset_image_width', 'max_srcset_image_width', 10 , 2 );
function max_srcset_image_width() {
return 1930;
}