Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for op2 (0.29 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            def op2 = operations.first(ResolveConfigurationDependenciesBuildOperationType)
            op2.details.repositories.size() == 2
            op2.details.repositories*.id.unique(false).size() == 2
            op2.details.repositories[0].name == 'withoutCreds'
            op2.details.repositories[1].name == 'withCreds'
            def repo2Id = op2.details.repositories[0].id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization.td

    // Specify this trait if the bias-th input of the op is a bias input, which
    // needs a scale based on the scales of op1 and op2.
    class AccumulatorUniformScale<int bias, int op1, int op2> : NativeOpTrait<
      !strconcat("quant::AccumulatorUniformScale<",
                 !interleave([bias, op1, op2], ", "),
                 ">::Impl")>;
    
    // Specify the operand index of the coefficient operand for an affine op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_to_vhlo.cc

    // Wrap op result uses in an unrealized cast to create a cast to buffer
    // any type changes to result, and apply type converter to result:
    //   result = op(V0)
    //   V1     = op2(result)
    //   ==>
    //   result = op(V0)
    //   V1     = unrealized_cast(result)
    //   V2     = op2(V1)
    void ConvertAndWrapUsesInUnrealizedCast(Value result, TypeConverter &converter,
                                            IRRewriter &rewriter) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 19:48:51 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Store {t1} op1:(OffPtr [o1] p1) d1
    	m2:(Store {t2} op2:(OffPtr [0] p2) d2
    		m3:(Move [n] p3 _ mem)))
    	&& m2.Uses == 1 && m3.Uses == 1
    	&& o1 == t2.Size()
    	&& n == t2.Size() + t1.Size()
    	&& isSamePtr(p1, p2) && isSamePtr(p2, p3)
    	&& clobber(m2, m3)
    	=> (Store {t1} op1 d1 (Store {t2} op2 d2 mem))
    (Store {t1} op1:(OffPtr [o1] p1) d1
    	m2:(Store {t2} op2:(OffPtr [o2] p2) d2
    		m3:(Store {t3} op3:(OffPtr [0] p3) d3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritegeneric.go

    		p1 := v_1
    		mem := v_2
    		if mem.Op != OpStore {
    			break
    		}
    		t2 := auxToType(mem.Aux)
    		_ = mem.Args[2]
    		op2 := mem.Args[0]
    		if op2.Op != OpOffPtr {
    			break
    		}
    		tt2 := op2.Type
    		o2 := auxIntToInt64(op2.AuxInt)
    		p2 := op2.Args[0]
    		d1 := mem.Args[1]
    		mem_2 := mem.Args[2]
    		if mem_2.Op != OpStore {
    			break
    		}
    		t3 := auxToType(mem_2.Aux)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/internal/obj/arm64/asm7.go

    	return n
    }
    
    /* form offset parameter to SYS; special register number */
    func SYSARG5(op0 int, op1 int, Cn int, Cm int, op2 int) int {
    	return op0<<19 | op1<<16 | Cn<<12 | Cm<<8 | op2<<5
    }
    
    func SYSARG4(op1 int, Cn int, Cm int, op2 int) int {
    	return SYSARG5(0, op1, Cn, Cm, op2)
    }
    
    // checkUnpredictable checks if the source and transfer registers are the same register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      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));
      ASSERT_THAT(GetBuiltinCode(model_.operator_codes[op2->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)
  10. src/cmd/compile/internal/ssagen/ssa.go

    		}
    		op1, op2, it := conv.op1, conv.op2, conv.intermediateType
    
    		if op1 != ssa.OpInvalid && op2 != ssa.OpInvalid {
    			// normal case, not tripping over unsigned 64
    			if op1 == ssa.OpCopy {
    				if op2 == ssa.OpCopy {
    					return v
    				}
    				return s.newValueOrSfCall1(op2, tt, v)
    			}
    			if op2 == ssa.OpCopy {
    				return s.newValueOrSfCall1(op1, tt, v)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top