Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for op_begin (0.2 sec)

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

      }
    
      const bool arg_no_changed = branch_maps.front().empty();
      auto output_buffer_to_size =
          ModifyFunctionReturn(branches.front(), branch_maps.front());
      for (const auto& pair : llvm::drop_begin(llvm::zip(branches, branch_maps), 1))
        ModifyFunctionReturn(std::get<0>(pair), std::get<1>(pair));
    
      if (output_buffer_to_size.empty() && arg_no_changed) return success();
    
      // Recreate the op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (!concat_dim_attr || concat_dim_attr.getType().getRank() != 0)
        return failure();
    
      llvm::SmallVector<DenseIntElementsAttr, 4> shapes;
      shapes.reserve(operands.size() - 1);
      for (Attribute shape : llvm::drop_begin(operands, 1))
        if (auto shape_attr = mlir::dyn_cast_or_null<DenseIntElementsAttr>(shape))
          shapes.push_back(shape_attr);
        else
          return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        t = TypeMeet(*it, t);
        changed = changed || (t != *it);
        *it++ = t;
      }
      // Now the remaining N from operand types.
      for (auto t : llvm::drop_begin(op->getOperandTypes())) {
        auto meet = TypeMeet(*it, t);
        changed = changed || (meet != *it);
        *it++ = meet;
      }
      if (!changed) return false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      };
    
      // All other packed values are scalar constants.
      SmallVector<int64_t, 4> packed_dims;
      packed_dims.reserve(getValues().size() - 1);
      for (Value operand : llvm::drop_begin(getValues(), 1)) {
        if (auto dim = get_const_int(operand, /*expected_rank=*/0)) {
          packed_dims.push_back(*dim);
        } else {
          return {};
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	op_TBDR    uint32 = 0xB351 // FORMAT_RRF5       CONVERT HFP TO BFP (long)
    	op_TBEDR   uint32 = 0xB350 // FORMAT_RRF5       CONVERT HFP TO BFP (long to short)
    	op_TBEGIN  uint32 = 0xE560 // FORMAT_SIL        TRANSACTION BEGIN
    	op_TBEGINC uint32 = 0xE561 // FORMAT_SIL        TRANSACTION BEGIN
    	op_TCDB    uint32 = 0xED11 // FORMAT_RXE        TEST DATA CLASS (long BFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top