Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Arg_ (0.03 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/views/arg_view.cc

    namespace cpp {
    
    ArgView::ArgView(ArgSpec arg) : arg_(arg) {}
    
    string ArgView::VariableName() const { return arg_.name(); }
    
    string ArgView::SetterMethod() const {
      if (IsList()) {
        return "AddInputList";
      } else {
        return "AddInput";
      }
    }
    
    std::vector<string> ArgView::SetterArgs() const { return {VariableName()}; }
    
    bool ArgView::IsList() const { return arg_.arg_type().is_list(); }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/views/arg_view.h

      explicit ArgView(ArgSpec arg);
    
      string VariableName() const;
      string SetterMethod() const;
      std::vector<string> SetterArgs() const;
      int Position() const;
    
      bool IsList() const;
    
     private:
      ArgSpec arg_;
    };
    
    }  // namespace cpp
    }  // namespace generator
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //
    // - arg_Rt_31_1__W_0__X_1:
    //     a W or X register encoded in Rt[4:0]. The width specifier is encoded in the field
    //     [31:31] (offset 31, bit count 1) and the register is W for 0 and X for 1.
    //
    // - arg_[s|u]label_FIELDS_POWER:
    //     a program label encoded as "FIELDS" times 2^POWER in the range [MIN, MAX] (determined
    //     by signd/unsigned, FIELDS and POWER), e.g.
    //       arg_slabel_imm14_2
    //       arg_slabel_imm19_2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

        auto num = arg.getArgNumber();
        xla::Shape shape = xla::TypeToShape(arg.getType());
        xla::XlaOp argop =
            xla::Parameter(&builder, num, shape, absl::StrCat("Arg_", num));
        xla_params.push_back(argop);
      }
    
      std::vector<xla::XlaOp> returns(1);
      TF_RETURN_IF_ERROR(BuildHloFromTf(module_op, builder, xla_params, returns,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/tfcompile_test.cc

      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
    
      // Strip away identifier details from the profile string to avoid this test
      // being a change detector for xla internals. Identifiers such as '%dot.0.7'
      // just become '%dot'.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

    absl::StatusOr<Node*> AddOutsideCompilationInputArgToFunctionBody(
        const FunctionBody& function_body, const int arg_idx,
        const DataType& data_type) {
      NodeDefBuilder arg_builder(absl::StrCat("arg_", arg_idx), "_Arg");
      arg_builder.Attr("T", data_type);
      arg_builder.Attr("index", arg_idx);
      NodeDef arg_def;
      TF_RETURN_IF_ERROR(arg_builder.Finalize(&arg_def));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top