Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for in_arg (0.39 sec)

  1. tensorflow/cc/framework/cc_op_gen.cc

      strings::StrAppend(&body, "  ", return_on_error, "\n");
    
      for (int i = 0; i < op_info.graph_op_def.input_arg_size(); ++i) {
        const auto& arg(op_info.graph_op_def.input_arg(i));
        const auto& api_def_arg(op_info.api_def.in_arg(i));
        strings::StrAppend(
            &body, "  auto _", api_def_arg.rename_to(), " = ::tensorflow::ops::",
            ArgIsList(arg) ? "AsNodeOutList" : "AsNodeOut", "(", scope_str, ", ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

          "    tensorflow::ops::$0(scope.WithOpName(\"output\")$1);\n",
          op_info.op_name,
          strings::StrCat(
              op_info.api_def.arg_order().empty()
                  ? absl::StrJoin(op_info.api_def.in_arg(), "",
                                  [](string* out, const auto api_def_arg) {
                                    strings::StrAppend(out, ", ",
                                                       api_def_arg.name());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    			name := []string{"pli", "pla"}
    			str = fmt.Sprintf("%s %s,%s",
    				name[r&1],
    				gnuArg(&inst, 0, inst.Args[0], PC),
    				gnuArg(&inst, 2, inst.Args[2], PC))
    			startArg = 4
    		} else {
    			str = fmt.Sprintf("%s %s,%s,%s", opName,
    				gnuArg(&inst, 0, inst.Args[0], PC),
    				gnuArg(&inst, 1, inst.Args[1], PC),
    				gnuArg(&inst, 2, inst.Args[2], PC))
    			startArg = 4
    			if r == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        }
      }
    
      public void testNonStaticOneArgMethodsThatShouldPass() throws Exception {
        OneArg foo = new OneArg();
        for (String methodName : NONSTATIC_ONE_ARG_METHODS_SHOULD_PASS) {
          Method method = OneArg.class.getMethod(methodName, String.class);
          try {
            new NullPointerTester().testMethodParameter(foo, method, 0);
          } catch (AssertionError unexpected) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. src/html/template/multi_test.go

    	{"variable declared by template", `{{template "nested" $x:=.SI}},{{index $x 1}}`, "[3 4 5],4", tVal, true},
    
    	// User-defined function: test argument evaluator.
    	{"testFunc literal", `{{oneArg "joe"}}`, "oneArg=joe", tVal, true},
    	{"testFunc .", `{{oneArg .}}`, "oneArg=joe", "joe", true},
    }
    
    // These strings are also in testdata/*.
    const multiText1 = `
    	{{define "x"}}TEXT{{end}}
    	{{define "dotV"}}{{.V}}{{end}}
    `
    
    const multiText2 = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetectorTest.groovy

                (INCREMENTAL_PROCESSOR_DECLARATION): "InJar,AGGREGATING"
            )
            def dir = tmpDir.file("classes")
            dir.file(PROCESSOR_DECLARATION) << "InDir"
            dir.file(INCREMENTAL_PROCESSOR_DECLARATION) << "InDir,ISOLATING"
            def cp = files(jar, dir)
    
            expect:
            detector.detectProcessors(cp).values().asList() == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_compilation_cluster_signature_test.cc

    }
    
    void BM_BuildSignature(::testing::benchmark::State& state) {
      const int n_args = state.range(0);
    
      NameAttrList fn;
      fn.set_name("afunction");
      for (int i = 0; i < n_args; i++) {
        (*fn.mutable_attr())[absl::StrCat("T", i)].set_type(DT_FLOAT);
      }
      std::vector<XlaCompiler::Argument> args(n_args);
      for (int i = 0; i < n_args; i++) {
        args[i].kind = (((i % 3) == 0) ? XlaCompiler::Argument::kConstant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    // The _offset and _postindex suffixes force the given addressing mode.
    // The rest should be somewhat self-explanatory, at least given
    // the decodeArg function.
    type instArg uint8
    
    const (
    	_ instArg = iota
    	arg_APSR
    	arg_FPSCR
    	arg_Dn_half
    	arg_R1_0
    	arg_R1_12
    	arg_R2_0
    	arg_R2_12
    	arg_R_0
    	arg_R_12
    	arg_R_12_nzcv
    	arg_R_16
    	arg_R_16_WB
    	arg_R_8
    	arg_R_rotate
    	arg_R_shift_R
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  9. src/text/template/multi_test.go

    	{"variable declared by template", `{{template "nested" $x:=.SI}},{{index $x 1}}`, "[3 4 5],4", tVal, true},
    
    	// User-defined function: test argument evaluator.
    	{"testFunc literal", `{{oneArg "joe"}}`, "oneArg=joe", tVal, true},
    	{"testFunc .", `{{oneArg .}}`, "oneArg=joe", "joe", true},
    }
    
    // These strings are also in testdata/*.
    const multiText1 = `
    	{{define "x"}}TEXT{{end}}
    	{{define "dotV"}}{{.V}}{{end}}
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

        // If up with end up with
        auto dq_op = dyn_cast_or_null<quantfork::DequantizeCastOp>(
            q_op.getOperand().getDefiningOp());
        if (!dq_op) {
          return;
        }
        auto dq_arg = dq_op.getOperand();
    
        if (!dq_arg.hasOneUse()) {
          // The initial quantization is used someplace else ... so it might be
          // reasonable for it to requantized for another purpose.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top