Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for argLen (0.25 sec)

  1. tensorflow/compiler/jit/xla_cluster_util.cc

        const OpRegistrationData* op_reg;
        if (OpRegistry::Global()->LookUp(call_target.name(), &op_reg).ok()) {
          const OpDef& op = op_reg->op_def;
          if (absl::c_any_of(op.output_arg(), [](const OpDef::ArgDef arg) {
                return arg.is_ref();
              })) {
            return true;
          }
          continue;
        }
    
        callee_ref_nodes.clear();
        FunctionLibraryRuntime::Handle handle;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. src/crypto/x509/verify.go

    				}
    
    			case c == 11 ||
    				c == 12 ||
    				// Space (char 32) is not allowed based on the
    				// BNF, but RFC 3696 gives an example that
    				// assumes that it is. Several “verified”
    				// errata continue to argue about this point.
    				// We choose to accept it.
    				c == 32 ||
    				c == 33 ||
    				c == 127 ||
    				(1 <= c && c <= 8) ||
    				(14 <= c && c <= 31) ||
    				(35 <= c && c <= 91) ||
    				(93 <= c && c <= 126):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. docs/tr/docs/async.md

    Ama hamburgerler 🍔 hazır olmamasına rağmen Kasiyer 💁 ile işiniz "duraklıyor" ⏸, çünkü hamburgerlerin hazır olmasını bekliyoruz 🕙.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/tfcompile_test.cc

          xla::PrintHloProfile(fn.hlo_profile_printer_data(), fn.profile_counters(),
                               /*clock_rate_ghz=*/1.0);
      VLOG(1) << "Original HLO profile string:\n" << hlo_profile_as_string;
    
      // Replace Arg_n with argn when the MLIR bridge is used.
    #if defined(ENABLE_MLIR_BRIDGE_TEST)
      RE2::GlobalReplace(&hlo_profile_as_string, "(Arg_)([0-9].)", "arg\\2");
    #endif
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

         {"All", "Any", "Min", "Max", "Mean", "Prod", "Sum"}},
              // clang-format on
              {"PWRED",
               {"ArgMax", "ArgMin", "DiagPart", "Softmax",
                "SparseSoftmaxCrossEntropyWithLogits", "LogSoftmax"}},
              {"REDUCEWINDOW",
               {"ArgMax", "ArgMin", "DiagPart", "Softmax",
                "SparseSoftmaxCrossEntropyWithLogits", "LogSoftmax"}},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      auto function =
          dyn_cast_or_null<func::FuncOp>(SymbolTable::lookupSymbolIn(module, func));
      FunctionType function_ty = function.getFunctionType();
    
      for (auto arg_in : llvm::zip(args, function_ty.getInputs())) {
        if (std::get<0>(arg_in).getType() != std::get<1>(arg_in)) {
          // Argument type and input type mismatch.
          return false;
        }
      }
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    //   return args_nm1
    // } else {
    //   return args_n
    // }
    // but we don't have if/else-if operators. We can convert this to a CaseOp.
    // Note, if C_nm1==true and C_nm2 must also be true.
    branch_index = int(C_nm2) + int(C_nm1)
    selected_results = switch(branch_index) {
      case 0: return args_nm2
      case 1: return args_nm1
      case 2: return args_n
    }
    return selected_results
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK-LABEL:fill
    // CHECK:  "tfl.fill"(%arg0, %arg1) : (tensor<3xi32>, tensor<f32>) -> tensor<?x?x?xf32>
    }
    
    func.func @argmin(%arg0: tensor<3xi32>, %arg1: tensor<i32>) -> tensor<i32> {
      %0 = "tf.ArgMin"(%arg0, %arg1) : (tensor<3xi32>, tensor<i32>) -> tensor<i32>
      func.return %0 : tensor<i32>
    
    // CHECK-LABEL: argmin
    // CHECK:  "tfl.arg_min"(%arg0, %arg1) : (tensor<3xi32>, tensor<i32>) -> tensor<i32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        self._emit_with_loc('\n}', node)
        return list(zip(ret_ssa_values, out_types))
    
      def _emit_default_constant_from_proto(self, attr_def):
        """emit mlir constant statement from default value of the ArgDef proto."""
        name = self._ssa_name('cst')
        cst_ty = _get_type_from_proto(None, attr_def)
        try:
          cst_val = _get_val_from_proto(cst_ty, attr_def.default_value)
        except AttributeError:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:           %[[VAL_10:.*]] = "tf.Min"(%[[VAL_0]], %[[VAL_9]]) <{keep_dims = false}> : {{.*}} -> tensor<4x32xf32>
    // CHECK:           %[[VAL_11:.*]] = "tf.ArgMin"(%[[VAL_0]], %[[VAL_9]]) : {{.*}} -> tensor<4x32xi32>
    // CHECK:           return %[[VAL_10]], %[[VAL_11]]
    // CHECK:         }
    func.func @convert_argmin(%arg0: tensor<4x32x256xf32>) -> (tensor<4x32xf32>, tensor<4x32xi32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
Back to top