Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for num_operands_expected (0.24 sec)

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

      }
    
      const bool packed_input = first_partitioned_input.getIsPacked();
      const size_t num_operands_expected = packed_input ? 1 : num_cores_per_replica;
      if (metadata &&
          num_operands_expected != first_partitioned_input.getNumOperands()) {
        return first_partitioned_input->emitOpError()
               << "expects " << num_operands_expected << " operands but found "
               << first_partitioned_input.getNumOperands();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 24 23:08:55 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

                 << "num cores per replica unavailable";
        }
    
        const int num_operands_expected = packed_input ? 1 : num_cores_per_replica;
        if (num_cores_per_replica_attr && num_operands_expected != inputs.size()) {
          return partitioned_input->emitOpError()
                 << "expects " << num_operands_expected << " operands but found "
                 << partitioned_input.getNumOperands();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top