Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Convolution (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // all spatial dimensions.
        const int64_t filter_channels = GetDimSize(filter_ty, num_spatial_dims);
        // TensorFlow convolution op verifies that the number of input channels is
        // divisible by the number of filter channels.
        // For depthwise convolution the feature_group_count argument would be set
        // to the input feature dimension.
        const int64_t feature_group_count =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_ConvOp : TF_Op<"Conv", [Pure]> {
      let summary = [{
    Computes a N-D convolution given (N+1+batch_dims)-D `input` and (N+2)-D `filter` tensors.
      }];
    
      let description = [{
    General function for computing a N-D convolution. It is required that
    `1 <= N <= 3`.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. RELEASE.md

        Intel developed a number of optimized deep learning primitives: In addition
        to matrix multiplication and convolution, these building blocks include:
        Direct batched convolution Pooling: maximum, minimum, average Normalization:
        LRN, batch normalization Activation: rectified linear unit (ReLU) Data
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Applies automatic space to depth transform for the first or frontier convolutions consume host inputs on TPU.";
    
      let description = [{
        Automatic space to depth transform is done by adding space to depth transform op after host input
        and applying space to depth transform for the first convolution and its backprop filter on TPU.
    
        For example, original program:
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          dnums.kernel_spatial_dimensions_size()) {
        return op.emitOpError() << "Both arguments to convolution must have "
                                << "same number of dimensions.\n";
      }
    
      if (dnums.input_spatial_dimensions_size() !=
          dnums.output_spatial_dimensions_size()) {
        return op.emitOpError() << "Both input and output of convolution must have "
                                << "same number of dimensions.\n";
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

                quantized_graph->tensors()->Get(op->inputs()->Get(1));
            EXPECT_EQ(weights_tensor->type(), TensorType_INT8);
          }
        }
      }
      // Ensure that there were exactly two convolutions in the model.
      EXPECT_EQ(num_conv_ops, 2);
    }
    
    TEST_F(QuantizeWeightsTest, SharedWeights_Dequantize) {
      LoadSharedWeightsModel();
      flatbuffers::FlatBufferBuilder builder;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // between hosts.
    std::unique_ptr<OperationPass<mlir::ModuleOp>>
    CreateTPUCompileOpReplicationPass();
    
    // Creates a pass that applies space to depth transform
    // for the first or frontier convolutions consume host inputs on TPU.
    std::unique_ptr<OperationPass<ModuleOp>> CreateTPUSpaceToDepthPass();
    
    // Adjusts the device on TPUCopyWithDynamicShape ops.
    std::unique_ptr<OperationPass<ModuleOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top