Since you want to only remove tags on the home page, add the code below to your functions.php file:
add_action('pre_get_posts', 'remove_autop_from_home');
function remove_autop_from_home() {
// check to see if we are on the home page
if(is_home()) {
remove_filter('the_content', 'wpautop');
}
}