Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 459 for Builders (0.4 sec)

  1. .teamcity/subprojects.json

        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "declarative-dsl-tooling-builders",
        "path": "platforms/core-configuration/declarative-dsl-tooling-builders",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": true
      },
      {
        "name": "declarative-dsl-tooling-models",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. settings.gradle.kts

            fun node(node: String) {
                writer.print(indent)
                writer.println(node)
            }
    
            fun node(node: String, builder: NodeWriter.() -> Unit) {
                writer.print(indent)
                writer.println(node)
                builder(NodeWriter(writer, "$indent    "))
            }
        }
    }
    
    /**
     * Defines a top-level architecture module.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

                                        mlir::Builder builder) {
      return builder.getStringAttr(str);
    }
    
    static mlir::Attribute BuildF32Attr(float value, mlir::Builder builder) {
      return builder.getF32FloatAttr(value);
    }
    
    static mlir::Attribute BuildI32Attr(int32_t value, mlir::Builder builder) {
      return builder.getI32IntegerAttr(value);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  4. .github/CODEOWNERS

    platforms/core-configuration/kotlin-dsl-plugins/            @gradle/bt-kotlin-dsl-maintainers
    platforms/core-configuration/kotlin-dsl-provider-plugins/   @gradle/bt-kotlin-dsl-maintainers
    platforms/core-configuration/kotlin-dsl-tooling-builders/   @gradle/bt-kotlin-dsl-maintainers
    platforms/core-configuration/kotlin-dsl-tooling-models/     @gradle/bt-kotlin-dsl-maintainers
    
    # Core automation platform (Declarative DSL)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/lstm_utils_test.cc

                              TensorFlowLiteDialect>();
        builder_ = std::make_unique<mlir::Builder>(context_.get());
        fused_lstm_func_ = createLstmCompositeFunc(builder_.get(), false, false);
        fused_lstm_func_cifg_ =
            createLstmCompositeFunc(builder_.get(), false, true);
        fused_ln_lstm_func_ = createLstmCompositeFunc(builder_.get(), true, false);
      }
    
      void TearDown() override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

        %4 = tfr.constant f32 -> !tfr.attr
        ```
      }];
    
      let arguments = (ins TFR_allowedConstValues:$value);
    
      let results = (outs TFR_AttrType:$out);
    
      let hasFolder = 1;
    
      let builders = [
        OpBuilder<(ins "Attribute":$value),
        [{
          auto* ctx = value.getContext();
          $_state.addAttribute("value", value);
          $_state.addTypes(TFRAttrType::get(ctx));
        }]>
      ];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/runtime/crash_cgo_test.go

    		case runtime.GOOS == "linux" && runtime.GOARCH == "arm":
    			t.Skip("too slow for arm builders")
    		case runtime.GOOS == "linux" && (runtime.GOARCH == "mips64" || runtime.GOARCH == "mips64le"):
    			t.Skip("too slow for mips64x builders")
    		}
    	}
    	if testenv.Builder() == "darwin-amd64-10_14" {
    		// TODO(#23011): When the 10.14 builders are gone, remove this skip.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/SparseTensor/IR/SparseTensor.h"  // from @llvm-project
    #include "mlir/Dialect/Tensor/IR/Tensor.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "mlir/IR/Diagnostics.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

              if (attr.getName() != kCalledIndexAttrName) {
                new_config.push_back(attr);
              }
            }
    
            Builder builder(op.getContext());
            // Sets the `called_index` attribute to the TF function's name.
            new_config.push_back(builder.getNamedAttr(kCalledFuncAttrName,
                                                      function_list[called_index]));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor_test.cc

      tensor.add_float_val(42.0);
    
      mlir::MLIRContext context;
      mlir::Builder builder(&context);
      TF_ASSERT_OK_AND_ASSIGN(mlir::ElementsAttr attribute,
                              ConvertTensorProto(tensor, &builder));
      EXPECT_THAT(
          attribute,
          AllOf(Eq(mlir::DenseElementsAttr::get(
                    mlir::RankedTensorType::get({1ULL << 35}, builder.getF32Type()),
                    42.0f)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top