Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for Dadd (0.07 sec)

  1. LICENSE

              do not modify the License. You may add Your own attribution
              notices within Derivative Works that You distribute, alongside
              or as an addendum to the NOTICE text from the Work, provided
              that such additional attribution notices cannot be construed
              as modifying the License.
    
          You may add Your own copyright statement to Your modifications and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 29 17:31:56 UTC 2021
    - 13.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

          } else if (quant_specs_.inference_type == tensorflow::DT_HALF) {
            quantizeOpAsFloat16(rewriter, op, quant_op);
            quantized = true;
          }
        }
        return quantized;
      }
    
      // Add asymmetric input quantization attribute. MLIR dynamic quantization
      // supports only the case that the value of the attribute equals to true. For
      // details, see tensorflow/compiler/mlir/lite/quantization/quantization.td
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

      %read = "tf.ReadVariableOp"(%id0) : (!tf_res) -> tensor<32xf32>
      %cst = arith.constant dense<3.0> : tensor<32xf32>
      %add = "tf.AddV2"(%read, %cst) : (tensor<32xf32>, tensor<32xf32>) -> tensor<32xf32>
      "tf.AssignVariableOp"(%arg0, %add) : (!tf_res, tensor<32xf32>) -> ()
      func.return
    }
    
    // CHECK-LABEL: func @propagate_through_calls
    func.func @propagate_through_calls(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/scope.cc

                                        impl()->colocation_constraints_.end());
        // Sort the set.
        std::sort(constraints.begin(), constraints.end());
        // Add loc:@ prefix
        std::transform(constraints.begin(), constraints.end(), constraints.begin(),
                       [](const string& s) {
                         return strings::StrCat(kColocationGroupPrefix, s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/stream_executor/stream_executor.cc

          if (memory_bandwidth >= 0) {
            builder.set_memory_bandwidth(memory_bandwidth);
          }
        }
        // TODO(annarev): Add gflops field in DeviceDescription and set it here.
        // TODO(annarev): Perhaps add `supports_unified_memory` in
        // DeviceDescription.
        return builder.Build();
      }
    
      absl::StatusOr<std::unique_ptr<Event>> CreateEvent() override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/ir/UniformSupport.h

        // fixed_point = clamp(clamp_min, clamp_max, (
        //   roundHalfToEven(expressed / scale) + zero_point))
        APFloat scaled = (expressed_value / scale_);
        scaled.roundToIntegral(round_mode_);
        scaled.add(zero_point_, round_mode_);
        APFloat fixed_point = llvm::minimum(scaled, clamp_max_);
        fixed_point = llvm::maximum(fixed_point, clamp_min_);
    
        llvm::APSInt result(storage_bit_width_, !is_signed_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    // limitations under the License.
    
    // Revision History
    // Version 0: Initial version.
    // Version 1: Add subgraphs to schema.
    // Version 2: Rename operators to conform to NN API.
    // Version 3: Move buffer data from Model.Subgraph.Tensors to Model.Buffers.
    // Version 3a: Add new builtin op code field. Has backward compatibility with
    //             version 3.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/cc_op_gen_util.cc

                           graph_op_def.deprecation().version(), ":\n",
                           graph_op_def.deprecation().explanation(), ".\n");
      } else if (api_def.summary().empty()) {
        comment = "TODO: add doc.\n";
      } else {
        comment = strings::StrCat(api_def.summary(), "\n");
      }
      if (!api_def.description().empty()) {
        strings::StrAppend(&comment, "\n", api_def.description(), "\n");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

      OperationState new_state(loc, tf_op_name, inputs, output_types, attr_list);
      Operation* new_op = rewriter.create(new_state);
      if (materialize_derived_attrs_) {
        for (const auto& attr : derived_attrs) {
          // Add or update the derived attribute with the value. Skip the fixed
          // element type attributes, in case they are present in the NodeDef.
          if (!fixed_elt_type_attrs_.contains(attr.first())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

    };
    
    void DeferActivationTransposePass::runOnOperation() {
      func::FuncOp func_op = getOperation();
      MLIRContext& ctx = getContext();
    
      RewritePatternSet patterns(&ctx);
      patterns.add<DeferActivationTransposeForAddOp,
                   DeferActivationTransposeForMaxPoolReduceWindowOp,
                   DeferActivationTransposeForMaxOp>(&ctx);
      if (failed(applyPatternsAndFoldGreedily(func_op, std::move(patterns)))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top