Aruna K

Results 12 comments of Aruna K

@Venkat6871 , can please provide access to gist

Hi @Venkat6871 , I tired with gist , but I am not able to see data in tensorboard. `tf.profiler.experimental.start('logs') output = model.predict(encoded_input, verbose=False)[0] tf.profiler.experimental.stop()` This way I tried. Please let...

@Venkat6871 , I actually followed all the steps and when teansorboard is opened in web , In the profile tab when click for op level , the page is showing...

@Venkat6871 , is there any other way I can get profile data for inference

@SuryanarayanaY , For the above code I get tensorboard as attached

@SuryanarayanaY , @Venkat6871 I able to get tensorboard results when I downgraded protobuf to 3.X but when try to use the same for transfomer model the tensorboard is showing empty...

Able to see graph api with code below: ``` import torch import torchvision torch.jit.enable_onednn_fusion(True) model = torchvision.models.resnet18(pretrained=True) model.eval() images = torch.rand(1, 3, 224, 224) traced_script_module = torch.jit.trace(model, images) model =...

@shawnxhong , @ghjeong12 , I have created inference model for VIT:I want to profile for tensorflow stats, but with below code I am getting no ops list in the profiler....

@ZhennanQin , I was going through the https://arxiv.org/abs/2301.01333, after TensorIR how it calls batch reduce kernel and also I want understand where exactly the microkernel file location in oneDNN repository.