Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 196 for conv2 (0.09 sec)

  1. tensorflow/compiler/jit/tests/keras_imagenet_main_graph_mode.pbtxt

        }
      }
    }
    node {
      name: "loss_1/conv1/kernel/Regularizer/Square/ReadVariableOp"
      op: "ReadVariableOp"
      input: "conv1/kernel"
      device: "/job:localhost/replica:0/task:0/device:GPU:0"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
    }
    node {
      name: "conv1_1/Conv2D/ReadVariableOp"
      op: "ReadVariableOp"
      input: "conv1/kernel"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 02:52:54 UTC 2019
    - 1.1M bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/keras_imagenet_main.pbtxt

        value {
          b: false
        }
      }
    }
    node {
      name: "training/LossScaleOptimizer/gradients/loss_1/conv1/kernel/Regularizer/Square_grad/Mul_1"
      op: "Mul"
      input: "loss_1/conv1/kernel/Regularizer/Square/ReadVariableOp"
      input: "training/LossScaleOptimizer/gradients/loss_1/conv1/kernel/Regularizer/Square_grad/Mul"
      device: "/job:localhost/replica:0/task:0/device:GPU:0"
      attr {
        key: "T"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 02:52:54 UTC 2019
    - 1.3M bytes
    - Viewed (0)
  3. test/fixedbugs/issue9110.go

    		// pick up next sudog
    		var cond2 sync.Cond
    		var mu2 sync.Mutex
    		cond2.L = &mu2
    		go func() {
    			mu2.Lock()
    			cond2.Wait()
    			mu2.Unlock()
    		}()
    		time.Sleep(1 * time.Millisecond)
    
    		// put top sudog back
    		cond1.Broadcast()
    		time.Sleep(1 * time.Millisecond)
    
    		// drop cache on floor
    		runtime.GC()
    
    		// release cond2 after select has gotten to run
    		release = func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

        }
      }
    
      // Handle Conv2D input, stride and filter.
      HandleConv2DInput(conv2d, block_size);
      HandleConv2DStride(conv2d);
      HandleConv2DFilter(conv2d, block_size);
    
      // Book keeping new filter shape for backprop filter rewrite.
      // Filter shape is defined in HandleConv2DFilter, thus it is RankedTensorType.
      filter_shape =
          mlir::cast<RankedTensorType>(conv2d.getFilter().getType()).getShape();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_to_nchw.mlir

      // Check that Conv2D computed in NCHW format, and all redundant transpose
      // operations removed from the function.
    
      // CHECK: %[[CONV:[0-9]*]] = "tf.Conv2D"(%arg0, %arg1)
      // CHECK-SAME: data_format = "NCHW"
      // CHECK-SAME: -> tensor<1x8x32x32xf32>
    
      // CHECK: return %[[CONV]]
    
      func.return %4 : tensor<1x8x32x32xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            scale, offset = [1.0] * 2, [0.5] * 2
            mean, variance = scale, offset
            out = nn_ops.conv2d(
                q_input,
                q_filter,
                strides=[1, 1, 2, 1],
                dilations=[1, 1, 1, 1],
                padding='SAME',
                data_format='NHWC',
                name='sample/conv2d',
            )
            if has_bias:
              out = nn_ops.bias_add(out, bias, data_format='NHWC')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/fake_quant_e2e_xla.mlir

        return %3 : tensor<?x?x?x2xf32>
      }
    
    // CHECK-LABEL: func @conv_with_dynamic_shape
    // The Conv2D should not be quantized since it has dynamic channel.
    // CHECK: "tf.Conv2D"
    // CHECK-SAME: (tensor<?x?x?x?xf32>, tensor<2x3x3x2xf32>) -> tensor<?x?x?x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_layout_assignment_to_nchw.mlir

      // CHECK: %[[ARG_PERM:.*]] = "tf.Const"() <{value = dense<[0, 3, 1, 2]> : tensor<4xi64>}>
      // CHECK: %[[ARG_TRANSPOSE:[0-9]*]] = "tf.Transpose"(%arg0, %[[ARG_PERM]])
    
      // CHECK: %[[CONV2D:[0-9]*]] = "tf.Conv2D"(%[[ARG_TRANSPOSE]], %arg1)
      // CHECK-SAME: data_format = "NCHW"
      // CHECK-SAME: dilations = [1, 4, 2, 3]
      // CHECK-SAME: explicit_paddings = [1, 2, 7, 8, 3, 4, 5, 6]
      // CHECK-SAME: padding = "EXPLICIT"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/dependencies/AsciiDependencyReportRendererTest.groovy

            def conf2 = new ConfigurationDetails('config2', null, false, null, null)
    
            when:
            renderer.prepareVisit()
            renderer.startConfiguration(conf1);
            renderer.completeConfiguration(conf1);
            renderer.startConfiguration(conf2);
            renderer.completeConfiguration(conf2);
    
            then:
            textOutput.value.readLines() == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 12 17:41:29 UTC 2022
    - 3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_layout_assignment_gpu_cc_70.mlir

      // cuDNN prefers NCHW data format for spatial convolutions.
      // CHECK: "tf.Conv2D"(%[[INPUT_TRANSPOSE:[0-9]*]], %arg1)
      // CHECK-SAME: data_format = "NCHW"
      %0 = "tf.Conv2D"(%input, %filter)
           {
             data_format = "NHWC",
             padding = "VALID",
             strides = [1, 1, 1, 1]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 21 08:41:18 UTC 2022
    - 8.5K bytes
    - Viewed (0)
Back to top