Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 590 for args_ (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

                          dst_index);
        }
        return absl::OkStatus();
      }
    
      auto input_arg = mlir::cast<BlockArgument>(src);
      auto input_node_it = args_.find(input_arg);
      TF_RET_CHECK(input_node_it != args_.end())
          << "Use of BlockArgument encounted before def!";
      // For argument, there is only one result output, so the index is always 0.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

                          dst_index);
        }
        return absl::OkStatus();
      }
    
      auto input_arg = mlir::cast<BlockArgument>(src);
      auto input_node_it = args_.find(input_arg);
      TF_RET_CHECK(input_node_it != args_.end())
          << "Use of BlockArgument encounted before def!";
      // For argument, there is only one result output, so the index is always 0.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      bool PropagateParamsAndReturnIfChanged();
    
      // Inserts the Quantize and Dequantize ops according to the propagation
      // result.
      void Finalize();
    
      SmallVector<BlockArgument, 4> GetArgs() { return args_; }
    
      llvm::DenseMap<std::pair<mlir::Operation*, int>, int> GetResultStates() {
        return result_states_;
      }
    
      DenseMap<OpWithResultIndex, QuantStateIndex> result_states_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

              user->setOperand(operand_num, new_constant_op);
            }
          }
        }
      });
    }
    
    void QuantizationDriver::SetupAllStates() {
      for (BlockArgument arg : fn_.getArguments()) {
        args_.push_back(arg);
        Value value = arg;
        // If the argument is quantized, it should only has one user.
        if (arg.hasOneUse()) {
          Operation* user = value.use_begin().getUser();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

            given:
            sourceFile << """
                #define HEADER_123 "hello.h"
                #define HEADER(X, Y) X ## Y
                #include HEADER(HEADER_, 123)
            """
    
            expect:
            resolve() == [header]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tests/tfcompile_test.cc

      EXPECT_EQ(muladd.arg0_data(), muladd.arg_data(0));
      EXPECT_EQ(muladd.arg1_data(), muladd.arg_data(1));
    
      // Test methods with positional args and results.
      {
        const float args[8] = {1, 2, 3, 4, 5, 6, 7, 8};
        std::copy(args + 0, args + 4, muladd.arg0_data());
        std::copy(args + 4, args + 8, muladd.arg1_data());
        EXPECT_TRUE(muladd.Run());
        EXPECT_EQ(muladd.error_msg(), "");
        const float results0[4] = {19, 22, 43, 50};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	if token.IsIdentifier(m) {
    		return m
    	}
    	op, typ, auxint, aux, args := extract(m)
    	if opIsCommutative(op, arch) {
    		if args[1] < args[0] {
    			args[0], args[1] = args[1], args[0]
    		}
    	}
    	s := new(strings.Builder)
    	fmt.Fprintf(s, "%s <%s> [%s] {%s}", op, typ, auxint, aux)
    	for _, arg := range args {
    		prefix, expr := splitNameExpr(arg)
    		fmt.Fprint(s, " ", prefix, normalizeMatch(expr, arch))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/gc.go

    			return "", nil, err
    		}
    		args = append(args, "-importcfg", objdir+"importcfg")
    	}
    	if embedcfg != nil {
    		if err := sh.writeFile(objdir+"embedcfg", embedcfg); err != nil {
    			return "", nil, err
    		}
    		args = append(args, "-embedcfg", objdir+"embedcfg")
    	}
    	if ofile == archive {
    		args = append(args, "-pack")
    	}
    	if asmhdr {
    		args = append(args, "-asmhdr", objdir+"go_asm.h")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/graph/CachingDirectedGraphWalkerTest.groovy

            1 * graph.getNodeValues(1, _, _) >> { args -> args[1] << '1'; args[2] << 1; args[2] << 2 }
            1 * graph.getNodeValues(2, _, _) >> { args -> args[1] << '2'; args[2] << 3; args[2] << 4 }
            1 * graph.getNodeValues(3, _, _) >> { args -> args[1] << '3'; args[2] << 2 }
            1 * graph.getNodeValues(4, _, _) >> { args -> args[1] << '4' }
            5 * graph.getEdgeValues(_, _, _) >> { args -> args[2] << "${args[0]}->${args[1]}".toString() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    	case LXV:
    		return op + " " + args[1] + "," + args[0]
    
    	case LXVL, LXVLL:
    		return op + " " + args[1] + "," + args[2] + "," + args[0]
    
    	case DCBT, DCBTST, DCBZ, DCBST, ICBI:
    		if args[0] == "0" || args[0] == "R0" {
    			return op + " (" + args[1] + ")"
    		}
    		return op + " (" + args[1] + ")(" + args[0] + ")"
    
    	// branch instructions needs additional handling
    	case BCLR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
Back to top