{
const mygl = document.createElement('canvas').getContext('webgl2');
const gpgpu = new tf.webgl.GPGPUContext(mygl);
tf.ENV.registerBackend('custom-webgl', () => {
return new tf.webgl.MathBackendWebGL(gpgpu);
});
tf.setBackend('custom-webgl');
return tf.square(4).get();
}