Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for comp_name (0.24 sec)

  1. tensorflow/c/kernels_test.cc

      const char* node_name = "SomeNodeName";
      const char* op_name = "FooOp";
      const char* device_name = "FakeDeviceName1";
    
      REGISTER_OP(op_name)
          .Input("input1: double")
          .Input("input2: uint8")
          .Output("output1: uint8")
          .Attr("SomeDataTypeAttr: type");
    
      TF_KernelBuilder* builder = TF_NewKernelBuilder(
          op_name, device_name, &MyCreateFunc, &MyComputeFunc, &MyDeleteFunc);
    
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      def _visit_tfr_builtins(self, op_name, args, node):
        arg_strs = []
        arg_tys = []
        for arg in args:
          value, ty = self.visit(arg)
          arg_strs.append(value)
          arg_tys.append(ty)
        tfr_op_name = 'tfr.' + op_name[5:]
        ret_tys = (
            TFR_BUILTINS[op_name](*arg_tys)
            if callable(TFR_BUILTINS[op_name]) else TFR_BUILTINS[op_name])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          counted only if the ops are named 'op_name' and has 'attr_val' if
          'attr_name' is specified.
        """
        op_count = 0
        for op_name in op_names:
          # Check the main graph
          op_count += self._count_op_with_name_and_attribute(
              nodes=graphdef.node,
              op_name=op_name,
              attr_name=attr_name,
              attr_val=attr_val,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            op_state.operands[1] = shape_op;
          }
        }
      }
      if (op_name == "vhlo.reduce_v1" || op_name == "vhlo.reduce_window_v1" ||
          op_name == "vhlo.sort_v1" || op_name == "vhlo.scatter_v1") {
        op_state.addRegion();
      }
      if (op_name == "vhlo.while_v1") {
        op_state.addRegion();
        op_state.addRegion();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      TF_OperationDescription* init(string type) {
        // Construct op_name to match the name used by REGISTER_OP in the
        // ATTR_TEST_REGISTER calls above.
        string op_name = "CApiAttributesTestOp";
        if (type.find("list(") == 0) {
          op_name += "List";
          type = type.replace(0, 5, "");
          type = type.replace(type.size() - 1, 1, "");
        }
        op_name += type;
        return TF_NewOperation(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        for (StringRef op_name : func_count_map.keys()) {
          const int32_t quantized_count = func_count_map[op_name].num_quant;
          const int32_t total_count =
              quantized_count + func_count_map[op_name].num_float;
          lines.push_back(absl::StrFormat("%s %d/%d",
                                          pad_string(op_name, name_col_width),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_test.cc

      TFE_Context* context = TFE_OpGetContext(other, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      const char* op_name = TFE_OpGetName(other, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_Op* ret = TFE_NewOp(context, op_name, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      const char* device = TFE_OpGetDevice(other, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return copiedConfiguration;
        }
    
        private String getNameWithCopySuffix() {
            int count = copyCount.incrementAndGet();
            String copyName = name + "Copy";
            return count == 1
                ? copyName
                : copyName + count;
        }
    
        @Override
        public Configuration copy(Closure dependencySpec) {
            return copy(Specs.convertClosureToSpec(dependencySpec));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // anonymous enums to be used with {ASSERT|EXPECT}_?? when compiled
    // with gcc 4.
    //
    // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    #define GTEST_IMPL_CMP_HELPER_(op_name, op)\
    template <typename T1, typename T2>\
    AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \
                                       const T1& val1, const T2& val2) {\
      if (val1 op val2) {\
        return AssertionSuccess();\
      } else {\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

                                    PatternRewriter &rewriter) const override {
        Value result = op.getX();
        for (StringRef op_name : op.getOpNames().getAsValueRange<StringAttr>()) {
          std::string full_name = "tf." + op_name.str();
          // All ops in the sequences have the same result type as the original
          // result type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top