Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 125 for getRand (0.44 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        data_rank = then_tensor.getRank();
        if (then_tensor.getRank() > 0)
          data_first_dim = then_tensor.getShape().front();
        if (else_tensor.getRank() > 0)
          data_first_dim = std::max(else_tensor.getShape().front(), data_first_dim);
      } else if (then_has_rank) {
        data_rank = then_tensor.getRank();
        if (then_tensor.getRank() > 0)
          data_first_dim = then_tensor.getShape().front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      if (!output_ty) return success();
    
      int64_t expected_output_rank = std::max(x_ty.getRank(), y_ty.getRank());
      if (output_ty.getRank() != expected_output_rank) {
        return op.emitOpError()
               << "found invalid output rank, expected " << expected_output_rank
               << " but got " << output_ty.getRank();
      }
    
      // Check output batch dim with potential broadcasting.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        auto reshape_input_ty = mlir::dyn_cast<ShapedType>(reshape_input.getType());
        if (!reshape_input_ty.hasStaticShape() || input_ty.getRank() == 0 ||
            reshape_input_ty.getRank() == 0 ||
            input_ty.getDimSize(input_ty.getRank() - 1) !=
                reshape_input_ty.getDimSize(reshape_input_ty.getRank() - 1)) {
          return failure();
        }
    
        // Connect the input to the one of reshape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_regions.cc

    // Converts the condition for an IfOp/WhileOp to a boolean value.
    Value ConvertConditionToBoolean(Operation* op, Value cond) {
      if (auto ranked_type = mlir::dyn_cast<RankedTensorType>(cond.getType()))
        if (ranked_type.getRank() == 0 &&
            ranked_type.getElementType().isSignlessInteger(1))
          return cond;
    
      OpBuilder builder(op);
      Value to_bool = builder.create<TF::ToBoolOp>(op->getLoc(), cond);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGenerator.java

            }
        }
    
        private static boolean hasGroovyPropertyRequests(List<CallInterceptionRequest> requests) {
            return requests.stream().anyMatch(it -> it.getInterceptedCallable().getKind() == GROOVY_PROPERTY_GETTER || it.getInterceptedCallable().getKind() == GROOVY_PROPERTY_SETTER);
        }
    
        @SuppressWarnings("ReturnValueIgnored")
        private static CodeBlock interceptorClassJavadoc(Collection<CallInterceptionRequest> requests) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

            CodeBlock result = interceptedCallable.getKind() == CallableKindInfo.STATIC_METHOD ? CodeBlock.of("opcode == $T.INVOKESTATIC", Opcodes.class) :
                interceptedCallable.getKind() == CallableKindInfo.INSTANCE_METHOD ? CodeBlock.of("(opcode == $1T.INVOKEVIRTUAL || opcode == $1T.INVOKEINTERFACE)", Opcodes.class) :
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

      for (auto idx : val1_indices) {
        if (idx < 0) idx = idx + val1_shape.getRank();
        if (idx >= val1_shape.getRank() || val1_shape.isDynamicDim(idx)) {
          return false;
        }
        val1_result *= val1_shape.getDimSize(idx);
      }
    
      for (auto idx : val2_indices) {
        if (idx < 0) idx = idx + val2_shape.getRank();
        if (idx >= val2_shape.getRank() || val2_shape.isDynamicDim(idx)) {
          return false;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            /*parallel_iterations=*/10,
            /*is_stateless=*/false, /*shape_invariant=*/false);
        new_while.getCond().takeBody(while_op.getCond());
        new_while.getBody().takeBody(while_op.getBody());
        ReplaceReturnOp(new_while.getCond(), rewriter);
        ReplaceReturnOp(new_while.getBody(), rewriter);
        rewriter.replaceOp(while_op, new_while.getResults());
        return success();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.h

      return type && type.getRank() == rank &&
             mlir::isa<FloatType>(type.getElementType());
    }
    
    // Returns true if the given `value` has the specified rank or has unranked
    // type.
    inline bool IsOfRankOrUnranked(Value value, int64_t rank) {
      RankedTensorType type = GetRankedTensorTypeForOperand(value);
      return !type || type.getRank() == rank;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

      auto num_loop_carried = while_op.getCond().getNumArguments();
      auto not_carried_operands =
          while_op.getOperands().drop_front(num_loop_carried);
      extern_values.insert(not_carried_operands.begin(),
                           not_carried_operands.end());
      auto old_extern_values_size = extern_values.size();
    
      llvm::SmallVector<Region*, 2> regions{&while_op.getCond(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top