Put this code inside your child theme’s functions.php
file:
function graphene_remove_filters(){
remove_filter('excerpt_length', 'graphene_excerpt_length');
}
add_action('init', 'graphene_remove_filters');
Be warned though that if you’re using background image and excerpt for your slider, the excerpt that will be displayed may be a bit too long for the space.