Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for args_9 (0.11 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    	arg_Rn_16_5__W_1__W_2__W_4__X_8
    	arg_Rt_31_1__W_0__X_1
    	arg_Sa
    	arg_Sd
    	arg_slabel_imm14_2
    	arg_slabel_imm19_2
    	arg_slabel_imm26_2
    	arg_slabel_immhi_immlo_0
    	arg_slabel_immhi_immlo_12
    	arg_Sm
    	arg_Sn
    	arg_St
    	arg_St2
    	arg_sysop_AT_SYS_CR_system
    	arg_sysop_DC_SYS_CR_system
    	arg_sysop_IC_SYS_CR_system
    	arg_sysop_SYS_CR_system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    // Start step 0
    C_0 = cond(args_0)
    N_0 = non_tpu(args_0)
    if (C_0) {
       F_0 = forward(args_0, N_0)
       T_0 = core_tpu(args_0, N_0, F_0)
       // B_0 = backward() is not evaluated here.
    }
    
    args_1 = update_args(args_0, N_0, T_0)
    
    // Start step 1
    C_1 = cond(args_1)
    N_1 = non_tpu(args_1)
    if (C_1) {
       F_1 = forward(args_1, N_1)
       // T_1 = core_tpu() is not evaluated here.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/end2end/disallow_stateful_partitioned_call.pbtxt

        value {
          type: DT_FLOAT
        }
      }
    }
    node {
      name: "args_0"
      op: "_Arg"
      attr {
        key: "T"
        value {
          type: DT_RESOURCE
        }
      }
      attr {
        key: "index"
        value {
          i: 0
        }
      }
    }
    node {
      name: "spc1"
      op: "StatefulPartitionedCall"
      input: "input0"
      input: "args_0"
      attr {
        key: "Tin"
        value {
          list {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 24 20:05:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/func_attributes_multiple_callers.mlir

        func.return %4, %6 : tensor<!tf_type.variant>, tensor<!tf_type.variant>
      }
      // CHECK-LABEL: @funcB_renamed
      func.func private @funcB_renamed(%arg0: tensor<i64> {tf._user_specified_name = "args_0"}) -> tensor<!tf_type.variant> attributes {tf._original_func_name = "funcB", tf._tf_data_function = true, tf.signature.is_stateful} {
        %0 = "tf.Const"() {device = "/device:CPU:0", value = dense<0> : tensor<i64>} : () -> tensor<i64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 20:57:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/func_attributes.mlir

        func.return %4 : tensor<!tf_type.variant>
      }
      // CHECK-LABEL: __inference_Dataset_flat_map_lambda_190
      func.func private @__inference_Dataset_flat_map_lambda_190(%arg0: tensor<i64> {tf._user_specified_name = "args_0"}) -> tensor<!tf_type.variant> attributes {tf._original_func_name = "__inference_Dataset_flat_map_lambda_19", tf._tf_data_function = true, tf.signature.is_stateful} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 16 18:13:18 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/tf-data-pipeline.pbtxt

        key: "parallel_copy"
        value {
          b: false
        }
      }
    }
    library {
      function {
        signature {
          name: "__inference_Dataset_map_<lambda>_8"
          input_arg {
            name: "args_0"
            type: DT_INT32
          }
          output_arg {
            name: "identity"
            type: DT_INT32
          }
        }
        node_def {
          name: "mul/y"
          op: "Const"
          attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 29 04:41:05 UTC 2021
    - 4K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/tests/object_test.cc

      l.append(Integer(3));
      EXPECT_EQ(l.Get<Integer>(0)->get(), 3);
      EXPECT_EQ(l.size(), 1);
    }
    
    TaggedValue AddIntegers(TaggedValue args_, TaggedValue kwargs_) {
      auto& args = args_.tuple();
      // auto& kwargs = kwargs_.dict();
      return TaggedValue(args[0].i64() + args[1].i64());
    }
    
    TEST(ObjectTest, TestCast) {
      Integer i(3);
      auto result = Cast<String>(i);
      ASSERT_TRUE(!result.ok());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 21:37:07 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/runtime/runtime.cc

                             AbstractContext* ctx) {
      auto CallFn = [fn_name, fn, ctx](TaggedValue args_,
                                       TaggedValue kwargs_) -> TaggedValue {
        std::cout << "Calling " << fn_name << std::endl;
        tensorflow::StatusOr<TaggedValue> v = fn.Execute(ctx, args_);
        return v.value();
      };
      return TaggedValue(CallFn);
    }
    
    // Import a module from a saved model.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  9. src/cmd/internal/sys/args.go

    Daniel Martí <******@****.***> 1610820211 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 02 13:15:42 UTC 2021
    - 550 bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactoryTest.java

            assertThat(args2.length, is(1));
    
            final ParameterizedClassDesc arg2_1 = args2[0];
            assertThat(arg2_1.getRawClass(), is(sameClass(Integer.class)));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testMethodParameterType() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top