You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
void profanity_filter_serial(int* dfa, int fail_state[], char* tweets, bool* valid_state, int num_tweets, int tweet_length);
__global__ void profanity_filter_cuda(int* dfa, int* fail_state, unsigned char* tweets, bool* valid_state, int offset, int num_tweets, int tweet_length);
void profanity_filter_parallel(int* dfa, int fail_state[], char* tweets, bool* valid_state, int num_tweets, int tweet_length, int num_threads, int num_blocks);
void profanity_filter_acc_parallel(int* dfa, int fail_state[], char* tweets, bool* valid_state, int num_tweets, int tweet_length);