Barry Pitman

Results 15 comments of Barry Pitman

It seems to be related to the use of `versionless_secret_id`: ``` ssl_certificate { name = "xx" key_vault_secret_id = data.azurerm_key_vault_certificate.pfx_secret.versionless_secret_id } ``` When I use `data.azurerm_key_vault_certificate.pfx_secret.secret_id` instead of `data.azurerm_key_vault_certificate.pfx_secret.versionless_secret_id`, then it...

Sorry for spamming this issue, but I realised that when referring to the `versionless_secret_id`, its not necessary to fetch it using `data.azurerm_key_vault_certificate`, you can just say: ``` key_vault_secret_id = "${var.key_vault.vault_uri}secrets/${certificate_name.key}"...

@mihetare did you ever get your preset for V4L2 working?

OK, after reading the docs I see that the list of header files in @Platform for the -gpu extension is not added to the existing list, I should re-declare all...

I have got it compiling and generating the tensorflow-lite-linux-x86-64-gpu.jar file, and I'm able to create the GPU delegate using ModifyGraphWithDelegate + TfLiteGpuDelegateV2Create. I have run into some issues actually using...