Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for op31 (0.23 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    }
    
    func OPDP3(sf uint32, op54 uint32, op31 uint32, o0 uint32) uint32 {
    	return sf<<31 | op54<<29 | 0x1B<<24 | op31<<21 | o0<<15
    }
    
    func OPBcc(x uint32) uint32 {
    	return 0x2A<<25 | 0<<24 | 0<<4 | x&15
    }
    
    func OPBLR(x uint32) uint32 {
    	/* x=0, JMP; 1, CALL; 2, RET */
    	return 0x6B<<25 | 0<<23 | x<<21 | 0x1F<<16 | 0<<10
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen_main.cc

      if (argc != 4) {
        for (int i = 1; i < argc; ++i) {
          fprintf(stderr, "Arg %d = %s\n", i, argv[i]);
        }
        fprintf(stderr, "Usage: %s location api_def1,api_def2 op1,op2,op3\n",
                argv[0]);
        exit(1);
      }
      for (int i = 1; i < argc; ++i) {
        fprintf(stdout, "Arg %d = %s\n", i, argv[i]);
      }
      std::vector<tensorflow::string> api_def_srcs = tensorflow::str_util::Split(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 10:53:49 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FNMSUBS", argLength: 3, reg: fp31, asm: "FNMSUBS"}, // -arg0 + (arg1 * arg2)
    		{name: "FNMSUBD", argLength: 3, reg: fp31, asm: "FNMSUBD"}, // -arg0 + (arg1 * arg2)
    		{name: "MADD", argLength: 3, reg: gp31, asm: "MADD"},       // +arg0 + (arg1 * arg2)
    		{name: "MADDW", argLength: 3, reg: gp31, asm: "MADDW"},     // +arg0 + (arg1 * arg2), 32-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

        private static final String LS = System.lineSeparator();
    
        private static class OptionComparator implements Comparator<Option> {
            public int compare(Option opt1, Option opt2) {
                String s1 = opt1.getOpt() != null ? opt1.getOpt() : opt1.getLongOpt();
                String s2 = opt2.getOpt() != null ? opt2.getOpt() : opt2.getLongOpt();
                return s1.compareToIgnoreCase(s2);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

            val opr1 = evaluate(functionCall.explicitReceiver) ?: return null
            opr1.evaluate(function)?.let {
                return it.adjustType(functionCall.resolvedType)
            }
    
            val argument = functionCall.arguments.firstOrNull() ?: return null
            val opr2 = evaluate(argument) ?: return null
            opr1.evaluate(function, opr2)?.let {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "FMADD", argLength: 3, reg: fp31, asm: "FMADD"},   // arg0*arg1 + arg2
    		{name: "FMADDS", argLength: 3, reg: fp31, asm: "FMADDS"}, // arg0*arg1 + arg2
    		{name: "FMSUB", argLength: 3, reg: fp31, asm: "FMSUB"},   // arg0*arg1 - arg2
    		{name: "FMSUBS", argLength: 3, reg: fp31, asm: "FMSUBS"}, // arg0*arg1 - arg2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/generic.rules

    		m3:(Store {t3} op3:(OffPtr [0] p3) d3
    			m4:(Move [n] p4 _ mem))))
    	&& m2.Uses == 1 && m3.Uses == 1 && m4.Uses == 1
    	&& o2 == t3.Size()
    	&& o1-o2 == t2.Size()
    	&& n == t3.Size() + t2.Size() + t1.Size()
    	&& isSamePtr(p1, p2) && isSamePtr(p2, p3) && isSamePtr(p3, p4)
    	&& clobber(m2, m3, m4)
    	=> (Store {t1} op1 d1 (Store {t2} op2 d2 (Store {t3} op3 d3 mem)))
    (Store {t1} op1:(OffPtr [o1] p1) d1
    	m2:(Store {t2} op2:(OffPtr [o2] p2) d2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      EXPECT_THAT(subgraph->outputs, SizeIs(1));
    
      const auto& op1 = subgraph->operators[1].get();
      const auto& op2 = subgraph->operators[2].get();
      const auto& op3 = subgraph->operators[3].get();
      const auto& op4 = subgraph->operators[4].get();
    
      ASSERT_THAT(GetBuiltinCode(model_.operator_codes[op1->opcode_index].get()),
                  Eq(BuiltinOperator_QUANTIZE));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewritegeneric.go

    	// result: (Store {t1} op1 d1 (Store {t2} op2 d2 (Store {t3} op3 d3 mem)))
    	for {
    		t1 := auxToType(v.Aux)
    		op1 := v_0
    		if op1.Op != OpOffPtr {
    			break
    		}
    		o1 := auxIntToInt64(op1.AuxInt)
    		p1 := op1.Args[0]
    		d1 := v_1
    		m2 := v_2
    		if m2.Op != OpStore {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

      SmallVector<func::FuncOp> func_ops(iterator_range.begin(),
                                         iterator_range.end());
      absl::c_sort(func_ops, [](func::FuncOp op1, func::FuncOp op2) {
        return op1.getName() < op2.getName();
      });
      return func_ops;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top