You can start with this:
SELECT * FROM sys.dm_exec_sessions
WHERE cpu_time > 0
ORDER BY cpu_time DESC
You may want to reduce the columns returned, but it should help see what has been consuming a lot of CPU. You may have to run it a few times to get some deltas.
↧