Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for y_batch_size (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.cc

        return failure();
      }
    
      // Compute slices for each batch in the LHS and RHS.
      std::vector<Value> sliced_lhs =
          sliceInput(input_lhs, bcast.x_batch_size(), loc, rewriter);
      std::vector<Value> sliced_rhs =
          sliceInput(input_rhs, bcast.y_batch_size(), loc, rewriter);
    
      // Compute (single batch) MatMul for each output batch.
      std::vector<Value> matmuls;
      matmuls.reserve(bcast.output_batch_size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_data_optimization.td

            $output_shapes, $use_inter_op_parallelism, $preserve_cardinality,
            $force_synchronous, $map_dataset_metadata),
         $batch_size, $drop_remainder, $parallel_copy, $batch_output_types,
         $batch_output_shapes, $unused_batch_dataset_metadata),
      (TF_MapAndBatchDatasetOp $input_dataset, $other_arguments, $batch_size,
         (TF_ConstOp (GetI64ScalarElementsAttr<1>)), $drop_remainder, $f,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/tests/end2end.mlir

      }
      tfr.return %res : !tfr.tensor
    }
    
    tfr.func @tf__my_map_and_batch_dataset(
        %input_dataset: !tfr.tensor,
        %other_arguments: !tfr.tensor_list,
        %batch_size: i64 {tfr.name="batch_size"},
        %num_parallel_calls: i64 {tfr.name="num_parallel_calls"},
        %drop_remainder: i1 {tfr.name="drop_remainder"},
        %f: !tfr.attr {tfr.name="func"},
        %output_types: !tfr.attr {tfr.name="output_types"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  4. internal/logger/config.go

    	Enabled bool `json:"enabled"`
    }
    
    // Audit/Logger constants
    const (
    	Endpoint   = "endpoint"
    	AuthToken  = "auth_token"
    	ClientCert = "client_cert"
    	ClientKey  = "client_key"
    	BatchSize  = "batch_size"
    	QueueSize  = "queue_size"
    	QueueDir   = "queue_dir"
    	Proxy      = "proxy"
    
    	KafkaBrokers       = "brokers"
    	KafkaTopic         = "topic"
    	KafkaTLS           = "tls"
    	KafkaTLSSkipVerify = "tls_skip_verify"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      auto ranked_type = mlir::dyn_cast<RankedTensorType>(input.getType());
      if (!ranked_type) return false;
      auto input_shape = ranked_type.getShape();
      int32_t batch_size = input_shape[0];
      int32_t channel = input_shape[3];
      if (batch_size > 8 || channel > 8) {
        return false;
      }
      return true;
    }
    
    // Get block argument id and number of users for the input arg.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  6. internal/event/target/kafka.go

    	KafkaSASLMechanism    = "sasl_mechanism"
    	KafkaClientTLSCert    = "client_tls_cert"
    	KafkaClientTLSKey     = "client_tls_key"
    	KafkaVersion          = "version"
    	KafkaBatchSize        = "batch_size"
    	KafkaCompressionCodec = "compression_codec"
    	KafkaCompressionLevel = "compression_level"
    
    	EnvKafkaEnable                   = "MINIO_NOTIFY_KAFKA_ENABLE"
    	EnvKafkaBrokers                  = "MINIO_NOTIFY_KAFKA_BROKERS"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 15:02:59 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/array_grad.cc

        auto inner_shape =
            Slice(scope, Slice(scope, values_shape, {batch_dims}, {-1}), {1}, {-1});
        auto batch_size = Prod(scope, outer_shape, /*axis=*/0);
        flat_values_shape = Concat(scope, {{-1}, inner_shape}, /*axis=*/0);
        gather_dim_size = Multiply(scope, gather_dim_size, batch_size);
        indices = GetBatchIndices(scope, params_shape, indices, batch_dims);
        values = Reshape(scope, values, flat_values_shape);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    The summary has up to `max_outputs` summary values containing audio. The
    audio is built from `tensor` which must be 3-D with shape `[batch_size,
    frames, channels]` or 2-D with shape `[batch_size, frames]`. The values are
    assumed to be in the range of `[-1.0, 1.0]` with a sample rate of `sample_rate`.
    
    The `tag` argument is a scalar `Tensor` of type `string`.  It is used to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

          return failure();
        }
    
        const int block_rank = block_shape_ty.getShape().front();
        auto remainder_shape = input_shape.drop_front(1 + block_rank);
    
        const int64_t batch_size = input_shape[0];
    
        // Compute the product of the block_shape values.
        int64_t block_num_elems = 1;
    
        for (auto val : block_shape.getValues<APInt>()) {
          block_num_elems *= val.getSExtValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            gather_op.getLoc(), start_indices_max_op, max_start_indices);
    
        int64_t batch_size = start_indices_type.getDimSize(batch_dim);
        auto slice_size = BuildIntArrayConstOp(
            builder, rewriter, slice_sizes_vector, rewriter.getI32Type());
        if (batch_size == 1) {
          auto squeeze_op = rewriter.create<TF::SqueezeOp>(
              gather_op.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top