You are tasked with optimizing an Intel Xeon scalable processor-based server running a TensorFlow model with multiple NVIDIA GPUs. You observe that the CPU utilization is low, but the GPU utilization is also not optimal. The profiler shows significant time spent in 'tf.data' operations. Which of the following actions would MOST likely improve performance?
正解:C
'tf.data' performance issues often stem from inefficient data pipelines. 'tf.data.AIJTOTUNE allows TensorFlow to dynamically optimize the pipeline by adjusting parameters such as prefetch buffer size and the number of parallel calls to transformation functions. XLA compilation optimizes graph execution, but 'tf.data' issues need to be addressed first. Increasing CPU threads might help but 'AUTOTUNE is more specific to the problem. A smaller batch size could negatively impact GPU utilization. Network upgrades are irrelevant as the problem lies within the server.